diff options
Diffstat (limited to 'mailutils/Config.in')
-rw-r--r-- | mailutils/Config.in | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/mailutils/Config.in b/mailutils/Config.in new file mode 100644 index 000000000..b8d697737 --- /dev/null +++ b/mailutils/Config.in | |||
@@ -0,0 +1,64 @@ | |||
1 | menu "Mail Utilities" | ||
2 | |||
3 | config MAKEMIME | ||
4 | bool "makemime" | ||
5 | default n | ||
6 | help | ||
7 | Create MIME-formatted messages. | ||
8 | |||
9 | config FEATURE_MIME_CHARSET | ||
10 | string "Default charset" | ||
11 | default "us-ascii" | ||
12 | depends on MAKEMIME || REFORMIME || SENDMAIL | ||
13 | help | ||
14 | Default charset of the message. | ||
15 | |||
16 | config POPMAILDIR | ||
17 | bool "popmaildir" | ||
18 | default n | ||
19 | help | ||
20 | Simple yet powerful POP3 mail popper. Delivers content of remote mailboxes to local Maildir. | ||
21 | |||
22 | config FEATURE_POPMAILDIR_DELIVERY | ||
23 | bool "Allow message filters and custom delivery program" | ||
24 | default n | ||
25 | depends on POPMAILDIR | ||
26 | help | ||
27 | Allow to use a custom program to filter the content of the message before actual delivery (-F "prog [args...]"). | ||
28 | Allow to use a custom program for message actual delivery (-M "prog [args...]"). | ||
29 | |||
30 | config REFORMIME | ||
31 | bool "reformime" | ||
32 | default n | ||
33 | help | ||
34 | Parse MIME-formatted messages. | ||
35 | |||
36 | config FEATURE_REFORMIME_COMPAT | ||
37 | bool "Accept and ignore options other than -x and -X" | ||
38 | default y | ||
39 | depends on REFORMIME | ||
40 | help | ||
41 | Accept (for compatibility only) and ignore options other than -x and -X. | ||
42 | |||
43 | config SENDMAIL | ||
44 | bool "sendmail" | ||
45 | default n | ||
46 | help | ||
47 | Barebones sendmail. | ||
48 | |||
49 | config FEATURE_SENDMAIL_MAILX | ||
50 | bool "Allow to specify subject, attachments, their charset and connection helper" | ||
51 | default y | ||
52 | depends on SENDMAIL | ||
53 | help | ||
54 | Allow to specify subject, attachments and their charset. | ||
55 | Allow to use custom connection helper. | ||
56 | |||
57 | config FEATURE_SENDMAIL_MAILXX | ||
58 | bool "Allow to specify Cc: addresses and some additional headers" | ||
59 | default n | ||
60 | depends on FEATURE_SENDMAIL_MAILX | ||
61 | help | ||
62 | Allow to specify Cc: addresses and some additional headers: Errors-To:. | ||
63 | |||
64 | endmenu | ||