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 45 of file maillist.c.
46{
49 return false;
50}
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
struct RegexList UnMailLists
List of regexes to exclude false matches in SubscribedLists.
struct RegexList MailLists
List of permitted fields in a mailto: url.
bool mutt_regexlist_match(struct RegexList *rl, const char *str)
Does a string match any Regex in the list?
struct Buffer * 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 57 of file maillist.c.
58{
61 {
63 }
64 return false;
65}
struct RegexList SubscribedLists
List of header patterns to unignore (see)
struct RegexList UnSubscribedLists