diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-27 21:24:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-27 21:24:08 +0000 |
commit | 3dee8e2bac464eb66b14ac42806c8611b6fb6a19 (patch) | |
tree | 5a5e72afc287b48be2659754c8692d020d06f976 /include | |
parent | bbd55c9ec71f6a65ea876951b8c51df7df8b8da6 (diff) |
sendmail: update from maintainer
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 2 | ||||
-rw-r--r-- | include/usage.h | 15 |
2 files changed, 11 insertions, 6 deletions
diff --git a/include/applets.h b/include/applets.h index e7fc3c03c..591d715c8 100644 --- a/include/applets.h +++ b/include/applets.h @@ -306,7 +306,7 @@ USE_RX(APPLET(rx, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) USE_SCRIPT(APPLET(script, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) USE_SED(APPLET(sed, _BB_DIR_BIN, _BB_SUID_NEVER)) USE_SELINUXENABLED(APPLET(selinuxenabled, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)) -USE_SENDMAIL(APPLET_ODDNAME(sendmail, sendgetmail, _BB_DIR_USR_BIN, _BB_SUID_NEVER, sendmail)) +USE_SENDMAIL(APPLET_ODDNAME(sendmail, sendgetmail, _BB_DIR_USR_SBIN, _BB_SUID_NEVER, sendmail)) USE_SEQ(APPLET_NOFORK(seq, seq, _BB_DIR_USR_BIN, _BB_SUID_NEVER, seq)) USE_SESTATUS(APPLET(sestatus, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)) USE_SETARCH(APPLET(setarch, _BB_DIR_BIN, _BB_SUID_NEVER)) diff --git a/include/usage.h b/include/usage.h index df8958060..dd66728be 100644 --- a/include/usage.h +++ b/include/usage.h @@ -1088,11 +1088,12 @@ "\n -S SECTORS" \ #define fetchmail_trivial_usage \ - "[-w timeout] [-U user] -P password [-X] [-t] [-z] server[:port] maildir [prog]" + "[-w timeout] [-H server[:port]] [-U user] -P password [-X] [-t] [-z] maildir [prog]" #define fetchmail_full_usage "\n\n" \ "Fetch content of remote mailbox to local Maildir.\n" \ "\nOptions:" \ "\n -w timeout Set timeout on network operations" \ + "\n -H server[:port] Set server" \ "\n -U username Authenticate with specified username/password" \ "\n -P password" \ "\n -X Use openssl connection helper for secured servers" \ @@ -3425,19 +3426,23 @@ #define selinuxenabled_full_usage "" #define sendmail_trivial_usage \ - "[-w timeout] [-U user] [-P password] [-X]\n" \ - "-t to [-t to]... [-n] [-s subject] [-c charset] server[:port] from [body] [attachment ...]" + "[-w timeout] [-H server[:port]] [-U user] [-P password] [-X]\n" \ + "[-c charset] [-n] [-i] [-s subject] [-a attach]... [-t] [-f sender] [rcpt]..." #define sendmail_full_usage "\n\n" \ "Send an email.\n" \ "\nOptions:" \ "\n -w timeout Set timeout on network operations" \ + "\n -H server[:port] Set server" \ "\n -U username Authenticate with specified username/password" \ "\n -P password" \ - "\n -t address Recipient(s). May be repeated" \ "\n -X Use openssl connection helper for secured servers" \ + "\n -c charset Assumed charset for body and subject [utf-8]" \ "\n -n Request delivery notification to sender" \ + "\n -i Ignore single dots in mail body. Implied" \ "\n -s subject Subject" \ - "\n -c charset Assumed charset for body and subject [utf-8]" \ + "\n -a file File to attach. May be multiple" \ + "\n -t Read recipients and subject from body" \ + "\n -f Set sender address" \ #define seq_trivial_usage \ "[first [increment]] last" |