diff options
author | jlam <jlam@pkgsrc.org> | 2005-10-20 20:26:37 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-10-20 20:26:37 +0000 |
commit | 6e4c4fe2454e6eece3f91e1302fa7b6cec179f24 (patch) | |
tree | d83531e3d29c305f889ec1acd7fad1229e14233f /mail/maildrop/Makefile | |
parent | a6ee9bda47f38c8df5294ffbe138fde3fb17c5c4 (diff) | |
download | pkgsrc-6e4c4fe2454e6eece3f91e1302fa7b6cec179f24.tar.gz |
Update mail/maildrop to 2.0.1. Changes from version 1.8.1 include:
* Use PCRE (http://www.pcre.org) for mattern matching.
+ Most visible change is a different syntax for subexpression matching,
using (...). MATCH2 becomes MATCH1, MATCH3 becomes MATCH2, etc...
+ "w" account option dropped.
+ During a transitional period, setting MAILDROP_OLD_REGEXP
reverts to the old pattern matching engine.
* Do not autoreply to messages with an Auto-Submitted: header, unless
it's contents are "no". Add Auto-Submitted: auto-replied.
Diffstat (limited to 'mail/maildrop/Makefile')
-rw-r--r-- | mail/maildrop/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/maildrop/Makefile b/mail/maildrop/Makefile index 32dcf1c34fd..f80e8828ac8 100644 --- a/mail/maildrop/Makefile +++ b/mail/maildrop/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.26 2005/08/11 00:03:42 jlam Exp $ +# $NetBSD: Makefile,v 1.27 2005/10/20 20:26:37 jlam Exp $ -DISTNAME= maildrop-1.8.1 +DISTNAME= maildrop-2.0.1 PKGBASE= ${DISTNAME:C/-[^-]*$//} CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=courier/} @@ -10,7 +10,7 @@ MAINTAINER= jlam@NetBSD.org COMMENT= Courier mail delivery agent with filtering abilities HOMEPAGE= http://www.courier-mta.org/maildrop/ -DEPENDS+= courier-maildir>=0.51.0:../../mail/courier-maildir +DEPENDS+= courier-maildir>=0.52.1:../../mail/courier-maildir USE_TOOLS+= gmake USE_LANGUAGES= c c++ |