projects
/
mutt
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
292d39d
)
For %F, display Bcc recipient if no other recipients found. Closes #3157.
author
Rocco Rutte
<pdmef@gmx.net>
Wed, 8 Apr 2009 14:25:38 +0000
(16:25 +0200)
committer
Rocco Rutte
<pdmef@gmx.net>
Wed, 8 Apr 2009 14:25:38 +0000
(16:25 +0200)
hdrline.c
patch
|
blob
|
history
diff --git
a/hdrline.c
b/hdrline.c
index fe45096d5ac59f5df800ef30298b99c1fbf6d0d1..21adc282a9645fc3db87b1ce54821d0e5eb52f1d 100644
(file)
--- a/
hdrline.c
+++ b/
hdrline.c
@@
-121,6
+121,8
@@
static void make_from (ENVELOPE *hdr, char *buf, size_t len, int do_lists)
snprintf (buf, len, "To %s", mutt_get_name (hdr->to));
else if (me && hdr->cc)
snprintf (buf, len, "Cc %s", mutt_get_name (hdr->cc));
+ else if (me && hdr->bcc)
+ snprintf (buf, len, "Bcc %s", mutt_get_name (hdr->bcc));
else if (hdr->from)
strfcpy (buf, mutt_get_name (hdr->from), len);
else