aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorkrion <krion@FreeBSD.org>2007-05-31 14:48:14 +0800
committerkrion <krion@FreeBSD.org>2007-05-31 14:48:14 +0800
commitc06c8c6f18870b41272907356580955a8c3fcebd (patch)
treeea494720b2138e4a89df0034e2b5886e06d0475d /mail
parentdd5391dd91c7b6abf1daefac1c6724755d374019 (diff)
downloadfreebsd-ports-gnome-c06c8c6f18870b41272907356580955a8c3fcebd.tar.gz
freebsd-ports-gnome-c06c8c6f18870b41272907356580955a8c3fcebd.tar.zst
freebsd-ports-gnome-c06c8c6f18870b41272907356580955a8c3fcebd.zip
Fix dovecot authentication.
Diffstat (limited to 'mail')
-rw-r--r--mail/exim/Makefile2
-rw-r--r--mail/exim/options4
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile
index 7bb8de87d3de..608c583dd5b5 100644
--- a/mail/exim/Makefile
+++ b/mail/exim/Makefile
@@ -395,7 +395,7 @@ SEDLIST+= -e 's,^\# (AUTH_CRAM_MD5=),\1,'
SEDLIST+= -e 's,^\# (AUTH_PLAINTEXT=),\1,'
.endif
-.if !defined(WITHOUT_DOVECOT)
+.if !defined(WITHOUT_AUTH_DOVECOT)
SEDLIST+= -e 's,^\# (AUTH_DOVECOT=),\1,'
.endif
diff --git a/mail/exim/options b/mail/exim/options
index 25cbef1dd1cd..21f9cd0c7f86 100644
--- a/mail/exim/options
+++ b/mail/exim/options
@@ -70,6 +70,7 @@
#WITH_PAM
#WITH_AUTH_CRAM_MD5
#WITH_AUTH_PLAINTEXT
+#WITH_AUTH_DOVECOT
#WITH_AUTH_SPA
# Built-in support for the PAM, RFC 2195, RFC 2595 and
# Microsoft "Secure Password Authentication" authentication mechanisms,
@@ -229,6 +230,9 @@ WITH_AUTH_CRAM_MD5?=yes
.ifndef WITHOUT_AUTH_PLAINTEXT
WITH_AUTH_PLAINTEXT?=yes
.endif
+.ifndef WITHOUT_AUTH_DOVECOT
+WITH_AUTH_DOVECOT?=yes
+.endif
.ifndef WITHOUT_AUTH_SPA
WITH_AUTH_SPA?=yes
.endif