diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2006-04-05 21:29:12 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2006-04-05 21:29:12 +0000 |
commit | 3e2514a99a153e65187389e73a559d549dc1fdac (patch) | |
tree | 4d974c0e4e60b4ff8b1fa4192693a4b0c91cb434 /mail/exim | |
parent | - Change my ports MAINTAINER to jmelo@FreeBSD.org. (diff) |
Fix the order of the acl and add_header entries to fix ACL negation.
Submitted by: Stanislaw Halik <sthalik@tehran.lain.pl>
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/Makefile | 2 | ||||
-rw-r--r-- | mail/exim/files/patch-src_acl.c | 28 |
2 files changed, 29 insertions, 1 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 0d0a3dcb1898..88d706602ca7 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -7,7 +7,7 @@ PORTNAME= exim PORTVERSION?= ${EXIM_VERSION} -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_EXIM:S/$/:exim/} MASTER_SITE_SUBDIR= exim4/:exim diff --git a/mail/exim/files/patch-src_acl.c b/mail/exim/files/patch-src_acl.c new file mode 100644 index 000000000000..d025a47dbb26 --- /dev/null +++ b/mail/exim/files/patch-src_acl.c @@ -0,0 +1,28 @@ +--- src/acl.c.orig Tue Apr 4 16:00:04 2006 ++++ src/acl.c Wed Apr 5 20:39:34 2006 +@@ -1,4 +1,4 @@ +-/* $Cambridge: exim/exim-src/src/acl.c,v 1.57 2006/03/06 16:05:12 ph10 Exp $ */ ++/* $Cambridge: exim/exim-src/src/acl.c,v 1.58 2006/04/04 17:05:45 fanf2 Exp $ */ + + /************************************************* + * Exim - an Internet mail transport agent * +@@ -202,8 +202,8 @@ + checking functions. */ + + static uschar cond_expand_at_top[] = { +- TRUE, /* add_header */ + TRUE, /* acl */ ++ TRUE, /* add_header */ + FALSE, /* authenticated */ + #ifdef EXPERIMENTAL_BRIGHTMAIL + TRUE, /* bmi_optin */ +@@ -260,8 +260,8 @@ + /* Flags to identify the modifiers */ + + static uschar cond_modifiers[] = { +- TRUE, /* add_header */ + FALSE, /* acl */ ++ TRUE, /* add_header */ + FALSE, /* authenticated */ + #ifdef EXPERIMENTAL_BRIGHTMAIL + TRUE, /* bmi_optin */ |