aboutsummaryrefslogtreecommitdiff
path: root/mailutils/popmaildir.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-11-23 09:58:03 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2016-11-23 09:58:03 +0100
commitc19f7584e14522043da141189711c8db72dfbc90 (patch)
tree5338df22283363d2ed79bf53605a325659482ab9 /mailutils/popmaildir.c
parent29e2c45a5b317556a890a86ca7780e589072151c (diff)
downloadbusybox-w32-c19f7584e14522043da141189711c8db72dfbc90.tar.gz
busybox-w32-c19f7584e14522043da141189711c8db72dfbc90.tar.bz2
busybox-w32-c19f7584e14522043da141189711c8db72dfbc90.zip
Convert all mailutils/* applets to "new style" applet definitions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'mailutils/popmaildir.c')
-rw-r--r--mailutils/popmaildir.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/mailutils/popmaildir.c b/mailutils/popmaildir.c
index 69eca6164..ffe373865 100644
--- a/mailutils/popmaildir.c
+++ b/mailutils/popmaildir.c
@@ -9,6 +9,24 @@
9 * 9 *
10 * Licensed under GPLv2, see file LICENSE in this source tree. 10 * Licensed under GPLv2, see file LICENSE in this source tree.
11 */ 11 */
12//config:config POPMAILDIR
13//config: bool "popmaildir"
14//config: default y
15//config: help
16//config: Simple yet powerful POP3 mail popper. Delivers content
17//config: of remote mailboxes to local Maildir.
18//config:
19//config:config FEATURE_POPMAILDIR_DELIVERY
20//config: bool "Allow message filters and custom delivery program"
21//config: default y
22//config: depends on POPMAILDIR
23//config: help
24//config: Allow to use a custom program to filter the content
25//config: of the message before actual delivery (-F "prog [args...]").
26//config: Allow to use a custom program for message actual delivery
27//config: (-M "prog [args...]").
28
29//applet:IF_POPMAILDIR(APPLET(popmaildir, BB_DIR_USR_SBIN, BB_SUID_DROP))
12 30
13//kbuild:lib-$(CONFIG_POPMAILDIR) += popmaildir.o mail.o 31//kbuild:lib-$(CONFIG_POPMAILDIR) += popmaildir.o mail.o
14 32