diff options
author | Denys Vlasenko | 2016-11-23 09:58:03 +0100 |
---|---|---|
committer | Denys Vlasenko | 2016-11-23 09:58:03 +0100 |
commit | c19f7584e14522043da141189711c8db72dfbc90 (patch) | |
tree | 5338df22283363d2ed79bf53605a325659482ab9 /mailutils/popmaildir.c | |
parent | 29e2c45a5b317556a890a86ca7780e589072151c (diff) | |
download | busybox-c19f7584e14522043da141189711c8db72dfbc90.zip busybox-c19f7584e14522043da141189711c8db72dfbc90.tar.gz |
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.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mailutils/popmaildir.c b/mailutils/popmaildir.c index 69eca61..ffe3738 100644 --- a/mailutils/popmaildir.c +++ b/mailutils/popmaildir.c @@ -9,6 +9,24 @@ * * Licensed under GPLv2, see file LICENSE in this source tree. */ +//config:config POPMAILDIR +//config: bool "popmaildir" +//config: default y +//config: help +//config: Simple yet powerful POP3 mail popper. Delivers content +//config: of remote mailboxes to local Maildir. +//config: +//config:config FEATURE_POPMAILDIR_DELIVERY +//config: bool "Allow message filters and custom delivery program" +//config: default y +//config: depends on POPMAILDIR +//config: help +//config: Allow to use a custom program to filter the content +//config: of the message before actual delivery (-F "prog [args...]"). +//config: Allow to use a custom program for message actual delivery +//config: (-M "prog [args...]"). + +//applet:IF_POPMAILDIR(APPLET(popmaildir, BB_DIR_USR_SBIN, BB_SUID_DROP)) //kbuild:lib-$(CONFIG_POPMAILDIR) += popmaildir.o mail.o |