diff options
author | fhajny <fhajny@pkgsrc.org> | 2015-09-07 09:47:01 +0000 |
---|---|---|
committer | fhajny <fhajny@pkgsrc.org> | 2015-09-07 09:47:01 +0000 |
commit | 2796243ee42606c3d1e548b8893e4229243cc55f (patch) | |
tree | 19ec21a67fe7b9c4ea1b02bcdebc63dde2b7609a /mail/postfix-mysql | |
parent | 5e6105fcbd917f6ba7af4616f21ba88b020c8580 (diff) | |
download | pkgsrc-2796243ee42606c3d1e548b8893e4229243cc55f.tar.gz |
Update mail/postfix to 3.0.2.
Database and regexp map functionality is now split into separate packages:
- postfix-cdb
- postfix-ldap
- postfix-lmdb
- postfix-mysql
- postfix-pcre
- postfix-pgsql
- postfix-sqlite
Upstream changelog follows.
Postfix 3.0.2
-------------
No delta against 2.11.6.
Postfix 3.0.1
-------------
- Build error when compiling the Postfix SMTP server with SASL support
but no TLS support.
- The DNS "resource record to text" converter, used for xxx_dns_reply_filter
pattern matching, appended a '.' to TXT record resource values.
- The postscreen(8) manpage specified an incorrect Postfix version number
for the postscreen_dnsbl_timeout parameter.
- The postfix-install script expanded macros in parameter values when
trying to detect parameter overrides, causing unnecessary main.cf updates
during "postfix start" etc.
- Some low-level cleanup of UTF-8 string handling with no visible change
in behavior (besides better performance).
Postfix 3.0.0
-------------
- SMTPUTF8 support for internationalized domain names and address
localparts as defined in RFC 6530 and related documents.
- Support for Postfix dynamically-linked libraries and database plugins.
- An OPT-IN safety net for the selective adoption of new Postfix default
settings. If you do nothing, the old Postfix default settings *should*
remain in effect (complain to your downstream maintainer if that is not
the case).
- Support for operations on multiple lookup tables. The
pipemap:{map1,map2...} database type implements a pipeline of lookup
tables where the result from one lookup table becomes a query for
the next table; the unionmap:{map1,map2,...} database type sends the
Diffstat (limited to 'mail/postfix-mysql')
-rw-r--r-- | mail/postfix-mysql/DESCR | 1 | ||||
-rw-r--r-- | mail/postfix-mysql/Makefile | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/mail/postfix-mysql/DESCR b/mail/postfix-mysql/DESCR new file mode 100644 index 00000000000..40e0d6fa4d2 --- /dev/null +++ b/mail/postfix-mysql/DESCR @@ -0,0 +1 @@ +Postfix SMTP server MySQL backend module diff --git a/mail/postfix-mysql/Makefile b/mail/postfix-mysql/Makefile new file mode 100644 index 00000000000..db7998c5930 --- /dev/null +++ b/mail/postfix-mysql/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1 2015/09/07 09:47:02 fhajny Exp $ +# + +COMMENT= Postfix SMTP server MySQL backend module + +POSTFIX_LIB= mysql +POSTFIX_LIBDIR= src/global +POSTFIX_LIB_DICT= yes +POSTFIX_LIB_MKMAP= no + +.include "../../mail/postfix/Makefile.module" + +CCARGS+= -I${BUILDLINK_PREFIX.mysql-client}/include +AUXLIBS_MODULE= -L${BUILDLINK_PREFIX.mysql-client}/lib -lmysqlclient \ + ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.}/lib + +.include "../../mk/mysql.buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |