diff options
author | martti <martti> | 2006-01-10 06:39:00 +0000 |
---|---|---|
committer | martti <martti> | 2006-01-10 06:39:00 +0000 |
commit | 03a08511da6e988ddebffcb27818af0e1558eae9 (patch) | |
tree | 71ea509b7b1cc5ab31cdd70eacfc755d282023e2 /mail/postfix-current | |
parent | 83fc76605e0d661675bffa73b7776ea4f4b6ea33 (diff) | |
download | pkgsrc-03a08511da6e988ddebffcb27818af0e1558eae9.tar.gz |
Updated postfix-current to 2.3-20060103
Postfix snapshot 20051220 provides a plug-in architecture for SASL
authentication. With this, Postfix can support multiple SASL
implementations without source code patches.
Incompatibility with snapshot 20051220
======================================
The Postfix-with-Cyrus-SASL build procedure has changed. You now
need to specify -DUSE_CYRUS_SASL in addition to -DUSE_SASL_AUTH or
else you end up without any Cyrus SASL support. The error messages
are:
unsupported SASL server implementation: cyrus
unsupported SASL client implementation: cyrus
Major changes with snapshot 20051220
====================================
Plug-in support for SASL authentication in the SMTP server and in
the SMTP+LMTP client. With this, Postfix can support multiple SASL
implementations without source code patches. Some distributors may
even make SASL support a run-time linking option, just like they
do with Postfix lookup tables.
Hints and tips for plug-in developers are in the xsasl/README file.
For backwards compatibility the default plug-in type is Cyrus SASL,
so everything should behave like it did before. Some error messages
are slightly different, but these are generally improvements.
The "postconf -a" command shows what plug-in implementations are
available for the SMTP server, and "postconf -A" does the same for
the SMTP+LMTP client. Plug-in implementations are selected with
the smtpd_sasl_type, smtp_sasl_type and lmtp_sasl_type configuration
parameters.
Other new configuration parameters are smtpd_sasl_path, smtp_sasl_path
and lmtp_sasl_path. These are better left alone; they are introduced
for the convenience of other SASL implementations.
Diffstat (limited to 'mail/postfix-current')
-rw-r--r-- | mail/postfix-current/Makefile | 6 | ||||
-rw-r--r-- | mail/postfix-current/distinfo | 8 | ||||
-rw-r--r-- | mail/postfix-current/options.mk | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/mail/postfix-current/Makefile b/mail/postfix-current/Makefile index 960996cdf28..031689a2919 100644 --- a/mail/postfix-current/Makefile +++ b/mail/postfix-current/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.54 2006/01/08 18:35:10 xtraeme Exp $ +# $NetBSD: Makefile,v 1.55 2006/01/10 06:39:00 martti Exp $ -DISTNAME= postfix-2.3-20051128 -PKGREVISION= 2 +DISTNAME= postfix-2.3-20060103 +#PKGREVISION= 1 CATEGORIES= mail MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \ http://public.planetmirror.com.au/pub/postfix/experimental/ diff --git a/mail/postfix-current/distinfo b/mail/postfix-current/distinfo index 50f2cf8e17e..b9de15f986f 100644 --- a/mail/postfix-current/distinfo +++ b/mail/postfix-current/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.19 2005/11/30 14:02:47 martti Exp $ +$NetBSD: distinfo,v 1.20 2006/01/10 06:39:00 martti Exp $ -SHA1 (postfix/postfix-2.3-20051128.tar.gz) = eb1e377cfdb5e417e2ce5e1d54811f8f93eef4cb -RMD160 (postfix/postfix-2.3-20051128.tar.gz) = dfcb8c06b6f1c5ab0990f1852936563c7e7f8b3d -Size (postfix/postfix-2.3-20051128.tar.gz) = 2561761 bytes +SHA1 (postfix/postfix-2.3-20060103.tar.gz) = 7b270542046e76c88e3ba9eb85653d8fb54d9194 +RMD160 (postfix/postfix-2.3-20060103.tar.gz) = 2c95fc416d287de0b50f517312fd817fcb3f43dc +Size (postfix/postfix-2.3-20060103.tar.gz) = 2576252 bytes SHA1 (patch-aa) = 3f45ca9b05bf080bd0f9ef3c9f8c24a1ef992edd SHA1 (patch-ai) = 890ccf2d7f6c6e21f00a2bea9c71ef1e058ac826 diff --git a/mail/postfix-current/options.mk b/mail/postfix-current/options.mk index ed44fe2213d..02a2d8c6b27 100644 --- a/mail/postfix-current/options.mk +++ b/mail/postfix-current/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.11 2005/09/30 06:04:32 martti Exp $ +# $NetBSD: options.mk,v 1.12 2006/01/10 06:39:00 martti Exp $ # Global and legacy options @@ -88,7 +88,7 @@ AUXLIBS+= -L${PGSQL_PREFIX}/lib -lpq \ BUILDLINK_INCDIRS.cyrus-sasl= include/sasl SASLLIBDIR= ${PREFIX}/lib/sasl2 PWCHECK_METHOD= auxprop -CCARGS+= -DUSE_SASL_AUTH +CCARGS+= -DUSE_SASL_AUTH -DUSE_CYRUS_SASL AUXLIBS+= -L${BUILDLINK_PREFIX.cyrus-sasl}/lib \ ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.cyrus-sasl}/lib \ -lsasl2 |