summaryrefslogtreecommitdiff
path: root/mail/vpopmail-devel
diff options
context:
space:
mode:
authorPeter Pentchev <roam@FreeBSD.org>2002-09-05 13:42:30 +0000
committerPeter Pentchev <roam@FreeBSD.org>2002-09-05 13:42:30 +0000
commita8636d465c5d6e8f5890b5589ddfbdf5c3613f19 (patch)
tree41df6b0a2e80f4d1021b0d88a5f03214c1537510 /mail/vpopmail-devel
parentadd missing files (diff)
Change the WITH_MD5_PASSWORDS knob to WITHOUT_MD5_PASSWORDS;
the vpopmail default is to build support for MD5-hashed passwords now. Reported by: Jetchko Jekov <jeka@flavia-bg.com>
Notes
Notes: svn path=/head/; revision=65683
Diffstat (limited to 'mail/vpopmail-devel')
-rw-r--r--mail/vpopmail-devel/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/vpopmail-devel/Makefile b/mail/vpopmail-devel/Makefile
index 16563c078a6c..42fc4d779f1d 100644
--- a/mail/vpopmail-devel/Makefile
+++ b/mail/vpopmail-devel/Makefile
@@ -35,7 +35,7 @@ CONFIGURE_ARGS= --enable-qmaildir=${QMAIL_DIR} \
# Define these to change from the default behaviour
#
# WITH_PASSWD - allow authentication off /etc/passwd
-# WITH_MD5_PASSWORDS - store encrypted passwords in MD5 format
+# WITHOUT_MD5_PASSWORDS - store encrypted passwords in MD5 format
# WITH_MYSQL - allow authentitation via mysql
# WITH_MYSQL_LARGE_SITE - enables large site layout
# WITH_MYSQL_REPLICATION - enables MySQL database replication
@@ -134,8 +134,8 @@ CONFIGURE_ARGS+= --enable-defaultquota=${HARDQUOTA} \
CONFIGURE_ARGS+= --enable-passwd=y
.endif
-.if defined(WITH_MD5_PASSWORDS)
-CONFIGURE_ARGS+= --enable-md5-passwords=y
+.if defined(WITHOUT_MD5_PASSWORDS)
+CONFIGURE_ARGS+= --enable-md5-passwords=n
.endif
.if defined(WITH_APOP)