61#define CONTENT_TOO_BIG (1 << 30)
66 LOFF_T end_off,
bool digest,
int *counter);
77 for (; (*header !=
'\0'); header++)
79 if ((*header < 33) || (*header > 126) || (*header ==
':'))
97 for (; (*header !=
'\0'); header++)
99 if ((*header ==
'\n') || (*header ==
'\r'))
151static void parse_parameters(
struct ParameterList *pl,
const char *s,
bool allow_value_spaces)
154 const char *p = NULL;
161 if (allow_value_spaces)
171 p = strpbrk(s,
"=;");
205 bool state_ascii =
true;
214 if ((s[1] ==
'(') && ((s[2] ==
'B') || (s[2] ==
'J')))
220 if (state_ascii && (*s ==
'"'))
241 for (; *s && *s !=
' ' && *s !=
';'; s++)
246 }
while (allow_value_spaces && (*s ==
' '));
267 if ((*s !=
';') && !(s = strchr(s,
';')))
402 if (!s || (*s ==
'\0'))
410 for (
const char *p = decoded, *beg = NULL; *p; p++)
418 if (beg && (*p ==
'>'))
421 *len = p - decoded + 1;
471 char *pc = strchr(s,
';');
493 char *subtype = strchr(s,
'/');
497 for (pc = subtype; *pc && !
mutt_isspace(*pc) && (*pc !=
';'); pc++)
533 char buf[128] = { 0 };
536 snprintf(buf,
sizeof(buf),
"x-%s", s);
574 autocrypt->
next = head;
637 for (
const char *beg = body, *end = NULL; beg; beg = strchr(end,
','))
639 beg = strchr(beg,
'<');
645 end = strchr(beg,
'>');
678 const char *name,
size_t name_len,
const char *body,
679 bool user_hdrs,
bool weed,
bool do_2047)
684 bool matched =
false;
686 switch (name[0] | 0x20)
689 if ((name_len == 13) &&
eqi12(name + 1,
"pparently-to"))
694 else if ((name_len == 15) &&
eqi14(name + 1,
"pparently-from"))
700 else if ((name_len == 9) &&
eqi8(name + 1,
"utocrypt"))
709 else if ((name_len == 16) &&
eqi15(name + 1,
"utocrypt-gossip"))
722 if ((name_len == 3) &&
eqi2(name + 1,
"cc"))
730 if ((name_len == 2) &&
eqi1(name + 1,
"c"))
737 if ((name_len >= 12) &&
eqi8(name,
"content-"))
739 if ((name_len == 12) &&
eqi4(name + 8,
"type"))
745 else if ((name_len == 16) &&
eqi8(name + 8,
"language"))
751 else if ((name_len == 25) &&
eqi17(name + 8,
"transfer-encoding"))
757 else if ((name_len == 14) &&
eqi8(name + 6,
"t-length"))
761 unsigned long len = 0;
766 else if ((name_len == 19) &&
eqi11(name + 8,
"description"))
775 else if ((name_len == 19) &&
eqi11(name + 8,
"disposition"))
786 if ((name_len != 4) || !
eqi4(name,
"date"))
792 struct Tz tz = { 0 };
806 if ((name_len == 7) &&
eqi6(name + 1,
"xpires") && e)
817 if ((name_len == 4) &&
eqi4(name,
"from"))
822 else if ((name_len == 11) &&
eqi10(name + 1,
"ollowup-to"))
834 if ((name_len != 11) || !
eqi10(name + 1,
"n-reply-to"))
846 if ((name_len == 5) &&
eqi4(name + 1,
"ines"))
857 else if ((name_len == 9) &&
eqi8(name + 1,
"ist-post"))
868 if (c_auto_subscribe)
874 else if ((name_len == 14) &&
eqi13(name + 1,
"ist-subscribe"))
885 else if ((name_len == 16) &&
eqi15(name + 1,
"ist-unsubscribe"))
899 if ((name_len == 12) &&
eqi11(name + 1,
"ime-version"))
905 else if ((name_len == 10) &&
eqi9(name + 1,
"essage-id"))
914 if ((name_len >= 13) &&
eqi4(name + 1,
"ail-"))
916 if ((name_len == 13) &&
eqi8(name + 5,
"reply-to"))
923 else if ((name_len == 16) &&
eqi11(name + 5,
"followup-to"))
933 if ((name_len == 10) &&
eqi9(name + 1,
"ewsgroups"))
944 if ((name_len == 12) &&
eqi11(name + 1,
"rganization"))
952 if ((name_len == 10) &&
eqi9(name + 1,
"eferences"))
958 else if ((name_len == 8) &&
eqi8(name,
"reply-to"))
963 else if ((name_len == 11) &&
eqi10(name + 1,
"eturn-path"))
968 else if ((name_len == 8) &&
eqi8(name,
"received"))
972 char *d = strrchr(body,
';');
984 if ((name_len == 7) &&
eqi6(name + 1,
"ubject"))
990 else if ((name_len == 6) &&
eqi5(name + 1,
"ender"))
995 else if ((name_len == 6) &&
eqi5(name + 1,
"tatus"))
1020 else if (e && (name_len == 10) &&
eqi1(name + 1,
"u") &&
1021 (
eqi8(name + 2,
"persedes") ||
eqi8(name + 2,
"percedes")))
1029 if ((name_len == 2) &&
eqi1(name + 1,
"o"))
1037 if ((name_len == 8) &&
eqi8(name,
"x-status"))
1062 else if ((name_len == 7) &&
eqi6(name + 1,
"-label"))
1068 else if ((name_len == 12) &&
eqi11(name + 1,
"-comment-to"))
1074 else if ((name_len == 4) &&
eqi4(name,
"xref"))
1080 else if ((name_len == 13) &&
eqi12(name + 1,
"-original-to"))
1092 if (!matched && user_hdrs)
1130 char line[1024] = { 0 };
1135 if (!fgets(line,
sizeof(line), fp))
1154 size_t off = linelen - 1;
1155 if (line[off] ==
'\n')
1165 if ((ch !=
' ') && (ch !=
'\t'))
1175 while (((ch = fgetc(fp)) ==
' ') || (ch ==
'\t'))
1181 line[off + 1] =
' ';
1211 LOFF_T loc = e ? e->
offset : ftello(fp);
1239 LOFF_T line_start_loc = loc;
1247 p = strpbrk(lines,
": \t");
1248 if (!p || (*p !=
':'))
1250 char return_path[1024] = { 0 };
1258 else if (
is_from(lines, return_path,
sizeof(return_path), &t))
1272 size_t name_len = p - lines;
1274 char buf[1024] = { 0 };
1284 if (c_spam_separator)
1370 bool matched =
false;
1382 c = strchr(line,
':');
1435 if (
id[cid_len - 1] ==
'>')
1436 id[cid_len - 1] =
'\0';
1502 subtype =
NONULL(subtype);
1518 const char *bound = NULL;
1519 static unsigned short recurse_level = 0;
1585 LOFF_T end_off,
bool digest,
int *counter)
1592 mutt_error(
_(
"multipart message has no boundary parameter"));
1596 char buf[1024] = { 0 };
1597 struct Body *head = NULL, *last = NULL, *new_body = NULL;
1601 while ((ftello(fp) < end_off) && fgets(buf,
sizeof(buf), fp))
1605 const size_t crlf = ((len > 1) && (buf[len - 2] ==
'\r')) ? 1 : 0;
1611 last->length = ftello(fp) - last->offset - len - 1 - crlf;
1612 if (last->parts && (last->parts->length == 0))
1613 last->parts->length = ftello(fp) - last->parts->offset - len - 1 - crlf;
1615 if (last->length < 0)
1622 for (
size_t i = len - 1;
mutt_isspace(buf[i]) && (i >= (blen + 2)); i--)
1632 else if (buf[2 + blen] ==
'\0')
1642 for (; lines > 0; lines--)
1643 if ((ftello(fp) >= end_off) || !fgets(buf,
sizeof(buf), fp))
1648 if (new_body->offset > end_off)
1655 last->next = new_body;
1675 if (last && (last->length == 0) && !
final)
1676 last->
length = end_off - last->offset;
1679 for (last = head; last; last = last->
next)
1775 const char *tag = np->
name;
1796 char *scratch = NULL;
1801 scratch[taglen] = 0;
void mutt_addrlist_clear(struct AddressList *al)
Unlink and free all Address in an AddressList.
int mutt_addrlist_parse(struct AddressList *al, const char *s)
Parse a list of email addresses.
const char * mutt_str_atoul(const char *str, unsigned long *dst)
Convert ASCII string to an unsigned long.
const char * mutt_str_atoui(const char *str, unsigned int *dst)
Convert ASCII string to an unsigned integer.
const char * mutt_str_atoi(const char *str, int *dst)
Convert ASCII string to an integer.
Autocrypt end-to-end encryption.
int mutt_autocrypt_process_autocrypt_header(struct Email *e, struct Envelope *env)
Parse an Autocrypt email header.
void buf_reset(struct Buffer *buf)
Reset an existing Buffer.
bool buf_is_empty(const struct Buffer *buf)
Is the Buffer empty?
size_t buf_addch(struct Buffer *buf, char c)
Add a single character to a Buffer.
size_t buf_addstr(struct Buffer *buf, const char *s)
Add a string to a Buffer.
char * buf_strdup(const struct Buffer *buf)
Copy a Buffer's string.
void buf_alloc(struct Buffer *buf, size_t new_size)
Make sure a buffer can store at least new_size bytes.
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
const char * cs_subset_string(const struct ConfigSubset *sub, const char *name)
Get a string config item by name.
bool cs_subset_bool(const struct ConfigSubset *sub, const char *name)
Get a boolean config item by name.
Convenience wrapper for the config headers.
const struct Slist * cc_assumed_charset(void)
Get the cached value of $assumed_charset.
Convenience wrapper for the core headers.
bool mutt_isspace(int arg)
Wrapper for isspace(3)
void mutt_body_free(struct Body **ptr)
Free a Body.
struct Body * mutt_body_new(void)
Create a new Body.
struct Email * email_new(void)
Create a new Email.
struct ReplaceList SpamList
List of regexes to match subscribed mailing lists.
struct RegexList SubscribedLists
List of header patterns to unignore (see)
struct HashTable * AutoSubscribeCache
< Hash Table: "mailto:" -> AutoSubscribeCache
struct RegexList UnSubscribedLists
struct RegexList UnMailLists
List of regexes to exclude false matches in SubscribedLists.
struct RegexList MailLists
List of permitted fields in a mailto: url.
struct ListHead MailToAllow
List of regexes to identify non-spam emails.
struct ListHead Ignore
List of regexes to match mailing lists.
struct RegexList NoSpamList
List of regexes and patterns to match spam emails.
struct ListHead UnIgnore
List of regexes to exclude false matches in MailLists.
int mutt_rfc822_parse_line(struct Envelope *env, struct Email *e, const char *name, size_t name_len, const char *body, bool user_hdrs, bool weed, bool do_2047)
Parse an email header.
struct Body * mutt_rfc822_parse_message(FILE *fp, struct Body *b)
Parse a Message/RFC822 body.
void mutt_parse_part(FILE *fp, struct Body *b)
Parse a MIME part.
void mutt_parse_content_type(const char *s, struct Body *b)
Parse a content type.
void mutt_auto_subscribe(const char *mailto)
Check if user is subscribed to mailing list.
size_t mutt_rfc822_read_line(FILE *fp, struct Buffer *buf)
Read a header line from a file.
struct Body * mutt_read_mime_header(FILE *fp, bool digest)
Parse a MIME header.
static struct AutocryptHeader * parse_autocrypt(struct AutocryptHeader *head, const char *s)
Parse an Autocrypt header line.
static void parse_references(struct ListHead *head, const char *s)
Parse references from an email header.
bool mutt_matches_ignore(const char *s)
Does the string match the ignore list.
static char * rfc2369_first_mailto(const char *body)
Extract the first mailto: URL from a RFC2369 list.
enum ContentType mutt_check_mime_type(const char *s)
Check a MIME type string.
static struct Body * rfc822_parse_message(FILE *fp, struct Body *parent, int *counter)
Parse a Message/RFC822 body.
struct Envelope * mutt_rfc822_read_header(FILE *fp, struct Email *e, bool user_hdrs, bool weed)
Parses an RFC822 header.
static void parse_content_language(const char *s, struct Body *b)
Read the content's language.
static bool mailto_header_allowed(const char *s, struct ListHead *h)
Is the string in the list.
bool mutt_parse_mailto(struct Envelope *env, char **body, const char *src)
Parse a mailto:// url.
int mutt_check_encoding(const char *c)
Check the encoding type.
static void parse_content_disposition(const char *s, struct Body *b)
Parse a content disposition.
struct Body * mutt_parse_multipart(FILE *fp, const char *boundary, LOFF_T end_off, bool digest)
Parse a multipart structure.
void mutt_filter_commandline_header_tag(char *header)
Sanitise characters in a header tag.
char * mutt_extract_message_id(const char *s, size_t *len)
Find a message-id.
static void parse_part(FILE *fp, struct Body *b, int *counter)
Parse a MIME part.
static struct Body * parse_multipart(FILE *fp, const char *boundary, LOFF_T end_off, bool digest, int *counter)
Parse a multipart structure.
bool mutt_is_message_type(int type, const char *subtype)
Determine if a mime type matches a message or not.
void mutt_filter_commandline_header_value(char *header)
Sanitise characters in a header value.
static void parse_parameters(struct ParameterList *pl, const char *s, bool allow_value_spaces)
Parse a list of Parameters.
Representation of an email.
void mutt_env_free(struct Envelope **ptr)
Free an Envelope.
struct Envelope * mutt_env_new(void)
Create a new Envelope.
void mutt_env_set_subject(struct Envelope *env, const char *subj)
Set both subject and real_subj to subj.
struct AutocryptHeader * mutt_autocrypthdr_new(void)
Create a new AutocryptHeader.
void mutt_autocrypthdr_free(struct AutocryptHeader **ptr)
Free an AutocryptHeader.
Representation of an email header (envelope)
static bool eqi17(const char *a, const char b[17])
eqi17 - Compare two 17-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi9(const char *a, const char b[9])
eqi9 - Compare two 9-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi10(const char *a, const char b[10])
eqi10 - Compare two 10-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi8(const char *a, const char b[8])
Compare two 8-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons.
static bool eqi11(const char *a, const char b[11])
eqi11 - Compare two 11-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi6(const char *a, const char b[6])
eqi6 - Compare two 6-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi14(const char *a, const char b[14])
eqi14 - Compare two 14-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi13(const char *a, const char b[13])
eqi13 - Compare two 13-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi4(const char *a, const char b[4])
Compare two 4-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons.
static bool eqi5(const char *a, const char b[5])
eqi5 - Compare two 5-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi12(const char *a, const char b[12])
eqi12 - Compare two 12-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi15(const char *a, const char b[15])
eqi15 - Compare two 15-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons
static bool eqi1(const char *a, const char b[1])
Compare two 1-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons.
static bool eqi2(const char *a, const char b[2])
Compare two 2-byte strings, ignoring case - See: Case-insensitive fixed-chunk comparisons.
bool mutt_file_seek(FILE *fp, LOFF_T offset, int whence)
Wrapper for fseeko with error handling.
bool is_from(const char *s, char *path, size_t pathlen, time_t *tp)
Is a string a 'From' header line?
Determine who the email is from.
#define mutt_debug(LEVEL,...)
struct HashElem * mutt_hash_insert(struct HashTable *table, const char *strkey, void *data)
Add a new element to the Hash Table (with string keys)
void * mutt_hash_find(const struct HashTable *table, const char *strkey)
Find the HashElem data in a Hash Table element using a key.
struct HashTable * mutt_hash_new(size_t num_elems, HashFlags flags)
Create a new Hash Table (with string keys)
#define MUTT_HASH_STRDUP_KEYS
make a copy of the keys
#define MUTT_HASH_STRCASECMP
use strcasecmp() to compare keys
struct ListNode * mutt_list_insert_tail(struct ListHead *h, char *s)
Append a string to the end of a List.
struct ListNode * mutt_list_insert_head(struct ListHead *h, char *s)
Insert a string at the beginning of a List.
void mutt_list_free(struct ListHead *h)
Free a List AND its strings.
bool mutt_list_match(const char *s, struct ListHead *h)
Is the string in the list (see notes)
@ LL_DEBUG5
Log at debug level 5.
@ LL_DEBUG2
Log at debug level 2.
@ LL_DEBUG1
Log at debug level 1.
Constants and macros for managing MIME encoding.
@ ENC_UUENCODED
UUEncoded text.
@ ENC_OTHER
Encoding unknown.
@ ENC_BASE64
Base-64 encoded text.
@ ENC_QUOTED_PRINTABLE
Quoted-printable text.
#define MUTT_MIME_MAX_DEPTH
@ TYPE_AUDIO
Type: 'audio/*'.
@ TYPE_IMAGE
Type: 'image/*'.
@ TYPE_OTHER
Unknown Content-Type.
@ TYPE_MESSAGE
Type: 'message/*'.
@ TYPE_MODEL
Type: 'model/*'.
@ TYPE_MULTIPART
Type: 'multipart/*'.
@ TYPE_APPLICATION
Type: 'application/*'.
@ TYPE_TEXT
Type: 'text/*'.
@ TYPE_ANY
Type: '*' or '.*'.
@ TYPE_VIDEO
Type: 'video/*'.
@ DISP_ATTACH
Content is attached.
@ DISP_INLINE
Content is inline.
@ DISP_FORM_DATA
Content is form-data.
#define MUTT_MIME_MAX_PARTS
const char * mutt_ch_get_default_charset(const struct Slist *const assumed_charset)
Get the default character set.
int mutt_date_local_tz(time_t t)
Calculate the local timezone in seconds east of UTC.
time_t mutt_date_now(void)
Return the number of seconds since the Unix epoch.
time_t mutt_date_parse_date(const char *s, struct Tz *tz_out)
Parse a date string in RFC822 format.
Convenience wrapper for the library headers.
int mutt_regexlist_add(struct RegexList *rl, const char *str, uint16_t flags, struct Buffer *err)
Compile a regex string and add it to a list.
bool mutt_replacelist_match(struct ReplaceList *rl, char *buf, size_t buflen, const char *str)
Does a string match a pattern?
bool mutt_regexlist_match(struct RegexList *rl, const char *str)
Does a string match any Regex in the list?
bool slist_is_empty(const struct Slist *list)
Is the slist empty?
char * mutt_strn_dup(const char *begin, size_t len)
Duplicate a sub-string.
void mutt_str_remove_trailing_ws(char *s)
Trim trailing whitespace from a string.
bool mutt_istr_equal(const char *a, const char *b)
Compare two strings, ignoring case.
char * mutt_str_dup(const char *str)
Copy a string, safely.
int mutt_str_asprintf(char **strp, const char *fmt,...)
char * mutt_str_skip_email_wsp(const char *s)
Skip over whitespace as defined by RFC5322.
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
bool mutt_strn_equal(const char *a, const char *b, size_t num)
Check for equality of two strings (to a maximum), safely.
size_t mutt_str_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix.
char * mutt_str_skip_whitespace(const char *p)
Find the first non-whitespace character in a string.
size_t mutt_str_len(const char *a)
Calculate the length of a string, safely.
size_t mutt_istr_startswith(const char *str, const char *prefix)
Check whether a string starts with a prefix, ignoring case.
bool mutt_istrn_equal(const char *a, const char *b, size_t num)
Check for equality of two strings ignoring case (to a maximum), safely.
char * mutt_str_replace(char **p, const char *s)
Replace one string with another.
Many unsorted constants and some structs.
char * mutt_param_get(const struct ParameterList *pl, const char *s)
Find a matching Parameter.
void mutt_param_set(struct ParameterList *pl, const char *attribute, const char *value)
Set a Parameter.
void mutt_param_free(struct ParameterList *pl)
Free a ParameterList.
struct Parameter * mutt_param_new(void)
Create a new Parameter.
Store attributes associated with a MIME part.
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
#define TAILQ_FOREACH(var, head, field)
#define STAILQ_FOREACH(var, head, field)
#define TAILQ_FIRST(head)
#define TAILQ_HEAD_INITIALIZER(head)
#define TAILQ_EMPTY(head)
#define TAILQ_INSERT_HEAD(head, elm, field)
void rfc2047_decode_envelope(struct Envelope *env)
Decode the fields of an Envelope.
void rfc2047_decode(char **pd)
Decode any RFC2047-encoded header fields.
RFC2047 MIME extensions encoding / decoding routines.
void rfc2231_decode_parameters(struct ParameterList *pl)
Decode a Parameter list.
RFC2231 MIME Charset routines.
Convenience wrapper for the send headers.
static bool mutt_str_is_email_wsp(char c)
Is this a whitespace character (for an email header)
char * language
content-language (RFC8255)
char * content_id
Content-Id (RFC2392)
struct Body * parts
parts of a multipart or message/rfc822
LOFF_T offset
offset where the actual data begins
char * xtype
content-type if x-unknown
struct Envelope * mime_headers
Memory hole protected headers.
LOFF_T length
length (in bytes) of attachment
struct ParameterList parameter
Parameters of the content-type.
struct Email * email
header information for message/rfc822
char * description
content-description
unsigned int disposition
content-disposition, ContentDisposition
struct Body * next
next attachment in the list
char * subtype
content-type subtype
unsigned int encoding
content-transfer-encoding, ContentEncoding
long hdr_offset
Offset in stream where the headers begin.
char * form_name
Content-Disposition form-data name param.
unsigned int type
content-type primary type, ContentType
char * filename
When sending a message, this is the file to which this structure refers.
String manipulation buffer.
char * data
Pointer to data.
The envelope/body of an email.
unsigned int zminutes
Minutes away from UTC.
struct Envelope * env
Envelope information.
bool mime
Has a MIME-Version header?
int lines
How many lines in the body of this message?
struct Body * body
List of MIME parts.
bool old
Email is seen, but unread.
bool zoccident
True, if west of UTC, False if east.
LOFF_T offset
Where in the stream does this message begin?
bool flagged
Marked important?
unsigned int zhours
Hours away from UTC.
time_t date_sent
Time when the message was sent (UTC)
bool replied
Email has been replied to.
bool expired
Already expired?
bool deleted
Email is deleted.
time_t received
Time when the message was placed in the mailbox.
struct ListHead userhdrs
user defined headers
char * supersedes
Supersedes header.
char * list_subscribe
This stores a mailto URL, or nothing.
struct AddressList return_path
Return path for the Email.
char *const subject
Email's subject.
struct AddressList to
Email's 'To' list.
char * followup_to
List of 'followup-to' fields.
struct AddressList reply_to
Email's 'reply-to'.
char * message_id
Message ID.
char * x_comment_to
List of 'X-comment-to' fields.
struct AddressList x_original_to
Email's 'X-Original-to'.
struct AutocryptHeader * autocrypt_gossip
Autocrypt Gossip header.
char * newsgroups
List of newsgroups.
struct AddressList mail_followup_to
Email's 'mail-followup-to'.
struct AddressList cc
Email's 'Cc' list.
struct AddressList sender
Email's sender.
struct ListHead references
message references (in reverse order)
struct AutocryptHeader * autocrypt
Autocrypt header.
struct Buffer spam
Spam header.
struct ListHead in_reply_to
in-reply-to header content
struct AddressList bcc
Email's 'Bcc' list.
char * xref
List of cross-references.
char * organization
Organisation header.
char * list_post
This stores a mailto URL, or nothing.
char * list_unsubscribe
This stores a mailto URL, or nothing.
struct AddressList from
Email's 'From' list.
Container for Accounts, Notifications.
struct ConfigSubset * sub
Inherited config items.
Attribute associated with a MIME part.
char * attribute
Parameter name.
char * value
Parameter value.
List of recognised Timezones.
unsigned char zminutes
Minutes away from UTC.
bool zoccident
True if west of UTC, False if East.
unsigned char zhours
Hours away from UTC.
A parsed URL proto://user:password@host:port/path?a=1&b=2
struct UrlQueryList query_strings
List of query strings.
char * src
Raw URL string.
struct Url * url_parse(const char *src)
Fill in Url.
void url_free(struct Url **ptr)
Free the contents of a URL.
enum UrlScheme url_check_scheme(const char *str)
Check the protocol of a URL.
Parse and identify different URL schemes.
@ U_MAILTO
Url is mailto://.