summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2004-05-30 02:35:58 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2004-05-30 02:35:58 +0000
commitb138e26430888bb473f2be9c86dbbf91b2e57bc3 (patch)
tree4458be6a60516c7dcee76c47d5ac7b280008bd41 /mail-mta/exim/files/exim-4.33-r1-header-syntax.patch
parentMoving to mail-mta/exim (diff)
downloadhistorical-b138e26430888bb473f2be9c86dbbf91b2e57bc3.tar.gz
historical-b138e26430888bb473f2be9c86dbbf91b2e57bc3.tar.bz2
historical-b138e26430888bb473f2be9c86dbbf91b2e57bc3.zip
Moved from net-mail/exim to mail-mta/exim.
Diffstat (limited to 'mail-mta/exim/files/exim-4.33-r1-header-syntax.patch')
-rw-r--r--mail-mta/exim/files/exim-4.33-r1-header-syntax.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/mail-mta/exim/files/exim-4.33-r1-header-syntax.patch b/mail-mta/exim/files/exim-4.33-r1-header-syntax.patch
new file mode 100644
index 000000000000..06cef16b17db
--- /dev/null
+++ b/mail-mta/exim/files/exim-4.33-r1-header-syntax.patch
@@ -0,0 +1,37 @@
+*** exim-4.33/src/verify.c Wed May 5 11:08:36 2004
+--- verify.c Thu May 6 14:36:40 2004
+***************
+*** 1264,1282 ****
+
+ if (recipient == NULL && Ustrcmp(errmess, "empty address") != 0)
+ {
+- uschar hname[64];
+- uschar *t = h->text;
+- uschar *tt = hname;
+ 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. */
+
+- t = ss;
+ while (t > s && isspace(t[-1])) t--;
+
+ /* Add the address which failed to the error message, since in a
+--- 1264,1276 ----
+
+ if (recipient == NULL && Ustrcmp(errmess, "empty address") != 0)
+ {
+ uschar *verb = US"is";
++ uschar *t = ss;
+ int len;
+
+ /* Arrange not to include any white space at the end in the
+ error message. */
+
+ while (t > s && isspace(t[-1])) t--;
+
+ /* Add the address which failed to the error message, since in a