]> git.llucax.com Git - software/mutt-debian.git/blob - mutt_idna.h
adding a description to a patch which was missing it
[software/mutt-debian.git] / mutt_idna.h
1 /*
2  * Copyright (C) 2003,2005 Thomas Roessler <roessler@does-not-exist.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 _MUTT_IDNA_H
20 # define _MUTT_IDNA_H
21
22 #include "rfc822.h"
23 #include "charset.h"
24
25 #ifdef HAVE_LIBIDN
26 #include <idna.h>
27 #endif
28
29 #define MI_MAY_BE_IRREVERSIBLE          (1 << 0)
30
31 /* Work around incompatibilities in the libidn API */
32
33 #ifdef HAVE_LIBIDN
34 int mutt_addrlist_to_idna (ADDRESS *, char **);
35 int mutt_addrlist_to_local (ADDRESS *);
36
37 void mutt_env_to_local (ENVELOPE *);
38 int mutt_env_to_idna (ENVELOPE *, char **, char **);
39
40 const char *mutt_addr_for_display (ADDRESS *a);
41
42 # if (!defined(HAVE_IDNA_TO_ASCII_8Z) && defined(HAVE_IDNA_TO_ASCII_FROM_UTF8))
43 #  define idna_to_ascii_8z(a,b,c) idna_to_ascii_from_utf8(a,b,(c)&1,((c)&2)?1:0)
44 # endif
45 # if (!defined(HAVE_IDNA_TO_ASCII_LZ) && defined(HAVE_IDNA_TO_ASCII_FROM_LOCALE))
46 #  define idna_to_ascii_lz(a,b,c) idna_to_ascii_from_locale(a,b,(c)&1,((c)&2)?1:0)
47 # endif
48 # if (!defined(HAVE_IDNA_TO_UNICODE_8Z8Z) && defined(HAVE_IDNA_TO_UNICODE_UTF8_FROM_UTF8))
49 #  define idna_to_unicode_8z8z(a,b,c) idna_to_unicode_utf8_from_utf8(a,b,(c)&1,((c)&2)?1:0)
50 # endif
51 #else
52
53 static inline int mutt_addrlist_to_idna (ADDRESS *addr, char **err)
54 {
55   return 0;
56 }
57
58 static inline int mutt_addrlist_to_local (ADDRESS *addr)
59 {
60   return 0;
61 }
62
63 static inline void mutt_env_to_local (ENVELOPE *env)
64 {
65   return;
66 }
67
68 static inline int mutt_env_to_idna (ENVELOPE *env, char **tag, char **err)
69 {
70   return 0;
71 }
72
73 static inline const char *mutt_addr_for_display (ADDRESS *a)
74 {
75   return a->mailbox;
76 }
77
78 #endif /* HAVE_LIBIDN */
79
80 #endif