diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-10 13:01:14 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-10 13:01:14 +0100 |
commit | eae697fb93362dd51365fdd5283128cb339b91c2 (patch) | |
tree | fd333f7f8b7a14d8e3e079fc87a4e73691fdae02 | |
parent | d2b04050c0a9a15e29e15cbf9c487db93d07c46e (diff) | |
download | busybox-w32-eae697fb93362dd51365fdd5283128cb339b91c2.tar.gz busybox-w32-eae697fb93362dd51365fdd5283128cb339b91c2.tar.bz2 busybox-w32-eae697fb93362dd51365fdd5283128cb339b91c2.zip |
popmaildir: give examples in help text. +91 byte
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | include/usage.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/usage.h b/include/usage.h index 4af90c47f..f4259a11d 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -3484,13 +3484,18 @@ | |||
3484 | /* "\n -c Use tcpclient. Ignored" */ \ | 3484 | /* "\n -c Use tcpclient. Ignored" */ \ |
3485 | /* "\n -a Use APOP protocol. Implied. If server supports APOP -> use it" */ \ | 3485 | /* "\n -a Use APOP protocol. Implied. If server supports APOP -> use it" */ \ |
3486 | "\n -s Skip authorization" \ | 3486 | "\n -s Skip authorization" \ |
3487 | "\n -T Get messages with TOP instead with RETR" \ | 3487 | "\n -T Get messages with TOP instead of RETR" \ |
3488 | "\n -k Keep retrieved messages on the server" \ | 3488 | "\n -k Keep retrieved messages on the server" \ |
3489 | "\n -t SEC Network timeout" \ | 3489 | "\n -t SEC Network timeout" \ |
3490 | IF_FEATURE_POPMAILDIR_DELIVERY( \ | 3490 | IF_FEATURE_POPMAILDIR_DELIVERY( \ |
3491 | "\n -F \"PROG ARGS\" Filter program. May be multiple" \ | 3491 | "\n -F \"PROG ARGS\" Filter program (may be repeated)" \ |
3492 | "\n -M \"PROG ARGS\" Delivery program" \ | 3492 | "\n -M \"PROG ARGS\" Delivery program" \ |
3493 | ) \ | 3493 | ) \ |
3494 | "\n" \ | ||
3495 | "\nFetch from plain POP3 server:" \ | ||
3496 | "\npopmaildir -k DIR nc pop3.server.com 110 <user_and_pass.txt" \ | ||
3497 | "\nFetch from SSLed POP3 server and delete fetched emails:" \ | ||
3498 | "\npopmaildir DIR -- openssl s_client -quiet -connect pop3.server.com:995 <user_and_pass.txt" | ||
3494 | /* "\n -R BYTES Remove old messages on the server >= BYTES. Ignored" */ | 3499 | /* "\n -R BYTES Remove old messages on the server >= BYTES. Ignored" */ |
3495 | /* "\n -Z N1-N2 Remove messages from N1 to N2 (dangerous). Ignored" */ | 3500 | /* "\n -Z N1-N2 Remove messages from N1 to N2 (dangerous). Ignored" */ |
3496 | /* "\n -L BYTES Don't retrieve new messages >= BYTES. Ignored" */ | 3501 | /* "\n -L BYTES Don't retrieve new messages >= BYTES. Ignored" */ |