diff options
author | adam <adam@pkgsrc.org> | 2009-11-17 06:39:32 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2009-11-17 06:39:32 +0000 |
commit | 2032b7efaea0bae3fd0d7a4e4e3b61389169eaee (patch) | |
tree | 072b3d6a3c9de6114a9de1c89cd26ada6fd84623 /mail/exim/Makefile | |
parent | 25092d7f488f0a5f18f13fedeed1cf8a9d467556 (diff) | |
download | pkgsrc-2032b7efaea0bae3fd0d7a4e4e3b61389169eaee.tar.gz |
Changes 4.70:
* Added patch by Johannes Berg that expands the main option
"spamd_servers" if it starts with a dollar sign.
* Write list of recipients to X-Envelope-Sender header when building
the mbox-format spool file for content scanning.
* Added patch by Wolfgang Breyha that adds experimental DCC
(http://www.dcc-servers.net/) support via dccifd. Activated by
setting EXPERIMENTAL_DCC=yes in Local/Makefile. Check out
experimental_spec.txt for more documentation.
* Bugzilla 673: Add f-protd malware scanner support.
* Bugzilla 657: Embedded PCRE removed from the exim source tree.
When building exim an external PCRE library is now needed -
PCRE is a system library on the majority of modern systems.
See entry on PCRE_LIBS in EDITME file.
* Bugzilla 646: Removed unwanted C/R in Dovecot authenticator
conversation. Added nologin parameter to request.
* Do not log submission mode rewrites if they do not change the address.
* Bugzilla 662: Fix stack corruption before exec() in daemon.c.
* Bugzilla 602: exicyclog now handles panic log, and creates empty
log files in place. Contributed by Roberto Lima
* Bugzilla 667: close socket used by dovecot authenticator
* Bugzilla 615: When checking the local_parts router precondition
after a local_part_suffix or local_part_prefix option, Exim now
does not use the address's named list lookup cache, since this
contains cached lookups for the whole local part.
* Bugzilla 521: Integrated SPF Best Guess support contributed by
Robert Millan. Documentation is in experimental-spec.txt
* Bugzilla 668: Fix parallel build (make -j).
* Bugzilla 437: Prevent Maildir aux files being created with mode 000
* Bugzilla 598: Improvement to Dovecot authenticator handling.
* Leading white space used to be stripped from $spam_report which
wrecked the formatting. Now it is preserved.
* Save $spam_score, $spam_bar, and $spam_report in spool files, so
that they are available at delivery time.
* Fix the way ${extract is skipped in the untaken branch of a conditional.
* TLS error reporting now respects the incoming_interface and
incoming_port log selectors.
* more...
Diffstat (limited to 'mail/exim/Makefile')
-rw-r--r-- | mail/exim/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 772d0093637..3f03239b115 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.95 2009/02/13 15:28:03 abs Exp $ +# $NetBSD: Makefile,v 1.96 2009/11/17 06:39:32 adam Exp $ -DISTNAME= exim-4.69 -PKGREVISION= 4 +DISTNAME= exim-4.70 CATEGORIES= mail net MASTER_SITES= ftp://ftp.exim.org/pub/exim/exim4/ \ ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim4/ \ @@ -59,10 +58,6 @@ CFLAGS+= ${CPPFLAGS} .include "options.mk" -# BDB_TYPE gets set to "db1" if USE_DB185=="yes" -USE_DB185?= no -BDB_ACCEPTED?= db1 db2 db3 db4 - post-extract: mkdir ${WRKSRC}/Local cp ${WRKSRC}/src/EDITME ${WRKSRC}/Local/Makefile.pkgsrc @@ -81,8 +76,10 @@ pre-configure: -e 's:@LOOKUP_LIBS@:${LOOKUP_LIBS}:' \ -e 's:@CHOWN@:${CHOWN}:' \ -e 's:@CHGRP@:${CHGRP}:' \ + -e 's:@CHMOD@:${CHMOD}:' \ -e 's:@MV@:${MV}:' \ -e 's:@RM@:${RM}:' \ + -e 's:@TOUCH@:${TOUCH}:' \ -e 's:@PERL5@:${PERL5}:' \ -e 's:@VARBASE@:${VARBASE}:' \ < ${WRKSRC}/Local/Makefile.pkgsrc \ @@ -115,4 +112,5 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/doc/exim.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8/exim.8 .include "../../converters/libiconv/buildlink3.mk" +.include "../../devel/pcre/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |