diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2003-08-16 10:09:10 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2003-08-16 10:09:10 +0000 |
commit | 0cc81f2419f0b905a57a73d6f50b816ec0ab7746 (patch) | |
tree | 661a0005044e14f21658791c9937d4d3c2fe6621 /mail | |
parent | 18f7c67c5e5cf9e0be15ebf44f65ac5c0aa39232 (diff) |
Notes
Diffstat (limited to 'mail')
-rw-r--r-- | mail/exim/files/wishlist-suppress-received.patch | 26 |
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, |