summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2003-08-16 10:09:10 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2003-08-16 10:09:10 +0000
commit0cc81f2419f0b905a57a73d6f50b816ec0ab7746 (patch)
tree661a0005044e14f21658791c9937d4d3c2fe6621 /mail
parentUtilize INFO. (diff)
Remove a wishlist patch incorporated into 4.21.
Reported by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Notes
Notes: svn path=/head/; revision=87046
Diffstat (limited to 'mail')
-rw-r--r--mail/exim/files/wishlist-suppress-received.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/mail/exim/files/wishlist-suppress-received.patch b/mail/exim/files/wishlist-suppress-received.patch
deleted file mode 100644
index cbd23c1bb8d4..000000000000
--- a/mail/exim/files/wishlist-suppress-received.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# (Exim 4 wish list #163) suppress the "Received:" header if
-# received_header_text is empty.
-#
---- src/receive.c.orig Mon May 12 15:39:21 2003
-+++ src/receive.c Fri Jun 13 03:17:26 2003
-@@ -1915,9 +1915,17 @@
- /* The first element on the header chain is reserved for the Received
- header, so all we have to do is fill in the text pointer. */
-
--header_list->text = string_sprintf("%s; %s\n", received, timestamp);
-+if (received[0] == 0)
-+ {
-+ header_list->text = string_sprintf("Received: ; %s\n", timestamp);
-+ header_list->type = htype_old;
-+ }
-+else
-+ {
-+ header_list->text = string_sprintf("%s; %s\n", received, timestamp);
-+ header_list->type = htype_received;
-+ }
- header_list->slen = Ustrlen(header_list->text);
--header_list->type = htype_received;
-
-
- /* If there is no From: header, generate one. If there is no sender address,