PROBLEM
I want to run IMAP on another port.
ENVIRONMENT
- On-Premise Server + WebMail Installations: Version 6.0 > Current Version
CAUSE
IMAP configuration requirement.
RESOLUTION
To run Dovecot on another port, just do the following:
- Open up
/usr/local/atmail/mailserver/etc/dovecot.conf
. - Find:
protocol imap {
#
mail_plugins = quota imap_quota
#
# mail_executable = /usr/local/atmail/mailserver/etc/create-imap.sh
#
} - Change to:
protocol imap {
Where
#
mail_plugins = quota imap_quota
#
# mail_executable = /usr/local/atmail/mailserver/etc/create-imap.sh
#
listen = *:143 *:144
}144
is your additional port. - Restart Atmail.
% /etc/init.d/atmailserver restart
Comments