25443b2bb7e8cc469f677edd422c81f739fffab8
[apps/madmutt.git] / mutt_idna.h
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 2003 Thomas Roessler <roessler@does-not-exist.org>
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9
10 #ifndef _MUTT_IDNA_H
11 # define _MUTT_IDNA_H
12
13 #if HAVE_CONFIG_H
14 # include "config.h"
15 #endif
16
17 #include <lib-mime/mime.h>
18 #include "charset.h"
19
20 #ifdef HAVE_LIBIDN
21 #include <idna.h>
22 #endif
23
24 #define MI_MAY_BE_IRREVERSIBLE          (1 << 0)
25
26 int mutt_idna_to_local (const char *, char **, int);
27 int mutt_local_to_idna (const char *, char **);
28
29 int mutt_addrlist_to_idna (address_t *, char **);
30 int mutt_addrlist_to_local (address_t *);
31
32 void mutt_env_to_local (ENVELOPE *);
33 int mutt_env_to_idna (ENVELOPE *, const char **, const char **);
34
35 const char *mutt_addr_for_display (address_t * a);
36
37 /* Work around incompatibilities in the libidn API */
38
39 #ifdef HAVE_LIBIDN
40 # if (!defined(HAVE_IDNA_TO_ASCII_8Z) && defined(HAVE_IDNA_TO_ASCII_FROM_UTF8))
41 #  define idna_to_ascii_8z(a,b,c) idna_to_ascii_from_utf8(a,b,(c)&1,((c)&2)?1:0)
42 # endif
43 # if (!defined(HAVE_IDNA_TO_ASCII_LZ) && defined(HAVE_IDNA_TO_ASCII_FROM_LOCALE))
44 #  define idna_to_ascii_lz(a,b,c) idna_to_ascii_from_locale(a,b,(c)&1,((c)&2)?1:0)
45 # endif
46 # if (!defined(HAVE_IDNA_TO_UNICODE_8Z8Z) && defined(HAVE_IDNA_TO_UNICODE_UTF8_FROM_UTF8))
47 #  define idna_to_unicode_8z8z(a,b,c) idna_to_unicode_utf8_from_utf8(a,b,(c)&1,((c)&2)?1:0)
48 # endif
49 #endif
50
51 #endif