diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2003-08-16 18:09:10 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2003-08-16 18:09:10 +0800 |
commit | e99181e2180d20e902682db438dc44783af077cf (patch) | |
tree | 1b80e438ce59c807c7f516c66d92e5b4b19a3ee9 /mail | |
parent | 47bae30e98c7b0665de106431b86ffded1f397da (diff) | |
download | freebsd-ports-gnome-e99181e2180d20e902682db438dc44783af077cf.tar.gz freebsd-ports-gnome-e99181e2180d20e902682db438dc44783af077cf.tar.zst freebsd-ports-gnome-e99181e2180d20e902682db438dc44783af077cf.zip |
Remove a wishlist patch incorporated into 4.21.
Reported by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
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, |