diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-12-20 02:15:19 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-12-20 02:15:19 +0100 |
commit | 3365e9f3cc1859e8c427533e13676740d8038719 (patch) | |
tree | f59a0c2e35c940306518af6129d067a4323f475a /mailutils | |
parent | 03419aa037ce37d1c3accb0df52fdc456b360541 (diff) | |
download | busybox-w32-3365e9f3cc1859e8c427533e13676740d8038719.tar.gz busybox-w32-3365e9f3cc1859e8c427533e13676740d8038719.tar.bz2 busybox-w32-3365e9f3cc1859e8c427533e13676740d8038719.zip |
makemime: tweak help text: -a HDR can be repeated
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'mailutils')
-rw-r--r-- | mailutils/makemime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mailutils/makemime.c b/mailutils/makemime.c index 4b07e54de..1dadd715f 100644 --- a/mailutils/makemime.c +++ b/mailutils/makemime.c | |||
@@ -132,7 +132,7 @@ Content-Transfer-Encoding: 7bit | |||
132 | //usage: "Create multipart MIME-encoded message from FILEs\n" | 132 | //usage: "Create multipart MIME-encoded message from FILEs\n" |
133 | /* //usage: "Transfer encoding is base64, disposition is inline (not attachment)\n" */ | 133 | /* //usage: "Transfer encoding is base64, disposition is inline (not attachment)\n" */ |
134 | //usage: "\n -o FILE Output. Default: stdout" | 134 | //usage: "\n -o FILE Output. Default: stdout" |
135 | //usage: "\n -a HDR Add header. Examples:" | 135 | //usage: "\n -a HDR Add header(s). Examples:" |
136 | //usage: "\n \"From: user@host.org\", \"Date: `date -R`\"" | 136 | //usage: "\n \"From: user@host.org\", \"Date: `date -R`\"" |
137 | //usage: "\n -c CT Content type. Default: application/octet-stream" | 137 | //usage: "\n -c CT Content type. Default: application/octet-stream" |
138 | //usage: "\n -C CS Charset. Default: " CONFIG_FEATURE_MIME_CHARSET | 138 | //usage: "\n -C CS Charset. Default: " CONFIG_FEATURE_MIME_CHARSET |
@@ -142,12 +142,12 @@ Content-Transfer-Encoding: 7bit | |||
142 | 142 | ||
143 | /* | 143 | /* |
144 | * -c [Content-Type] should create just one MIME section | 144 | * -c [Content-Type] should create just one MIME section |
145 | * with "Content-Type:", "Content-Transfer-Encoding:", and HDR from "-a HDR". | 145 | * with "Content-Type:", "Content-Transfer-Encoding:", and HDRs from "-a HDR". |
146 | * NB: without "Content-Disposition:" auto-added, unlike we do now | 146 | * NB: without "Content-Disposition:" auto-added, unlike we do now |
147 | * NB2: -c has *optional* param which nevertheless _can_ be specified after a space :( | 147 | * NB2: -c has *optional* param which nevertheless _can_ be specified after a space :( |
148 | * | 148 | * |
149 | * -m [multipart/mixed] should create multipart MIME section | 149 | * -m [multipart/mixed] should create multipart MIME section |
150 | * with "Content-Type:", "Content-Transfer-Encoding:", and HDR from "-a HDR", | 150 | * with "Content-Type:", "Content-Transfer-Encoding:", and HDRs from "-a HDR", |
151 | * and add FILE to it _verbatim_: | 151 | * and add FILE to it _verbatim_: |
152 | * HEADERS | 152 | * HEADERS |
153 | * | 153 | * |