13 Jun
2013
13 Jun
'13
5:58 p.m.
At 4PM +0200 on 13/06/13 you (Simon B) wrote:
I've upgraded to 2.1.7 and finally decided to turn off imaps and pop3s because these days everyone uses tls over 143 anyway. But it's on and I can't figure out why.
I only have non-ssl versions specified: protocols = imap pop3
Dovecot listens on imaps/pop3s by default, so you need to disable them explicitly like this:
service imap-login {
inet_listener imap {
# defaults
}
inet_listener imaps {
# disable the imaps service
port = 0
}
}
and the equivalent for pop3-login.
Ben