diff options
author | martti <martti@pkgsrc.org> | 2004-09-23 16:10:07 +0000 |
---|---|---|
committer | martti <martti@pkgsrc.org> | 2004-09-23 16:10:07 +0000 |
commit | 1faa536f93a7334e50136396afd5b97dc828285c (patch) | |
tree | 55b7a25b7e1a1e2166fa197ddc494cb6652e6b2c /mail/postfix/options.mk | |
parent | 5d256aed6bd184336aec91052aad72d174d166b6 (diff) | |
download | pkgsrc-1faa536f93a7334e50136396afd5b97dc828285c.tar.gz |
Updated postfix to 2.1.5
- The code to eliminate the local MTA from an MX address list did
not handle the case that the local MTA could appear with different
MX preferences in both inet_interfaces and proxy_interfaces.
- The SMTP server's kiss-of-death message "421 Timeout exceeded"
wasn't guarded by setjmp().
- The SMTP server didn't update the per-session error counter when
a client was denied access with smtpd_delay_reject=no.
- The Postfix sendmail command leaked file descriptors when it was
unable to execute the postdrop mail submission command.
- The bounce daemon sent the wrong type of bounce message when a
- Plus some portability, safety and documentation fixes.
Diffstat (limited to 'mail/postfix/options.mk')
-rw-r--r-- | mail/postfix/options.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/postfix/options.mk b/mail/postfix/options.mk index fff8102035b..4508ead1e04 100644 --- a/mail/postfix/options.mk +++ b/mail/postfix/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.8 2004/08/27 06:29:08 jlam Exp $ +# $NetBSD: options.mk,v 1.9 2004/09/23 16:10:07 martti Exp $ # Global and legacy options # @@ -17,7 +17,7 @@ PKG_DEFAULT_OPTIONS+= inet6 PKG_DEFAULT_OPTIONS+= tls .endif .if defined(POSTFIX_USE_PCRE) && !empty(POSTFIX_USE_PCRE:M[yY][eE][sS]) -PKG_DEFAULT_OPTIONS+= pcre +PKG_DEFAULT_OPTIONS+= pcre .endif .if defined(POSTFIX_USE_MYSQL) && !empty(POSTFIX_USE_MYSQL:M[yY][eE][sS]) PKG_DEFAULT_OPTIONS+= mysql @@ -43,7 +43,7 @@ PKG_SUPPORTED_OPTIONS= inet6 ldap mysql mysql4 pcre pgsql sasl tls . if empty(PKG_OPTIONS:Mtls) PKG_OPTIONS+= tls . endif -IPV6TLS_PATCH= tls+ipv6-1.25-pf-2.1.4.patch.gz +IPV6TLS_PATCH= tls+ipv6-1.25-pf-2.1.5.patch.gz PATCHFILES+= ${IPV6TLS_PATCH} SITES_${IPV6TLS_PATCH}= ftp://ftp.stack.nl/pub/postfix/tls+ipv6/1.25/ PATCH_DIST_STRIP.${IPV6TLS_PATCH}= -p1 |