* 2: user is in the TO list
* 3: user is in the CC list
* 4: user is originator
+ * 5: sent to a subscribed mailinglist
*/
int mutt_user_is_recipient (HEADER *h)
{
}
else if (user_in_addr (env->cc))
h->recipient = 3;
+ else if (check_for_mailing_list (env->to, NULL, NULL, 0))
+ h->recipient = 5;
+ else if (check_for_mailing_list (env->cc, NULL, NULL, 0))
+ h->recipient = 5;
else
h->recipient = 0;
}
** This variable allows you to specify where Mutt will place its
** temporary files needed for displaying and composing messages.
*/
- { "to_chars", DT_STR, R_BOTH, UL &Tochars, UL " +TCF" },
+ { "to_chars", DT_STR, R_BOTH, UL &Tochars, UL " +TCFL" },
/*
** .pp
** Controls the character used to indicate mail addressed to you. The
** the message (default: T). The fourth character is used when your
** address is specified in the CC header field, but you are not the only
** recipient. The fifth character is used to indicate mail that was sent
- ** by \fIyou\fP.
+ ** by \fIyou\fP. The sixth character is used to indicate when a mail
+ ** was sent to a mailing-list you subscribe to (default: L).
*/
{ "use_8bitmime", DT_BOOL, R_NONE, OPTUSE8BITMIME, 0 },
/*