2 * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 /* possible values for RFC822Error */
33 typedef struct address_t
36 char *val; /* value of address as parsed */
38 char *personal; /* real name of address */
39 char *mailbox; /* mailbox and host address */
40 int group; /* group mailbox? */
41 struct address_t *next;
43 unsigned idn_checked : 1;
47 void rfc822_free_address (ADDRESS **);
48 void rfc822_qualify (ADDRESS *, const char *);
49 ADDRESS *rfc822_parse_adrlist (ADDRESS *, const char *s);
50 ADDRESS *rfc822_cpy_adr (ADDRESS *addr);
51 ADDRESS *rfc822_cpy_adr_real (ADDRESS *addr);
52 ADDRESS *rfc822_append (ADDRESS **a, ADDRESS *b);
53 int rfc822_write_address (char *, size_t, ADDRESS *, int);
54 void rfc822_write_address_single (char *, size_t, ADDRESS *, int);
55 void rfc822_free_address (ADDRESS **addr);
56 void rfc822_cat (char *, size_t, const char *, const char *);
57 int rfc822_valid_msgid (const char *msgid);
59 extern int RFC822Error;
60 extern const char *RFC822Errors[];
62 #define rfc822_error(x) RFC822Errors[x]
63 #define rfc822_new_address() calloc(1,sizeof(ADDRESS))