How do I configure the Dovecot message delivery agent to only allow imap connections from localhost?

link|improve this question
feedback

1 Answer

It's probably easiest to just listen only on localhost:

protocol imap {
    listen = 127.0.0.1:143
    ssl_listen = 127.0.0.1:993
}
link|improve this answer
Thanks again for another answer :) I'm a bit green with all this, so what file would I make this change in? – Linus1412 Apr 21 '11 at 11:10
1  
Found it - dovecot.conf in /etc/dovecot – Linus1412 Apr 21 '11 at 11:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.