aboutsummaryrefslogtreecommitdiffstats
path: root/mail/exim
diff options
context:
space:
mode:
Diffstat (limited to 'mail/exim')
-rw-r--r--mail/exim/Makefile6
-rw-r--r--mail/exim/distinfo8
-rw-r--r--mail/exim/files/patch-src::verify.c22
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. */