From be02e552db38aa66658c5799f58e61bec39df736 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Mon, 8 Feb 2010 13:28:57 +0100 Subject: [PATCH] dovecot: Enable plain authentication and non-TLS connections. This saves encryption and issues with certificate verifcation when connection from locally running webmail apps. --- etc/dovecot/dovecot.conf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/etc/dovecot/dovecot.conf b/etc/dovecot/dovecot.conf index 3feb70f..9452f87 100644 --- a/etc/dovecot/dovecot.conf +++ b/etc/dovecot/dovecot.conf @@ -13,9 +13,13 @@ # configuration of the managesieve plugin/daemon. -# We server LDAP and use the deliver Local Delivery Agent -protocols = imaps lda +# We serve IMAP, IMAPS and use the deliver Local Delivery Agent +protocols = imap imaps lda +# Allow plaintext auth on non-TLS connections. We don't expose the non-secure +# imap port 143 to the internet, just locally for the webmail apps. This should +# therefore not introduce a security issue. +disable_plaintext_auth = no protocol imap { # Enable virtual mailboxes -- 2.30.2