diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2009-09-10 13:47:12 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2009-09-10 13:47:12 +0000 |
commit | 63ffc994f2c678282cabee87a177676a94537181 (patch) | |
tree | 9c463d0c3c24c287d3c1168ac5a3771a60cb59ac /mail/qmailadmin/Makefile | |
parent | b6c8c18f7836dd3a90369f9cd2b9f5ea2e307210 (diff) |
Notes
Diffstat (limited to 'mail/qmailadmin/Makefile')
-rw-r--r-- | mail/qmailadmin/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/mail/qmailadmin/Makefile b/mail/qmailadmin/Makefile index f0112c240e0a..bd88e5e2111e 100644 --- a/mail/qmailadmin/Makefile +++ b/mail/qmailadmin/Makefile @@ -6,8 +6,7 @@ # PORTNAME= qmailadmin -PORTVERSION= 1.2.12 -PORTEPOCH= 2 +PORTVERSION= 1.2.13 CATEGORIES= mail www MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION} @@ -68,6 +67,9 @@ WANT_QMAIL= yes # do not forget the "|" at the start # WITH_SPAM_NEEDS_EMAIL - append the user's e-mail address as the last # argument to the spam command +# WITHOUT_CATCHALL - disable the catch-all mailbox commands +# WITHOUT_TRIVIAL_PASSWORD - disable the check for a password containing +# the username # CGIBINDIR?= www/cgi-bin.default @@ -132,4 +134,12 @@ CONFIGURE_ARGS+= --disable-spamcmd-needs-email .endif .endif +.if defined(WITHOUT_CATCHALL) +CONFIGURE_ARGS+= --disable-catchall +.endif + +.if defined(WITHOUT_TRIVIAL_PASSWORD) +CONFIGURE_ARGS+= --disable-trivial-password +.endif + .include <bsd.port.post.mk> |