summaryrefslogtreecommitdiff
path: root/mail/exim-old
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2001-11-14 11:25:42 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2001-11-14 11:25:42 +0000
commit983ef9b69a83d9404a507a22c4ada7d08704a8ba (patch)
tree067dba65e85a2c543c09b231a4aca1ca00d752ed /mail/exim-old
parent- Update to version 1.5.1 (diff)
Add the author's patch to fix bad handling of a disk space shortage
on pipeline input. Bump PORTREVISION to reflect the change. Obtained from: exim-users@exim.org Message-Id: <Pine.SOL.4.33.0111131315260.9828-100000@virgo.cus.cam.ac.uk>
Notes
Notes: svn path=/head/; revision=50016
Diffstat (limited to 'mail/exim-old')
-rw-r--r--mail/exim-old/Makefile2
-rw-r--r--mail/exim-old/files/patch-src::smtp_in.c10
2 files changed, 11 insertions, 1 deletions
diff --git a/mail/exim-old/Makefile b/mail/exim-old/Makefile
index 9edb7afae006..5e6d8d3739c5 100644
--- a/mail/exim-old/Makefile
+++ b/mail/exim-old/Makefile
@@ -7,7 +7,7 @@
PORTNAME= exim
PORTVERSION= 3.33
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= mail
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ \
http://www.exim.org/ftp/ \
diff --git a/mail/exim-old/files/patch-src::smtp_in.c b/mail/exim-old/files/patch-src::smtp_in.c
new file mode 100644
index 000000000000..4edda1daf19c
--- /dev/null
+++ b/mail/exim-old/files/patch-src::smtp_in.c
@@ -0,0 +1,10 @@
+--- src/smtp_in.c.orig Wed Aug 15 13:09:12 2001
++++ src/smtp_in.c Wed Nov 14 13:24:12 2001
+@@ -2482,6 +2482,7 @@
+ mail_from_size + 5000 : 0))
+ {
+ smtp_printf("452 space shortage, please try later\r\n");
++ sender_address = NULL;
+ break;
+ }
+