1 For %F, display Bcc recipient if no other recipients found.
2 Closes http://bugs.mutt.org/3157
3 See also http://bugs.debian.org/350957
8 snprintf (buf, len, "To %s", mutt_get_name (hdr->to));
9 else if (me && hdr->cc)
10 snprintf (buf, len, "Cc %s", mutt_get_name (hdr->cc));
11 + else if (me && hdr->bcc)
12 + snprintf (buf, len, "Bcc %s", mutt_get_name (hdr->bcc));
14 strfcpy (buf, mutt_get_name (hdr->from), len);