nixCraft Linux Forum

nixCraft

Linux Tech Support Forum

Imap Port

This is a discussion on Imap Port within the CentOS / RHEL / Fedora forums, part of the Linux Distribution category; The Internet Message Access Protocol (also known as IMAP or IMAP4) s an application layer Internet protocol operating on port ...


Go Back   nixCraft Linux Forum > Linux Distribution > CentOS / RHEL / Fedora

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 05-02-2008, 11:34 PM
sweta's Avatar
Contributors
User
 
Join Date: Feb 2005
Location: New Delhi
My distro: Suse, RHEL, Vista
Posts: 152
Rep Power: 4
sweta will become famous soon enough
Default Imap Port

The Internet Message Access Protocol (also known as IMAP or IMAP4) s an application layer Internet protocol operating on port 143 that allows a local client to access e-mail on a remote server.
Dovecot Imap Server

You must have imap server installed to open port 143. Dovecot is one of such server avilable under RHEL / CentOS and other Linux distributions. It is an IMAP server for Linux/UNIX-like systems, written with security primarily in mind. It also contains a small POP3 server. It supports mail in either of maildir or mbox formats. To install dovecot type:
Code:
yum install dovecot
To configure server open file /etc/dovecot.conf file:
Code:
 vi /etc/dovecot.conf
To start dovecot service type:
Code:
 chkconfig dovecot on
service dovecot start
You can see if imap port is opened or not by typing the following command at shell prompt:
Code:
 netstat -tulpn | grep 143
To open imap port under CentOS / Redhat Linux / Fedora Linux add following rule to a file called /etc/sysconfig/iptables, and append following line:
Code:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 143 -j ACCEPT
Now just restart firewall, so that port 143 get opened:
Code:
 # /etc/init.d/iptables restart
__________________
Friends - v-nessa - missyAdmin
Reply With Quote
Sponsored Links
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
How to open a port fed111 Web servers 1 03-08-2008 11:26 PM
imap errors / server slow down seed2be Mail Servers 0 03-06-2008 09:36 PM
ERROR: Connection dropped by IMAP server satimis Mail Servers 0 02-13-2008 08:54 PM
RHEL5 + IMAP server vaibhav.kanchan Getting started tutorials 2 09-25-2007 06:50 PM
Problems with squirrelmail and imap rcordeiro Linux software 7 11-20-2006 06:37 PM


All times are GMT +5.5. The time now is 04:33 AM.


Powered by vBulletin® Version 3.7.3 - Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36