diff options
author | eik <eik@FreeBSD.org> | 2004-05-10 23:07:59 +0800 |
---|---|---|
committer | eik <eik@FreeBSD.org> | 2004-05-10 23:07:59 +0800 |
commit | fe23bf438db11ae397f28ca70b1d9831433ab03d (patch) | |
tree | 94dc22d5d730400128485f819dfcc1f214a06a80 /mail | |
parent | ce397f0cb7e663e589dbad1a22cd8bebbe724d7c (diff) | |
download | freebsd-ports-gnome-fe23bf438db11ae397f28ca70b1d9831433ab03d.tar.gz freebsd-ports-gnome-fe23bf438db11ae397f28ca70b1d9831433ab03d.tar.zst freebsd-ports-gnome-fe23bf438db11ae397f28ca70b1d9831433ab03d.zip |
Upgrade to exim 4.34 + exiscan-acl 21
Diffstat (limited to 'mail')
-rw-r--r-- | mail/exim/Makefile | 6 | ||||
-rw-r--r-- | mail/exim/distinfo | 8 | ||||
-rw-r--r-- | mail/exim/files/patch-src::verify.c | 22 |
3 files changed, 7 insertions, 29 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index ace951f894f4..ba6a64c34e36 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -7,7 +7,7 @@ PORTNAME= exim PORTVERSION= ${EXIM_VERSION}+${EXISCAN_VERSION} -PORTREVISION= 1 +PORTREVISION= 0 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_EXIM} MASTER_SITE_SUBDIR= exim4 @@ -24,8 +24,8 @@ PATCH_DIST_STRIP= -p1 MAINTAINER= eik@FreeBSD.org COMMENT?= High performance MTA for Unix systems on the Internet -EXIM_VERSION= 4.33 -EXISCAN_VERSION=20 +EXIM_VERSION= 4.34 +EXISCAN_VERSION=21 .if !defined(EXIMON_ONLY) .if defined(PKGNAMESUFFIX) diff --git a/mail/exim/distinfo b/mail/exim/distinfo index 70f24c41f0a3..8a2004cb6851 100644 --- a/mail/exim/distinfo +++ b/mail/exim/distinfo @@ -1,4 +1,4 @@ -MD5 (exim/exim-4.33.tar.bz2) = 8514c800172e4ab4e9cb90553605e1f2 -SIZE (exim/exim-4.33.tar.bz2) = 1327741 -MD5 (exim/exiscan-acl-4.33-20.patch.bz2) = 30a3ec5845f02a564c2300290371c475 -SIZE (exim/exiscan-acl-4.33-20.patch.bz2) = 74187 +MD5 (exim/exim-4.34.tar.bz2) = bab611edc153867334b1c7cffd8fe3c0 +SIZE (exim/exim-4.34.tar.bz2) = 1328742 +MD5 (exim/exiscan-acl-4.34-21.patch.bz2) = 2bcb93612e8def81758026bf47c5bb12 +SIZE (exim/exiscan-acl-4.34-21.patch.bz2) = 74294 diff --git a/mail/exim/files/patch-src::verify.c b/mail/exim/files/patch-src::verify.c deleted file mode 100644 index 6579e0829129..000000000000 --- a/mail/exim/files/patch-src::verify.c +++ /dev/null @@ -1,22 +0,0 @@ -# -# Fix SEGV on long headers when verify = header_syntax is used -# <http://www.guninski.com/exim1.html> -# ---- src/verify.c.orig Thu May 6 15:46:44 2004 -+++ src/verify.c Thu May 6 15:47:27 2004 -@@ -1264,14 +1264,9 @@ - - if (recipient == NULL && Ustrcmp(errmess, "empty address") != 0) - { -- uschar hname[64]; -- uschar *t = h->text; -- uschar *tt = hname; -+ uschar *t; - uschar *verb = US"is"; - int len; -- -- while (*t != ':') *tt++ = *t++; -- *tt = 0; - - /* Arrange not to include any white space at the end in the - error message. */ |