]> git.llucax.com Git - software/mutt-debian.git/blob - rfc822.h
removing an article form the Description of mutt-patched to make lintian happy
[software/mutt-debian.git] / rfc822.h
1 /*
2  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
3  * 
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.
8  * 
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.
13  * 
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.
17  */ 
18
19 #ifndef rfc822_h
20 #define rfc822_h
21
22 #include "lib.h"
23
24 /* possible values for RFC822Error */
25 enum
26 {
27   ERR_MEMORY = 1,
28   ERR_MISMATCH_PAREN,
29   ERR_MISMATCH_QUOTE,
30   ERR_BAD_ROUTE,
31   ERR_BAD_ROUTE_ADDR,
32   ERR_BAD_ADDR_SPEC
33 };
34
35 typedef struct address_t
36 {
37 #ifdef EXACT_ADDRESS
38   char *val;            /* value of address as parsed */
39 #endif
40   char *personal;       /* real name of address */
41   char *mailbox;        /* mailbox and host address */
42   int group;            /* group mailbox? */
43   struct address_t *next;
44   unsigned is_idn      : 1;
45   unsigned idn_checked : 1;
46 }
47 ADDRESS;
48
49 void rfc822_dequote_comment (char *s);
50 void rfc822_free_address (ADDRESS **);
51 void rfc822_qualify (ADDRESS *, const char *);
52 ADDRESS *rfc822_parse_adrlist (ADDRESS *, const char *s);
53 ADDRESS *rfc822_cpy_adr (ADDRESS *addr, int);
54 ADDRESS *rfc822_cpy_adr_real (ADDRESS *addr);
55 ADDRESS *rfc822_append (ADDRESS **a, ADDRESS *b, int);
56 int rfc822_write_address (char *, size_t, ADDRESS *, int);
57 void rfc822_write_address_single (char *, size_t, ADDRESS *, int);
58 void rfc822_free_address (ADDRESS **addr);
59 void rfc822_cat (char *, size_t, const char *, const char *);
60 int rfc822_valid_msgid (const char *msgid);
61 int rfc822_remove_from_adrlist (ADDRESS **a, const char *mailbox);
62
63 extern int RFC822Error;
64 extern const char *RFC822Errors[];
65
66 #define rfc822_error(x) RFC822Errors[x]
67 #define rfc822_new_address() safe_calloc(1,sizeof(ADDRESS))
68
69 #endif /* rfc822_h */