NeoMutt  2023-03-22
Teaching an old dog new tricks
DOXYGEN
address.h
Go to the documentation of this file.
1
24#ifndef MUTT_ADDRESS_ADDRESS_H
25#define MUTT_ADDRESS_ADDRESS_H
26
27#include <stddef.h>
28#include <stdbool.h>
29#include <stdio.h>
30#include "mutt/lib.h"
31
35struct Address
36{
37 char *personal;
38 char *mailbox;
39 bool group : 1;
40 bool is_intl : 1;
41 bool intl_checked : 1;
43};
44TAILQ_HEAD(AddressList, Address);
45
50{
57};
58
59extern int AddressError;
60extern const char *const AddressErrors[];
61extern const char AddressSpecials[];
62
63#define address_error(num) AddressErrors[num]
64
73typedef bool (*addr_predicate_t)(const struct Address *a);
74
75/* Utility functions that don't use struct Address or struct AddressList */
76void mutt_addr_cat (char *buf, size_t buflen, const char *value, const char *specials);
77bool mutt_addr_valid_msgid(const char *msgid);
78
79/* Functions that work on a single struct Address */
80bool mutt_addr_cmp (const struct Address *a, const struct Address *b);
81struct Address *mutt_addr_copy (const struct Address *addr);
82struct Address *mutt_addr_create (const char *personal, const char *mailbox);
83const char * mutt_addr_for_display(const struct Address *a);
84void mutt_addr_free (struct Address **ptr);
85struct Address *mutt_addr_new (void);
86bool mutt_addr_to_intl (struct Address *a);
87bool mutt_addr_to_local (struct Address *a);
88bool mutt_addr_uses_unicode(const char *str);
89size_t mutt_addr_write (struct Buffer *buf, struct Address *addr, bool display);
90
91/* Functions that work on struct AddressList */
92void mutt_addrlist_append (struct AddressList *al, struct Address *a);
93void mutt_addrlist_clear (struct AddressList *al);
94void mutt_addrlist_copy (struct AddressList *dst, const struct AddressList *src, bool prune);
95int mutt_addrlist_count_recips(const struct AddressList *al);
96void mutt_addrlist_dedupe (struct AddressList *al);
97bool mutt_addrlist_equal (const struct AddressList *ala, const struct AddressList *alb);
98int mutt_addrlist_parse (struct AddressList *al, const char *s);
99int mutt_addrlist_parse2 (struct AddressList *al, const char *s);
100void mutt_addrlist_prepend (struct AddressList *al, struct Address *a);
101void mutt_addrlist_qualify (struct AddressList *al, const char *host);
102int mutt_addrlist_remove (struct AddressList *al, const char *mailbox);
103void mutt_addrlist_remove_xrefs(const struct AddressList *a, struct AddressList *b);
104bool mutt_addrlist_search (const struct AddressList *haystack, const struct Address *needle);
105int mutt_addrlist_to_intl (struct AddressList *al, char **err);
106int mutt_addrlist_to_local (struct AddressList *al);
107bool mutt_addrlist_uses_unicode(const struct AddressList *al);
108size_t mutt_addrlist_write (const struct AddressList *al, struct Buffer *buf, bool display);
109size_t mutt_addrlist_write_wrap (const struct AddressList *al, struct Buffer *buf, const char *header);
110void mutt_addrlist_write_file (const struct AddressList *al, FILE *fp, const char *header);
111size_t mutt_addrlist_write_list (const struct AddressList *al, struct ListHead *list);
112
113#endif /* MUTT_ADDRESS_ADDRESS_H */
struct Address * mutt_addr_create(const char *personal, const char *mailbox)
Create and populate a new Address.
Definition: address.c:398
void mutt_addrlist_copy(struct AddressList *dst, const struct AddressList *src, bool prune)
Copy a list of addresses into another list.
Definition: address.c:737
void mutt_addrlist_qualify(struct AddressList *al, const char *host)
Expand local names in an Address list using a hostname.
Definition: address.c:650
bool mutt_addrlist_equal(const struct AddressList *ala, const struct AddressList *alb)
Compare two Address lists for equality.
Definition: address.c:812
void mutt_addrlist_clear(struct AddressList *al)
Unlink and free all Address in an AddressList.
Definition: address.c:1435
size_t mutt_addrlist_write_list(const struct AddressList *al, struct ListHead *list)
Write Addresses to a List.
Definition: address.c:1195
void mutt_addr_free(struct Address **ptr)
Free a single Address.
Definition: address.c:440
bool mutt_addr_valid_msgid(const char *msgid)
Is this a valid Message ID?
Definition: address.c:764
size_t mutt_addr_write(struct Buffer *buf, struct Address *addr, bool display)
Write a single Address to a buffer.
Definition: address.c:1024
const char *const AddressErrors[]
Messages for the error codes in AddressError.
Definition: address.c:64
bool mutt_addrlist_uses_unicode(const struct AddressList *al)
Do any of a list of addresses use Unicode characters.
Definition: address.c:1497
void mutt_addr_cat(char *buf, size_t buflen, const char *value, const char *specials)
Copy a string and wrap it in quotes if it contains special characters.
Definition: address.c:681
bool mutt_addr_cmp(const struct Address *a, const struct Address *b)
Compare two e-mail addresses.
Definition: address.c:864
void mutt_addrlist_append(struct AddressList *al, struct Address *a)
Append an Address to an AddressList.
Definition: address.c:1455
size_t mutt_addrlist_write_wrap(const struct AddressList *al, struct Buffer *buf, const char *header)
Write an AddressList to a buffer, perform line wrapping.
Definition: address.c:1167
struct Address * mutt_addr_new(void)
Create a new Address.
Definition: address.c:385
TAILQ_HEAD(AddressList, Address)
int mutt_addrlist_to_local(struct AddressList *al)
Convert an Address list from Punycode.
Definition: address.c:1353
size_t mutt_addrlist_write(const struct AddressList *al, struct Buffer *buf, bool display)
Write an Address to a buffer.
Definition: address.c:1184
bool mutt_addr_uses_unicode(const char *str)
Does this address use Unicode character.
Definition: address.c:1477
int mutt_addrlist_parse2(struct AddressList *al, const char *s)
Parse a list of email addresses.
Definition: address.c:616
struct Address * mutt_addr_copy(const struct Address *addr)
Copy the real address.
Definition: address.c:716
const char AddressSpecials[]
Characters with special meaning for email addresses.
Definition: address.c:42
bool mutt_addr_to_local(struct Address *a)
Convert an Address from Punycode.
Definition: address.c:1316
void mutt_addrlist_remove_xrefs(const struct AddressList *a, struct AddressList *b)
Remove cross-references.
Definition: address.c:1408
int mutt_addrlist_count_recips(const struct AddressList *al)
Count the number of Addresses with valid recipients.
Definition: address.c:844
int mutt_addrlist_parse(struct AddressList *al, const char *s)
Parse a list of email addresses.
Definition: address.c:458
AddressError
Possible values for AddressError.
Definition: address.h:50
@ ADDR_ERR_BAD_ROUTE
Bad route.
Definition: address.h:54
@ ADDR_ERR_BAD_ROUTE_ADDR
Bad route address.
Definition: address.h:55
@ ADDR_ERR_BAD_ADDR_SPEC
Bad address specifier.
Definition: address.h:56
@ ADDR_ERR_MEMORY
Out of memory.
Definition: address.h:51
@ ADDR_ERR_MISMATCH_PAREN
Mismatched parentheses.
Definition: address.h:52
@ ADDR_ERR_MISMATCH_QUOTE
Mismatches quotes.
Definition: address.h:53
void mutt_addrlist_prepend(struct AddressList *al, struct Address *a)
Prepend an Address to an AddressList.
Definition: address.c:1466
void mutt_addrlist_write_file(const struct AddressList *al, FILE *fp, const char *header)
Wrapper for mutt_write_address()
Definition: address.c:1226
int mutt_addrlist_to_intl(struct AddressList *al, char **err)
Convert an Address list to Punycode.
Definition: address.c:1270
bool mutt_addr_to_intl(struct Address *a)
Convert an Address to Punycode.
Definition: address.c:1241
int mutt_addrlist_remove(struct AddressList *al, const char *mailbox)
Remove an Address from a list.
Definition: address.c:413
bool mutt_addrlist_search(const struct AddressList *haystack, const struct Address *needle)
Search for an e-mail address in a list.
Definition: address.c:881
bool(* addr_predicate_t)(const struct Address *a)
Definition: address.h:73
const char * mutt_addr_for_display(const struct Address *a)
Convert an Address for display purposes.
Definition: address.c:986
void mutt_addrlist_dedupe(struct AddressList *al)
Remove duplicate addresses.
Definition: address.c:1372
Convenience wrapper for the library headers.
An email address.
Definition: address.h:36
bool group
Group mailbox?
Definition: address.h:39
bool intl_checked
Checked for IDN?
Definition: address.h:41
TAILQ_ENTRY(Address) entries
Linked list.
char * mailbox
Mailbox and host address.
Definition: address.h:38
bool is_intl
International Domain Name.
Definition: address.h:40
char * personal
Real name of address.
Definition: address.h:37
String manipulation buffer.
Definition: buffer.h:34