aboutsummaryrefslogtreecommitdiff
path: root/mailutils/Config.src
diff options
context:
space:
mode:
Diffstat (limited to 'mailutils/Config.src')
-rw-r--r--mailutils/Config.src53
1 files changed, 53 insertions, 0 deletions
diff --git a/mailutils/Config.src b/mailutils/Config.src
new file mode 100644
index 000000000..baa04331a
--- /dev/null
+++ b/mailutils/Config.src
@@ -0,0 +1,53 @@
1menu "Mail Utilities"
2
3config MAKEMIME
4 bool "makemime"
5 default y
6 help
7 Create MIME-formatted messages.
8
9config 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
16config POPMAILDIR
17 bool "popmaildir"
18 default y
19 help
20 Simple yet powerful POP3 mail popper. Delivers content
21 of remote mailboxes to local Maildir.
22
23config FEATURE_POPMAILDIR_DELIVERY
24 bool "Allow message filters and custom delivery program"
25 default y
26 depends on POPMAILDIR
27 help
28 Allow to use a custom program to filter the content
29 of the message before actual delivery (-F "prog [args...]").
30 Allow to use a custom program for message actual delivery
31 (-M "prog [args...]").
32
33config REFORMIME
34 bool "reformime"
35 default y
36 help
37 Parse MIME-formatted messages.
38
39config FEATURE_REFORMIME_COMPAT
40 bool "Accept and ignore options other than -x and -X"
41 default y
42 depends on REFORMIME
43 help
44 Accept (for compatibility only) and ignore options
45 other than -x and -X.
46
47config SENDMAIL
48 bool "sendmail"
49 default y
50 help
51 Barebones sendmail.
52
53endmenu