How do I enable POP3 for incoming email?
I have tried apt-get install dovecot-pop3d
and ufw allow 110 && ufw allow 995 && ufw reload
Check /etc/dovecot/conf.d/10-master.conf for the following lines
service pop3-login {
inet_listener pop3 {
port = 110
}
inet_listener pop3s {
port = 995
ssl = yes
}
}
Opening Port 110 is a bad idea, it’s unsecure and we’re paranoid
Great that worked!
For anyone interested:
sudo apt-get install dovecot-pop3d
sudo ufw allow 995 && sudo ufw reload
sudo vi /etc/dovecot/conf.d/10-master.conf
Uncomment the following:
service pop3-login {
inet_listener pop3s {
port = 995
ssl = yes
}
}
Thanks. This works great and is still important for allowing users to access their other email accounts through Gmail (which does not support IMAP).
IMAP is working for and with Gmail afaik …
FYI: this is now officially supported by MIAB without any configuration changes.
POP3 is NOT for incoming email. it is just for clients to get email from the server. Completely different. SMTP is what your server will use to send and receive email to any other domain on the net.