diff options
author | jlam <jlam> | 2004-07-30 21:38:07 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-07-30 21:38:07 +0000 |
commit | 7e4f4875dc3835bb94b5235672b2050a4be43633 (patch) | |
tree | 69d6ed566176b2ea4072770e31e2f3e8c6996dcc /mail | |
parent | ab399f9c20387f0e8629125679f97e82613cc5a9 (diff) | |
download | pkgsrc-7e4f4875dc3835bb94b5235672b2050a4be43633.tar.gz |
VERP support is a standard feature in Postfix.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/postfix/Makefile.options | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/mail/postfix/Makefile.options b/mail/postfix/Makefile.options index b8d626445d2..6b6223748d6 100644 --- a/mail/postfix/Makefile.options +++ b/mail/postfix/Makefile.options @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.options,v 1.5 2004/07/30 21:05:41 jlam Exp $ +# $NetBSD: Makefile.options,v 1.6 2004/07/30 21:38:07 jlam Exp $ # Global and legacy options # @@ -7,14 +7,14 @@ # XXX # XXX POSTFIX_USE_INET6 POSTFIX_USE_TLS # XXX POSTFIX_USE_PCRE POSTFIX_USE_MYSQL -# XXX POSTFIX_USE_PGSQL POSTFIX_USE_VERP -# XXX POSTFIX_USE_SASL_AUTH POSTFIX_OPTIONS +# XXX POSTFIX_USE_PGSQL POSTFIX_OPTIONS +# XXX POSTFIX_USE_SASL_AUTH # .if defined(USE_SASL) || defined(USE_SASL2) || defined(USE_OPENLDAP) || \ defined(POSTFIX_USE_INET6) || defined(POSTFIX_USE_TLS) || \ defined(POSTFIX_USE_PCRE) || defined(POSTFIX_USE_MYSQL) || \ - defined(POSTFIX_USE_PGSQL) || defined(POSTFIX_USE_VERP) || \ - defined(POSTFIX_USE_SASL_AUTH) + defined(POSTFIX_USE_PGSQL) || defined(POSTFIX_USE_SASL_AUTH) || \ + defined(POSTFIX_OPTIONS) . if !defined(PKG_OPTIONS.postfix) . if defined(USE_SASL) && !empty(USE_SASL:M[yY][eE][sS]) PKG_OPTIONS.postfix+= sasl @@ -40,9 +40,6 @@ PKG_OPTIONS.postfix+= mysql . if defined(POSTFIX_USE_PGSQL) && !empty(POSTFIX_USE_PGSQL:M[yY][eE][sS]) PKG_OPTIONS.postfix+= pgsql . endif -. if defined(POSTFIX_USE_VERP) && !empty(POSTFIX_USE_VERP:M[yY][eE][sS]) -PKG_OPTIONS.postfix+= verp -. endif . if defined(POSTFIX_USE_SASL_AUTH) && defined(POSTFIX_USE_SASL_AUTH) PKG_OPTIONS.postfix+= sasl . endif |