NeoMutt
2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
config.c
Go to the documentation of this file.
1
14
20
21
#include "config.h"
22
#include <stdbool.h>
23
#include <stddef.h>
24
#include "
config/lib.h
"
25
26
#if defined(HAVE_LIBIDN)
30
struct
ConfigDef
AddressVarsIdn
[] = {
31
// clang-format off
32
{
"idn_decode"
,
DT_BOOL
,
true
, 0, NULL,
33
"(idn) Decode international domain names"
34
},
35
{
"idn_encode"
,
DT_BOOL
,
true
, 0, NULL,
36
"(idn) Encode international domain names"
37
},
38
{ NULL },
39
// clang-format on
40
};
41
#endif
AddressVarsIdn
struct ConfigDef AddressVarsIdn[]
IDN Config definitions.
Definition
config.c:30
lib.h
Convenience wrapper for the config headers.
ConfigDef
Definition
set.h:64
DT_BOOL
@ DT_BOOL
boolean option
Definition
types.h:32