diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-11-14 11:25:42 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-11-14 11:25:42 +0000 |
commit | f4c9ebede4dd152b39c725ddec2a8381f2e807cd (patch) | |
tree | 9f64998478d7b2419dc721c8f0ddc441cf3ae803 | |
parent | a9c8ea523d810b5251f22237ac80187213e01150 (diff) | |
download | FreeBSD-ports-f4c9ebede4dd152b39c725ddec2a8381f2e807cd.zip FreeBSD-ports-f4c9ebede4dd152b39c725ddec2a8381f2e807cd.tar.gz |
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>
-rw-r--r-- | mail/exim-devel/Makefile | 2 | ||||
-rw-r--r-- | mail/exim-devel/files/patch-src::smtp_in.c | 10 | ||||
-rw-r--r-- | mail/exim-old/Makefile | 2 | ||||
-rw-r--r-- | mail/exim-old/files/patch-src::smtp_in.c | 10 | ||||
-rw-r--r-- | mail/exim/Makefile | 2 | ||||
-rw-r--r-- | mail/exim/files/patch-src::smtp_in.c | 10 |
6 files changed, 33 insertions, 3 deletions
diff --git a/mail/exim-devel/Makefile b/mail/exim-devel/Makefile index 9edb7af..5e6d8d3 100644 --- a/mail/exim-devel/Makefile +++ b/mail/exim-devel/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-devel/files/patch-src::smtp_in.c b/mail/exim-devel/files/patch-src::smtp_in.c new file mode 100644 index 0000000..4edda1d --- /dev/null +++ b/mail/exim-devel/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; + } + diff --git a/mail/exim-old/Makefile b/mail/exim-old/Makefile index 9edb7af..5e6d8d3 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 0000000..4edda1d --- /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; + } + diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 9edb7af..5e6d8d3 100644 --- a/mail/exim/Makefile +++ b/mail/exim/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/files/patch-src::smtp_in.c b/mail/exim/files/patch-src::smtp_in.c new file mode 100644 index 0000000..4edda1d --- /dev/null +++ b/mail/exim/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; + } + |