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?
Definition at line 46 of file maillist.c.
47{
50
53 return false;
54}
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
@ MODULE_ID_ALIAS
ModuleAlias, Alias
bool mutt_regexlist_match(struct RegexList *rl, const char *str)
Does a string match any Regex in the list?
void * neomutt_get_module_data(struct NeoMutt *n, enum ModuleId id)
Get the private data for a Module.
struct Buffer * mailbox
Mailbox and host address.
Alias private Module data.
struct RegexList mail
Regexes to match mailing lists.
struct RegexList unmail
Regexes to exclude false matches in mail.
Container for Accounts, Notifications.
◆ 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 61 of file maillist.c.
62{
65
68 {
70 }
71 return false;
72}
struct RegexList subscribed
Regexes to match subscribed mailing lists.
struct RegexList unsubscribed
Regexes to exclude false matches in subscribed.