summaryrefslogtreecommitdiff
path: root/mail/exim
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2007-05-31 06:48:14 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2007-05-31 06:48:14 +0000
commit06c4b62627653e9771da7670d8fb89082ecc18de (patch)
tree3a0a561368c106ba6d77f45512e2996cdb25efed /mail/exim
parentUpdate to 0.5. (diff)
Fix dovecot authentication.
Notes
Notes: svn path=/head/; revision=192451
Diffstat (limited to 'mail/exim')
-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