diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-04-18 20:40:20 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-04-18 20:40:20 +0000 |
commit | 6d9bab89320b9cb0dbccabf12c39ee4cef89b0b1 (patch) | |
tree | ecd0ce9c212aaa11decf8fede65cc153ed6afce8 | |
parent | Update to 1.0.4. (diff) |
- Add patch obtained from author to work with Apple Mail
- Portlint
PR: ports/65682
Submitted by: Michael Ranner <mranner@inode.at>
Approved by: maintainer
-rw-r--r-- | mail/messagewall/Makefile | 8 | ||||
-rw-r--r-- | mail/messagewall/files/patch-applemail | 11 |
2 files changed, 15 insertions, 4 deletions
diff --git a/mail/messagewall/Makefile b/mail/messagewall/Makefile index 6723552c03ca..b5e2d8430787 100644 --- a/mail/messagewall/Makefile +++ b/mail/messagewall/Makefile @@ -7,7 +7,7 @@ PORTNAME= messagewall PORTVERSION= 1.0.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= http://www.messagewall.org/download/ DISTNAME= messagewall-${PORTVERSION} @@ -15,15 +15,15 @@ DISTNAME= messagewall-${PORTVERSION} MAINTAINER= opr@bsdaemon.be COMMENT= Free SMTP PROXY with filtering -BUILD_DEPENDS= ${LOCALBASE}/include/firestring.h:${PORTSDIR}/misc/firestring \ +BUILD_DEPENDS= ${LOCALBASE}/include/firestring.h:${PORTSDIR}/misc/firestring \ ${LOCALBASE}/include/firedns.h:${PORTSDIR}/dns/firedns MAN1= messagewall.1 messagewallctl.1 messagewallstats.1 MAN5= messagewall.conf.5 messagewall_profiles.5 CONF1= messagewall.conf -WRKSRC= ${WRKDIR}/messagewall -GNU_CONFIGURE= yes +WRKSRC= ${WRKDIR}/messagewall +GNU_CONFIGURE= yes USE_REINPLACE= yes pre-fetch: diff --git a/mail/messagewall/files/patch-applemail b/mail/messagewall/files/patch-applemail new file mode 100644 index 000000000000..cdc7b211d776 --- /dev/null +++ b/mail/messagewall/files/patch-applemail @@ -0,0 +1,11 @@ +--- rfc822.c.orig Fri Jul 12 19:45:03 2002 ++++ rfc822.c Sat Apr 17 21:05:01 2004 +@@ -156,7 +156,7 @@ + } else { + j = i; + while (j < headervalue->l && +- strchr(RFC822_WHITESPACE,headervalue->s[j]) == NULL) ++ strchr(RFC822_WHITESPACE,headervalue->s[j]) == NULL && headervalue->s[j] != ';') + j++; + } + |