summaryrefslogtreecommitdiff
path: root/mail/postfix/options.mk
diff options
context:
space:
mode:
authorghen <ghen>2008-02-18 17:45:34 +0000
committerghen <ghen>2008-02-18 17:45:34 +0000
commit8a9d5c86b2afcd3eed39581a9994db192a0a02c9 (patch)
tree66271f5f5b2d6df2fae271f72740414208717b93 /mail/postfix/options.mk
parent8825ce45e1536ed7e5257507a4bdacf9815bfe98 (diff)
downloadpkgsrc-8a9d5c86b2afcd3eed39581a9994db192a0a02c9.tar.gz
Update Postfix to version 2.5.1 (ok martti). Major changes over 2.4.x are:
- TLS (SSL) support was streamlined further, and provides a new security level based on certificate fingerprints instead of CA signatures. See TLS_README for details. - Milter support was updated from the Sendmail 8.13 feature set and now includes most of the features that were introduced with Sendmail 8.14. See MILTER_README for details. - Stress-adaptive configuration was introduced. This allows the Postfix SMTP server to temporarily adjust its rules under conditions of overload, such as a malware attack or backscatter flood. See STRESS_README for details. [pkgsrc: this obsoletes the "postfix-stress" option which provided the same functionality via a distribution patch] - The queue manager scheduler was refined. It now provides per-transport scheduling controls and allows for adjustment of the sensitivity to mail delivery (non-)errors. See SCHEDULER_README. - Security was improved by introducing a Postfix-owned data_directory for storage of randomness, caches and other non-queue data. This change avoids future security loopholes due to untrusted data sitting in root-owned files or in root-owned directories. Writes to legacy files in root-owned directories are automatically redirected to files in the new data_directory. No functionality has been removed, but it is a good idea to review the RELEASE_NOTES file for the usual minor incompatibilities or limitations.
Diffstat (limited to 'mail/postfix/options.mk')
-rw-r--r--mail/postfix/options.mk13
1 files changed, 2 insertions, 11 deletions
diff --git a/mail/postfix/options.mk b/mail/postfix/options.mk
index b219ab92bec..34a0f4bc7e6 100644
--- a/mail/postfix/options.mk
+++ b/mail/postfix/options.mk
@@ -1,9 +1,9 @@
-# $NetBSD: options.mk,v 1.29 2008/01/25 09:44:24 ghen Exp $
+# $NetBSD: options.mk,v 1.30 2008/02/18 17:45:34 ghen Exp $
# Global and legacy options
PKG_OPTIONS_VAR= PKG_OPTIONS.postfix
-PKG_SUPPORTED_OPTIONS= bdb ldap mysql mysql4 pcre pgsql sasl tls postfix-stress
+PKG_SUPPORTED_OPTIONS= bdb ldap mysql mysql4 pcre pgsql sasl tls
PKG_SUGGESTED_OPTIONS= tls
.include "../../mk/bsd.options.mk"
@@ -105,12 +105,3 @@ CONF_FILES+= ${EXAMPLEDIR}/smtpd.conf ${SASLLIBDIR}/smtpd.conf
PLIST_SUBST+= SASL="@comment "
CCARGS+= -DDEF_SERVER_SASL_TYPE=\"dovecot\"
.endif
-
-###
-### Postfix stress-adaptive behaviour, back-ported from Postfix 2.5
-### See http://www.postfix.org/STRESS_README.html#adapt
-###
-.if !empty(PKG_OPTIONS:Mpostfix-stress)
-PATCHFILES= postfix-2.4-stress-patch.gz
-PATCH_SITES= ${MASTER_SITES}
-.endif