Prototype for an Address Test function.
More...
Prototype for an Address Test function.
- Parameters
-
- Return values
-
◆ mutt_is_mail_list()
bool mutt_is_mail_list |
( |
const struct Address * |
addr | ) |
|
Is this the email address of a mailing list? - Implements addr_predicate_t -.
- Parameters
-
- Return values
-
Definition at line 44 of file maillist.c.
45{
48 return false;
49}
struct RegexList UnMailLists
List of regexes to blacklist false matches in MailLists.
struct RegexList MailLists
List of regexes to match mailing lists.
bool mutt_regexlist_match(struct RegexList *rl, const char *str)
Does a string match any Regex in the list?
char * mailbox
Mailbox and host address.
◆ mutt_is_subscribed_list()
bool mutt_is_subscribed_list |
( |
const struct Address * |
addr | ) |
|
Is this the email address of a user-subscribed mailing list? - Implements addr_predicate_t -.
- Parameters
-
- Return values
-
true | It's a subscribed mailing list |
Definition at line 56 of file maillist.c.
57{
60 {
62 }
63 return false;
64}
struct RegexList SubscribedLists
List of regexes to match subscribed mailing lists.
struct RegexList UnSubscribedLists
List of regexes to blacklist false matches in SubscribedLists.