NeoMutt  2024-11-14-138-ge5ca67
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
maillist.c
Go to the documentation of this file.
1
30#include "config.h"
31#include <stdbool.h>
32#include <stdio.h>
33#include "mutt/lib.h"
34#include "address/lib.h"
35#include "email/lib.h"
36#include "maillist.h"
37#include "muttlib.h"
38
44bool mutt_is_mail_list(const struct Address *addr)
45{
48 return false;
49}
50
56bool mutt_is_subscribed_list(const struct Address *addr)
57{
60 {
62 }
63 return false;
64}
65
78bool check_for_mailing_list(struct AddressList *al, const char *pfx, char *buf, int buflen)
79{
80 struct Address *a = NULL;
81 TAILQ_FOREACH(a, al, entries)
82 {
84 {
85 if (pfx && buf && buflen)
86 snprintf(buf, buflen, "%s%s", pfx, mutt_get_name(a));
87 return true;
88 }
89 }
90 return false;
91}
92
102bool check_for_mailing_list_addr(struct AddressList *al, char *buf, int buflen)
103{
104 struct Address *a = NULL;
105 TAILQ_FOREACH(a, al, entries)
106 {
108 {
109 if (buf && buflen)
110 snprintf(buf, buflen, "%s", buf_string(a->mailbox));
111 return true;
112 }
113 }
114 return false;
115}
116
124bool first_mailing_list(char *buf, size_t buflen, struct AddressList *al)
125{
126 struct Address *a = NULL;
127 TAILQ_FOREACH(a, al, entries)
128 {
130 {
131 mutt_save_path(buf, buflen, a);
132 return true;
133 }
134 }
135 return false;
136}
Email Address Handling.
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:96
struct RegexList SubscribedLists
List of header patterns to unignore (see)
Definition: globals.c:48
struct RegexList UnSubscribedLists
Definition: globals.c:54
struct RegexList UnMailLists
List of regexes to exclude false matches in SubscribedLists.
Definition: globals.c:52
struct RegexList MailLists
List of permitted fields in a mailto: url.
Definition: globals.c:40
Structs that make up an email.
const char * mutt_get_name(const struct Address *a)
Pick the best name to display from an address.
Definition: sort.c:139
bool mutt_is_mail_list(const struct Address *addr)
Is this the email address of a mailing list? - Implements addr_predicate_t -.
Definition: maillist.c:44
bool mutt_is_subscribed_list(const struct Address *addr)
Is this the email address of a user-subscribed mailing list? - Implements addr_predicate_t -.
Definition: maillist.c:56
bool check_for_mailing_list(struct AddressList *al, const char *pfx, char *buf, int buflen)
Search list of addresses for a mailing list.
Definition: maillist.c:78
bool check_for_mailing_list_addr(struct AddressList *al, char *buf, int buflen)
Check an address list for a mailing list.
Definition: maillist.c:102
bool first_mailing_list(char *buf, size_t buflen, struct AddressList *al)
Get the first mailing list in the list of addresses.
Definition: maillist.c:124
Handle mailing lists.
Convenience wrapper for the library headers.
bool mutt_regexlist_match(struct RegexList *rl, const char *str)
Does a string match any Regex in the list?
Definition: regex.c:200
void mutt_save_path(char *buf, size_t buflen, const struct Address *addr)
Turn an email address into a filename (for saving)
Definition: muttlib.c:628
Some miscellaneous functions.
#define TAILQ_FOREACH(var, head, field)
Definition: queue.h:743
An email address.
Definition: address.h:36
struct Buffer * mailbox
Mailbox and host address.
Definition: address.h:38