|
@@ -1,6 +1,6 @@
|
1
|
1
|
--- a/ssmtp.c
|
2
|
2
|
+++ b/ssmtp.c
|
3
|
|
-@@ -51,21 +51,21 @@ bool_t use_oldauth = False; /* use old
|
|
3
|
+@@ -55,21 +55,21 @@ bool_t use_oldauth = False; /* use old
|
4
|
4
|
|
5
|
5
|
#define ARPADATE_LENGTH 32 /* Current date in RFC format */
|
6
|
6
|
char arpadate[ARPADATE_LENGTH];
|
|
@@ -32,7 +32,7 @@
|
32
|
32
|
|
33
|
33
|
headers_t headers, *ht;
|
34
|
34
|
|
35
|
|
-@@ -257,7 +257,7 @@ char *strip_post_ws(char *str)
|
|
35
|
+@@ -261,7 +261,7 @@ char *strip_post_ws(char *str)
|
36
|
36
|
|
37
|
37
|
p = (str + strlen(str));
|
38
|
38
|
while(isspace(*--p)) {
|
|
@@ -41,7 +41,7 @@
|
41
|
41
|
}
|
42
|
42
|
|
43
|
43
|
return(p);
|
44
|
|
-@@ -275,7 +275,7 @@ char *addr_parse(char *str)
|
|
44
|
+@@ -279,7 +279,7 @@ char *addr_parse(char *str)
|
45
|
45
|
#endif
|
46
|
46
|
|
47
|
47
|
/* Simple case with email address enclosed in <> */
|
|
@@ -50,7 +50,7 @@
|
50
|
50
|
die("addr_parse(): strdup()");
|
51
|
51
|
}
|
52
|
52
|
|
53
|
|
-@@ -283,7 +283,7 @@ char *addr_parse(char *str)
|
|
53
|
+@@ -287,7 +287,7 @@ char *addr_parse(char *str)
|
54
|
54
|
q++;
|
55
|
55
|
|
56
|
56
|
if((p = strchr(q, '>'))) {
|
|
@@ -59,7 +59,7 @@
|
59
|
59
|
}
|
60
|
60
|
|
61
|
61
|
#if 0
|
62
|
|
-@@ -306,7 +306,7 @@ char *addr_parse(char *str)
|
|
62
|
+@@ -310,7 +310,7 @@ char *addr_parse(char *str)
|
63
|
63
|
q = strip_post_ws(p);
|
64
|
64
|
if(*q == ')') {
|
65
|
65
|
while((*--q != '('));
|
|
@@ -68,7 +68,7 @@
|
68
|
68
|
}
|
69
|
69
|
(void)strip_post_ws(p);
|
70
|
70
|
|
71
|
|
-@@ -359,7 +359,7 @@ bool_t standardise(char *str, bool_t *li
|
|
71
|
+@@ -363,7 +363,7 @@ bool_t standardise(char *str, bool_t *li
|
72
|
72
|
*linestart = False;
|
73
|
73
|
|
74
|
74
|
if((p = strchr(str, '\n'))) {
|
|
@@ -77,7 +77,7 @@
|
77
|
77
|
*linestart = True;
|
78
|
78
|
}
|
79
|
79
|
return(leadingdot);
|
80
|
|
-@@ -380,7 +380,7 @@ void revaliases(struct passwd *pw)
|
|
80
|
+@@ -384,7 +384,7 @@ void revaliases(struct passwd *pw)
|
81
|
81
|
while(fgets(buf, sizeof(buf), fp)) {
|
82
|
82
|
/* Make comments invisible */
|
83
|
83
|
if((p = strchr(buf, '#'))) {
|
|
@@ -86,7 +86,7 @@
|
86
|
86
|
}
|
87
|
87
|
|
88
|
88
|
/* Ignore malformed lines and comments */
|
89
|
|
-@@ -515,11 +515,11 @@ void rcpt_save(char *str)
|
|
89
|
+@@ -519,11 +519,11 @@ void rcpt_save(char *str)
|
90
|
90
|
#endif
|
91
|
91
|
|
92
|
92
|
/* Ignore missing usernames */
|
|
@@ -100,7 +100,7 @@
|
100
|
100
|
die("rcpt_save() -- strdup() failed");
|
101
|
101
|
}
|
102
|
102
|
|
103
|
|
-@@ -544,7 +544,7 @@ void rcpt_parse(char *str)
|
|
103
|
+@@ -548,7 +548,7 @@ void rcpt_parse(char *str)
|
104
|
104
|
(void)fprintf(stderr, "*** rcpt_parse(): str = [%s]\n", str);
|
105
|
105
|
#endif
|
106
|
106
|
|
|
@@ -109,7 +109,7 @@
|
109
|
109
|
die("rcpt_parse(): strdup() failed");
|
110
|
110
|
}
|
111
|
111
|
q = p;
|
112
|
|
-@@ -572,7 +572,7 @@ void rcpt_parse(char *str)
|
|
112
|
+@@ -576,7 +576,7 @@ void rcpt_parse(char *str)
|
113
|
113
|
}
|
114
|
114
|
|
115
|
115
|
/* End of string? */
|
|
@@ -118,7 +118,7 @@
|
118
|
118
|
got_addr = True;
|
119
|
119
|
}
|
120
|
120
|
|
121
|
|
-@@ -580,7 +580,7 @@ void rcpt_parse(char *str)
|
|
121
|
+@@ -584,7 +584,7 @@ void rcpt_parse(char *str)
|
122
|
122
|
if((*q == ',') && (in_quotes == False)) {
|
123
|
123
|
got_addr = True;
|
124
|
124
|
|
|
@@ -127,7 +127,7 @@
|
127
|
127
|
}
|
128
|
128
|
|
129
|
129
|
if(got_addr) {
|
130
|
|
-@@ -664,7 +664,7 @@ void header_save(char *str)
|
|
130
|
+@@ -668,7 +668,7 @@ void header_save(char *str)
|
131
|
131
|
(void)fprintf(stderr, "header_save(): str = [%s]\n", str);
|
132
|
132
|
#endif
|
133
|
133
|
|
|
@@ -136,7 +136,7 @@
|
136
|
136
|
die("header_save() -- strdup() failed");
|
137
|
137
|
}
|
138
|
138
|
ht->string = p;
|
139
|
|
-@@ -672,7 +672,7 @@ void header_save(char *str)
|
|
139
|
+@@ -676,7 +676,7 @@ void header_save(char *str)
|
140
|
140
|
if(strncasecmp(ht->string, "From:", 5) == 0) {
|
141
|
141
|
#if 1
|
142
|
142
|
/* Hack check for NULL From: line */
|
|
@@ -145,7 +145,7 @@
|
145
|
145
|
return;
|
146
|
146
|
}
|
147
|
147
|
#endif
|
148
|
|
-@@ -735,19 +735,19 @@ header_parse() -- Break headers into sep
|
|
148
|
+@@ -739,19 +739,19 @@ header_parse() -- Break headers into sep
|
149
|
149
|
void header_parse(FILE *stream)
|
150
|
150
|
{
|
151
|
151
|
size_t size = BUF_SZ, len = 0;
|
|
@@ -169,7 +169,7 @@
|
169
|
169
|
die("header_parse() -- realloc() failed");
|
170
|
170
|
}
|
171
|
171
|
q = (p + len);
|
172
|
|
-@@ -772,9 +772,9 @@ void header_parse(FILE *stream)
|
|
172
|
+@@ -776,9 +776,9 @@ void header_parse(FILE *stream)
|
173
|
173
|
in_header = False;
|
174
|
174
|
|
175
|
175
|
default:
|
|
@@ -181,7 +181,7 @@
|
181
|
181
|
}
|
182
|
182
|
header_save(p);
|
183
|
183
|
|
184
|
|
-@@ -805,9 +805,9 @@ void header_parse(FILE *stream)
|
|
184
|
+@@ -809,9 +809,9 @@ void header_parse(FILE *stream)
|
185
|
185
|
in_header = False;
|
186
|
186
|
|
187
|
187
|
default:
|
|
@@ -193,7 +193,7 @@
|
193
|
193
|
}
|
194
|
194
|
header_save(p);
|
195
|
195
|
|
196
|
|
-@@ -872,11 +872,11 @@ bool_t read_config()
|
|
196
|
+@@ -876,11 +876,11 @@ bool_t read_config()
|
197
|
197
|
char *rightside;
|
198
|
198
|
/* Make comments invisible */
|
199
|
199
|
if((p = strchr(buf, '#'))) {
|
|
@@ -207,7 +207,7 @@
|
207
|
207
|
|
208
|
208
|
/* Parse out keywords */
|
209
|
209
|
p=firsttok(&begin, "= \t\n");
|
210
|
|
-@@ -886,7 +886,7 @@ bool_t read_config()
|
|
210
|
+@@ -890,7 +890,7 @@ bool_t read_config()
|
211
|
211
|
}
|
212
|
212
|
if(p && q) {
|
213
|
213
|
if(strcasecmp(p, "Root") == 0) {
|
|
@@ -216,7 +216,7 @@
|
216
|
216
|
die("parse_config() -- strdup() failed");
|
217
|
217
|
}
|
218
|
218
|
|
219
|
|
-@@ -900,7 +900,7 @@ bool_t read_config()
|
|
219
|
+@@ -904,7 +904,7 @@ bool_t read_config()
|
220
|
220
|
port = atoi(r);
|
221
|
221
|
}
|
222
|
222
|
|
|
@@ -225,7 +225,7 @@
|
225
|
225
|
die("parse_config() -- strdup() failed");
|
226
|
226
|
}
|
227
|
227
|
|
228
|
|
-@@ -945,7 +945,7 @@ bool_t read_config()
|
|
228
|
+@@ -949,7 +949,7 @@ bool_t read_config()
|
229
|
229
|
mail_domain = strdup(q);
|
230
|
230
|
}
|
231
|
231
|
|
|
@@ -234,7 +234,7 @@
|
234
|
234
|
die("parse_config() -- strdup() failed");
|
235
|
235
|
}
|
236
|
236
|
rewrite_domain = True;
|
237
|
|
-@@ -1021,7 +1021,7 @@ bool_t read_config()
|
|
237
|
+@@ -1025,7 +1025,7 @@ bool_t read_config()
|
238
|
238
|
}
|
239
|
239
|
}
|
240
|
240
|
else if(strcasecmp(p, "TLSCert") == 0) {
|
|
@@ -243,7 +243,7 @@
|
243
|
243
|
die("parse_config() -- strdup() failed");
|
244
|
244
|
}
|
245
|
245
|
|
246
|
|
-@@ -1032,7 +1032,7 @@ bool_t read_config()
|
|
246
|
+@@ -1036,7 +1036,7 @@ bool_t read_config()
|
247
|
247
|
#endif
|
248
|
248
|
/* Command-line overrides these */
|
249
|
249
|
else if(strcasecmp(p, "AuthUser") == 0 && !auth_user) {
|
|
@@ -252,7 +252,7 @@
|
252
|
252
|
die("parse_config() -- strdup() failed");
|
253
|
253
|
}
|
254
|
254
|
|
255
|
|
-@@ -1041,7 +1041,7 @@ bool_t read_config()
|
|
255
|
+@@ -1045,7 +1045,7 @@ bool_t read_config()
|
256
|
256
|
}
|
257
|
257
|
}
|
258
|
258
|
else if(strcasecmp(p, "AuthPass") == 0 && !auth_pass) {
|
|
@@ -261,7 +261,7 @@
|
261
|
261
|
die("parse_config() -- strdup() failed");
|
262
|
262
|
}
|
263
|
263
|
|
264
|
|
-@@ -1050,7 +1050,7 @@ bool_t read_config()
|
|
264
|
+@@ -1054,7 +1054,7 @@ bool_t read_config()
|
265
|
265
|
}
|
266
|
266
|
}
|
267
|
267
|
else if(strcasecmp(p, "AuthMethod") == 0 && !auth_method) {
|
|
@@ -270,7 +270,24 @@
|
270
|
270
|
die("parse_config() -- strdup() failed");
|
271
|
271
|
}
|
272
|
272
|
|
273
|
|
-@@ -1309,7 +1309,7 @@ char *fd_gets(char *buf, int size, int f
|
|
273
|
+@@ -1119,14 +1119,11 @@ int smtp_open(char *host, int port)
|
|
274
|
+ char buf[(BUF_SZ + 1)];
|
|
275
|
+
|
|
276
|
+ /* Init SSL stuff */
|
|
277
|
+- SSL_CTX *ctx;
|
|
278
|
+- SSL_METHOD *meth;
|
|
279
|
++ SSL_CTX *ctx = NULL;
|
|
280
|
+ X509 *server_cert;
|
|
281
|
+-
|
|
282
|
+ SSL_load_error_strings();
|
|
283
|
+ SSLeay_add_ssl_algorithms();
|
|
284
|
+- meth=SSLv23_client_method();
|
|
285
|
+- ctx = SSL_CTX_new(meth);
|
|
286
|
++ ctx = SSL_CTX_new(SSLv23_client_method());
|
|
287
|
+ if(!ctx) {
|
|
288
|
+ log_event(LOG_ERR, "No SSL support initiated\n");
|
|
289
|
+ return(-1);
|
|
290
|
+@@ -1310,7 +1307,7 @@ char *fd_gets(char *buf, int size, int f
|
274
|
291
|
buf[i++] = c;
|
275
|
292
|
}
|
276
|
293
|
}
|
|
@@ -279,7 +296,7 @@
|
279
|
296
|
|
280
|
297
|
return(buf);
|
281
|
298
|
}
|
282
|
|
-@@ -1433,14 +1433,14 @@ int ssmtp(char *argv[])
|
|
299
|
+@@ -1434,14 +1431,14 @@ int ssmtp(char *argv[])
|
283
|
300
|
}
|
284
|
301
|
|
285
|
302
|
if((p = strtok(pw->pw_gecos, ";,"))) {
|
|
@@ -296,7 +313,7 @@
|
296
|
313
|
uad = append_domain(pw->pw_name);
|
297
|
314
|
}
|
298
|
315
|
|
299
|
|
-@@ -1488,7 +1488,7 @@ int ssmtp(char *argv[])
|
|
316
|
+@@ -1489,7 +1486,7 @@ int ssmtp(char *argv[])
|
300
|
317
|
/* Try to log in if username was supplied */
|
301
|
318
|
if(auth_user) {
|
302
|
319
|
#ifdef MD5AUTH
|
|
@@ -305,7 +322,7 @@
|
305
|
322
|
auth_pass = strdup("");
|
306
|
323
|
}
|
307
|
324
|
|
308
|
|
-@@ -1736,7 +1736,7 @@ char **parse_options(int argc, char *arg
|
|
325
|
+@@ -1737,7 +1734,7 @@ char **parse_options(int argc, char *arg
|
309
|
326
|
j = 0;
|
310
|
327
|
|
311
|
328
|
add = 1;
|
|
@@ -314,7 +331,7 @@
|
314
|
331
|
switch(argv[i][j]) {
|
315
|
332
|
#ifdef INET6
|
316
|
333
|
case '6':
|
317
|
|
-@@ -1754,14 +1754,14 @@ char **parse_options(int argc, char *arg
|
|
334
|
+@@ -1755,14 +1752,14 @@ char **parse_options(int argc, char *arg
|
318
|
335
|
if((!argv[i][(j + 1)])
|
319
|
336
|
&& argv[(i + 1)]) {
|
320
|
337
|
auth_user = strdup(argv[i+1]);
|
|
@@ -331,7 +348,7 @@
|
331
|
348
|
die("parse_options() -- strdup() failed");
|
332
|
349
|
}
|
333
|
350
|
}
|
334
|
|
-@@ -1771,14 +1771,14 @@ char **parse_options(int argc, char *arg
|
|
351
|
+@@ -1772,14 +1769,14 @@ char **parse_options(int argc, char *arg
|
335
|
352
|
if((!argv[i][(j + 1)])
|
336
|
353
|
&& argv[(i + 1)]) {
|
337
|
354
|
auth_pass = strdup(argv[i+1]);
|
|
@@ -348,7 +365,7 @@
|
348
|
365
|
die("parse_options() -- strdup() failed");
|
349
|
366
|
}
|
350
|
367
|
}
|
351
|
|
-@@ -1869,14 +1869,14 @@ char **parse_options(int argc, char *arg
|
|
368
|
+@@ -1870,14 +1867,14 @@ char **parse_options(int argc, char *arg
|
352
|
369
|
case 'F':
|
353
|
370
|
if((!argv[i][(j + 1)]) && argv[(i + 1)]) {
|
354
|
371
|
minus_F = strdup(argv[(i + 1)]);
|
|
@@ -365,7 +382,7 @@
|
365
|
382
|
die("parse_options() -- strdup() failed");
|
366
|
383
|
}
|
367
|
384
|
}
|
368
|
|
-@@ -1888,14 +1888,14 @@ char **parse_options(int argc, char *arg
|
|
385
|
+@@ -1889,14 +1886,14 @@ char **parse_options(int argc, char *arg
|
369
|
386
|
case 'r':
|
370
|
387
|
if((!argv[i][(j + 1)]) && argv[(i + 1)]) {
|
371
|
388
|
minus_f = strdup(argv[(i + 1)]);
|