We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4064ad commit e9bbc43Copy full SHA for e9bbc43
2 files changed
ssmtp.8
@@ -51,6 +51,10 @@ Forces ssmtp to use IPv4 addresses only.
51
.B \-6
52
Forces ssmtp to use IPv6 addresses only.
53
54
+.TP
55
+\fB\-B\fP \fIbody_type\fP
56
+(ignored) The message body MIME type: 7BIT or 8BITMIME.
57
+
58
.TP
59
\fB\-au\fP\fIusername\fP
60
Specifies username for SMTP authentication.
ssmtp.c
@@ -1839,6 +1839,16 @@ char **parse_options(int argc, char *argv[])
1839
paq("-bz is meaningless to sSMTP\n");
1840
}
1841
1842
+ /* Body type*/
1843
+ case 'B':
1844
+ if(!argv[i][j+1]) {
1845
+ add++;
1846
+ goto exit;
1847
+ }
1848
+ else {
1849
+ continue;
1850
1851
1852
/* Configfile name */
1853
case 'C':
1854
if((!argv[i][(j + 1)]) && argv[(i + 1)]) {
0 commit comments