forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrfc822.h
68 lines (60 loc) · 2.18 KB
/
rfc822.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/**
* @file
* RFC822 Email format routines
*
* @authors
* Copyright (C) 1996-2000 Michael R. Elkins <[email protected]>
* Copyright (C) 2012 Michael R. Elkins <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _MUTT_RFC822_H
#define _MUTT_RFC822_H
#include <stddef.h>
#include <stdbool.h>
#include "address.h"
#include "lib/lib.h"
/**
* enum AddressError - possible values for RFC822Error
*/
enum AddressError
{
ERR_MEMORY = 1,
ERR_MISMATCH_PAREN,
ERR_MISMATCH_QUOTE,
ERR_BAD_ROUTE,
ERR_BAD_ROUTE_ADDR,
ERR_BAD_ADDR_SPEC
};
void rfc822_dequote_comment(char *s);
void rfc822_free_address(struct Address **p);
void rfc822_qualify(struct Address *addr, const char *host);
struct Address *rfc822_parse_adrlist(struct Address *top, const char *s);
struct Address *rfc822_cpy_adr(struct Address *addr, int prune);
struct Address *rfc822_cpy_adr_real(struct Address *addr);
struct Address *rfc822_append(struct Address **a, struct Address *b, int prune);
int rfc822_write_address(char *buf, size_t buflen, struct Address *addr, int display);
void rfc822_write_address_single(char *buf, size_t buflen, struct Address *addr, int display);
void rfc822_cat(char *buf, size_t buflen, const char *value, const char *specials);
bool rfc822_valid_msgid(const char *msgid);
int rfc822_remove_from_adrlist(struct Address **a, const char *mailbox);
extern int RFC822Error;
extern const char *const RFC822Errors[];
#define rfc822_error(x) RFC822Errors[x]
static inline struct Address *rfc822_new_address(void)
{
return safe_calloc(1, sizeof(struct Address));
}
#endif /* _MUTT_RFC822_H */