diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2002-04-18 12:20:20 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2002-04-18 12:20:20 +0000 |
commit | 478dd1d8f4beb6e2d819439a33258718c4bb8d0c (patch) | |
tree | d3a7aaf6470042592b639c734e93a3067d813dc0 /mail/exim | |
parent | 325c1cfbb1e470e140ed26056818c1a45bd72453 (diff) | |
download | ports-478dd1d8f4beb6e2d819439a33258718c4bb8d0c.tar.gz ports-478dd1d8f4beb6e2d819439a33258718c4bb8d0c.zip |
Notes
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/Makefile | 5 | ||||
-rw-r--r-- | mail/exim/distinfo | 2 | ||||
-rw-r--r-- | mail/exim/files/patch-src::expand.c | 15 | ||||
-rw-r--r-- | mail/exim/files/patch-src::filter.c | 62 |
4 files changed, 3 insertions, 81 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 3c4a3b6e138a..9aff424c39e7 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -6,13 +6,12 @@ # PORTNAME= exim -PORTVERSION= 3.35 -PORTREVISION= 1 +PORTVERSION= 3.36 CATEGORIES= mail MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/exim3/ \ http://www.exim.org/ftp/exim3/ \ ftp://ftp.is.co.za/networking/mail/transport/exim/exim3/ -DISTFILES= exim-3.35.tar.bz2 exim-texinfo-3.30.tar.bz2 +DISTFILES= exim-3.36.tar.bz2 exim-texinfo-3.30.tar.bz2 MAINTAINER= sheldonh@FreeBSD.org diff --git a/mail/exim/distinfo b/mail/exim/distinfo index 9dfbaee5048d..fa9420f07b61 100644 --- a/mail/exim/distinfo +++ b/mail/exim/distinfo @@ -1,2 +1,2 @@ -MD5 (exim-3.35.tar.bz2) = dd1600dceb36e7b4295958446b209090 +MD5 (exim-3.36.tar.bz2) = a18cbe15a2973714fe1aa68dffad63c4 MD5 (exim-texinfo-3.30.tar.bz2) = 6400cc7988036991b6bbe7ed9b4d9eeb diff --git a/mail/exim/files/patch-src::expand.c b/mail/exim/files/patch-src::expand.c deleted file mode 100644 index 60de46082f1b..000000000000 --- a/mail/exim/files/patch-src::expand.c +++ /dev/null @@ -1,15 +0,0 @@ ---- src/expand.c.orig Tue Feb 19 12:10:43 2002 -+++ src/expand.c Wed Apr 3 18:11:56 2002 -@@ -572,10 +572,9 @@ - lseek(deliver_datafile, start_offset, SEEK_SET); - len = read(deliver_datafile, body, len); - if (len >= 0) body[len] = 0; -- while (*body != 0) -+ while (len > 0) - { -- if (*body == '\n') *body = ' '; -- body++; -+ if (body[--len] == '\n' || body[len] == 0) body[len] = ' '; - } - } - return (*ss == NULL)? "" : *ss; diff --git a/mail/exim/files/patch-src::filter.c b/mail/exim/files/patch-src::filter.c deleted file mode 100644 index 8e6e040f3c11..000000000000 --- a/mail/exim/files/patch-src::filter.c +++ /dev/null @@ -1,62 +0,0 @@ ---- src/filter.c.orig Tue Feb 19 12:10:43 2002 -+++ src/filter.c Wed Apr 3 18:11:56 2002 -@@ -2566,12 +2566,12 @@ - BOOL - filter_runtest(int fd, BOOL is_system, BOOL dot_ended) - { --int rc, body_len, action, header_size; -+int rc, body_len, body_end_len, action, header_size; - register int ch; - BOOL yield, delivered; - struct stat statbuf; - address_item *generated = NULL; --char *body, *error, *filebuf, *s; -+char *error, *filebuf, *s; - - /* Read the filter file into store as will be done by the director - in a real case. */ -@@ -2653,7 +2653,7 @@ - function as efficient as possible. Handling message_body_end is somewhat more - tedious. Pile it all into a circular buffer and sort out at the end. */ - --message_body = body = store_malloc(message_body_visible + 1); -+message_body = store_malloc(message_body_visible + 1); - message_body_end = store_malloc(message_body_visible + 1); - s = message_body_end; - body_len = 0; -@@ -2729,24 +2729,25 @@ - memcpy(temp, message_body_end, below); - memmove(message_body_end, s+1, above); - memcpy(message_body_end + above, temp, below); -- message_body_end[message_body_visible] = 0; -+ s = message_body_end + message_body_visible; - } - } --else *s = 0; - --/* Convert newlines in the body variables to spaces */ -+*s = 0; -+body_end_len = s - message_body_end; - --while (*body != 0) -+/* Convert newlines and nulls in the body variables to spaces */ -+while (body_len > 0) - { -- if (*body == '\n') *body = ' '; -- body++; -+ if (message_body[--body_len] == '\n' || message_body[body_len] == 0) -+ message_body[body_len] = ' '; - } - --body = message_body_end; --while (*body != 0) -+while (body_end_len > 0) - { -- if (*body == '\n') *body = ' '; -- body++; -+ if (message_body_end[--body_end_len] == '\n' || -+ message_body_end[body_end_len] == 0) -+ message_body_end[body_end_len] = ' '; - } - - /* Now pass the filter file to the function that interprets it. Because |