1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
|
/*
* driver.c -- generic driver for mail fetch method protocols
*
* Copyright 1996 by Eric S. Raymond
* All rights reserved.
* For license terms, see the file COPYING in this directory.
*/
#include <config.h>
#include <stdio.h>
#include <setjmp.h>
#include <errno.h>
#include <ctype.h>
#include <string.h>
#if defined(STDC_HEADERS)
#include <stdlib.h>
#endif
#if defined(HAVE_UNISTD_H)
#include <unistd.h>
#endif
#if defined(HAVE_STDARG_H)
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#if defined(HAVE_ALLOCA_H)
#include <alloca.h>
#endif
#include <sys/time.h>
#include <signal.h>
#ifdef HAVE_GETHOSTBYNAME
#include <netdb.h>
#include "mx.h"
#endif /* HAVE_GETHOSTBYNAME */
#ifdef KERBEROS_V4
#include <krb.h>
#include <des.h>
#include <netinet/in.h>
#include <netdb.h>
#endif /* KERBEROS_V4 */
#include "socket.h"
#include "fetchmail.h"
#include "socket.h"
#include "smtp.h"
/* BSD portability hack...I know, this is an ugly place to put it */
#if !defined(SIGCHLD) && defined(SIGCLD)
#define SIGCHLD SIGCLD
#endif
#define SMTP_PORT 25 /* standard SMTP service port */
int batchlimit; /* how often to tear down the delivery connection */
int fetchlimit; /* how often to tear down the server connection */
int batchcount; /* count of messages sent in current batch */
int peek_capable; /* can we peek for better error recovery? */
static const struct method *protocol;
static jmp_buf restart;
char tag[TAGLEN];
static int tagnum;
#define GENSYM (sprintf(tag, "a%04d", ++tagnum), tag)
static char *shroud; /* string to shroud in debug output, if non-NULL */
static int mytimeout; /* value of nonreponse timeout */
static int strcrlf(dst, src, count)
/* replace LFs with CR-LF; return length of string with replacements */
char *dst; /* new string with CR-LFs */
char *src; /* original string with LFs */
int count; /* length of src */
{
int len = count;
while (count--)
{
if (*src == '\n')
{
*dst++ = '\r';
len++;
}
*dst++ = *src++;
}
*dst = '\0';
return len;
}
static void vtalarm(int timeleft)
/* reset the nonresponse-timeout */
{
struct itimerval ntimeout;
ntimeout.it_interval.tv_sec = ntimeout.it_interval.tv_usec = 0;
ntimeout.it_value.tv_sec = timeleft;
ntimeout.it_value.tv_usec = 0;
setitimer(ITIMER_VIRTUAL, &ntimeout, (struct itimerval *)NULL);
}
static void vtalarm_handler (int signal)
/* handle server-timeout SIGVTALARM signal */
{
longjmp(restart, 1);
}
#ifdef HAVE_RES_SEARCH
#define MX_RETRIES 3
static int is_host_alias(const char *name, struct query *ctl)
/* determine whether name is a DNS alias of the hostname */
{
struct hostent *he;
struct mxentry *mxp, *mxrecords;
/*
* The first two checks are optimizations that will catch a good
* many cases. (1) check against the hostname the user
* specified. Odds are good this will either be the mailserver's
* FQDN or a suffix of it with the mailserver's domain's default
* host name omitted. Then check the rest of the `also known as'
* cache accumulated by previous DNS checks. This cache is primed
* by the aka list option.
*
* (2) check against the mailserver's FQDN, in case
* it's not the same as the declared hostname.
*
* Either of these on a mail address is definitive. Only if the
* name doesn't match either is it time to call the bind library.
* If this happens odds are good we're looking at an MX name.
*/
if (str_in_list(&ctl->server.lead_server->names, name))
return(TRUE);
else if (strcmp(name, ctl->server.canonical_name) == 0)
return(TRUE);
/*
* We know DNS service was up at the beginning of this poll cycle.
* If it's down, our nameserver has crashed. We don't want to try
* delivering the current message or anything else from this
* mailbox until it's back up.
*/
else if ((he = gethostbyname(name)) != (struct hostent *)NULL)
{
if (strcmp(ctl->server.canonical_name, he->h_name) == 0)
goto match;
else
return(FALSE);
}
else
switch (h_errno)
{
case HOST_NOT_FOUND: /* specified host is unknown */
case NO_ADDRESS: /* valid, but does not have an IP address */
break;
case NO_RECOVERY: /* non-recoverable name server error */
case TRY_AGAIN: /* temporary error on authoritative server */
default:
if (outlevel != O_SILENT)
putchar('\n'); /* terminate the progress message */
error(0, 0,
"nameserver failure while looking for `%s' during poll of %s.",
name, ctl->server.names->id);
ctl->errcount++;
longjmp(restart, 2); /* try again next poll cycle */
break;
}
/*
* We're only here if DNS was OK but the gethostbyname() failed
* with a HOST_NOT_FOUND or NO_ADDRESS error.
* Search for a name match on MX records pointing to the server.
*/
h_errno = 0;
if ((mxrecords = getmxrecords(name)) == (struct mxentry *)NULL)
{
switch (h_errno)
{
case HOST_NOT_FOUND: /* specified host is unknown */
case NO_ADDRESS: /* valid, but does not have an IP address */
return(FALSE);
break;
case NO_RECOVERY: /* non-recoverable name server error */
case TRY_AGAIN: /* temporary error on authoritative server */
default:
error(0, 0,
"nameserver failure while looking for `%s' during poll of %s.",
name, ctl->server.names->id);
ctl->errcount++;
longjmp(restart, 2); /* try again next poll cycle */
break;
}
}
else
{
for (mxp = mxrecords; mxp->name; mxp++)
if (strcmp(ctl->server.canonical_name, mxp->name) == 0)
goto match;
return(FALSE);
match:;
}
/* add this name to relevant server's `also known as' list */
save_str(&ctl->server.lead_server->names, -1, name);
return(TRUE);
}
static void map_name(name, ctl, xmit_names)
/* add given name to xmit_names if it matches declared localnames */
const char *name; /* name to map */
struct query *ctl; /* list of permissible aliases */
struct idlist **xmit_names; /* list of recipient names parsed out */
{
const char *lname;
lname = idpair_find(&ctl->localnames, name);
if (!lname && ctl->wildcard)
lname = name;
if (lname != (char *)NULL)
{
if (outlevel == O_VERBOSE)
error(0, 0, "mapped %s to local %s", name, lname);
save_str(xmit_names, -1, lname);
}
}
void find_server_names(hdr, ctl, xmit_names)
/* parse names out of a RFC822 header into an ID list */
const char *hdr; /* RFC822 header in question */
struct query *ctl; /* list of permissible aliases */
struct idlist **xmit_names; /* list of recipient names parsed out */
{
if (hdr == (char *)NULL)
return;
else
{
char *cp, *lname;
if ((cp = nxtaddr(hdr)) != (char *)NULL)
do {
char *atsign;
if ((atsign = strchr(cp, '@')))
{
struct idlist *idp;
/*
* Does a trailing segment of the hostname match something
* on the localdomains list? If so, save the whole name
* and keep going.
*/
for (idp = ctl->server.localdomains; idp; idp = idp->next)
{
char *rhs;
rhs = atsign + 1 + (strlen(atsign) - strlen(idp->id));
if ((rhs[-1] == '.' || rhs[-1] == '@')
&& strcmp(rhs, idp->id) == 0)
{
if (outlevel == O_VERBOSE)
error(0, 0, "passed through %s matching %s",
cp, idp->id);
save_str(xmit_names, -1, cp);
continue;
}
}
/*
* Check to see if the right-hand part is an alias
* or MX equivalent of the mailserver. If it's
* not, skip this name. If it is, we'll keep
* going and try to find a mapping to a client name.
*/
if (!is_host_alias(atsign+1, ctl))
continue;
atsign[0] = '\0';
}
map_name(cp, ctl, xmit_names);
} while
((cp = nxtaddr((char *)NULL)) != (char *)NULL);
}
}
#endif /* HAVE_RES_SEARCH */
static FILE *smtp_open(struct query *ctl)
/* try to open a socket to the appropriate SMTP server for this query */
{
struct query *lead;
lead = ctl->lead_smtp; /* go to the SMTP leader for this query */
/* maybe it's time to close the socket in order to force delivery */
if (batchlimit && lead->smtp_sockfp && batchcount++ == batchlimit)
{
fclose(lead->smtp_sockfp);
lead->smtp_sockfp = (FILE *)NULL;
batchcount = 0;
}
/* if no socket to this host is already set up, try to open one */
if (lead->smtp_sockfp == (FILE *)NULL)
{
if ((lead->smtp_sockfp = SockOpen(lead->smtphost, SMTP_PORT)) == (FILE *)NULL)
return((FILE *)NULL);
else if (SMTP_ok(lead->smtp_sockfp) != SM_OK
|| SMTP_helo(lead->smtp_sockfp, ctl->server.names->id) != SM_OK)
{
fclose(lead->smtp_sockfp);
lead->smtp_sockfp = (FILE *)NULL;
}
}
return(lead->smtp_sockfp);
}
static int gen_readmsg(sockfp, len, delimited, ctl, realname)
/* read message content and ship to SMTP or MDA */
FILE *sockfp; /* to which the server is connected */
long len; /* length of message */
int delimited; /* does the protocol use a message delimiter? */
struct query *ctl; /* query control record */
char *realname; /* real name of host */
{
char buf [MSGBUFSIZE+1];
char *bufp, *headers, *fromhdr,*tohdr,*cchdr,*bcchdr,*received_for,*envto;
char *fromptr, *toptr;
int n, oldlen;
int inheaders,lines,sizeticker;
FILE *sinkfp;
RETSIGTYPE (*sigchld)();
#ifdef HAVE_GETHOSTBYNAME
char rbuf[HOSTLEN + USERNAMELEN + 4];
#endif /* HAVE_GETHOSTBYNAME */
/* read the message content from the server */
inheaders = 1;
headers = fromhdr = tohdr = cchdr = bcchdr = received_for = envto = NULL;
lines = 0;
sizeticker = 0;
oldlen = 0;
while (delimited || len > 0)
{
if (!SockGets(buf,sizeof(buf),sockfp))
return(PS_SOCKET);
n = strlen(buf);
vtalarm(ctl->server.timeout);
/* squeeze out all carriage returns */
for (fromptr = toptr = buf; *fromptr; fromptr++)
if (*fromptr != '\r' && *fromptr != '\n')
*toptr++ = *fromptr;
*toptr = '\0';
/* write the message size dots */
if (n > 0)
{
sizeticker += n;
while (sizeticker >= SIZETICKER)
{
if (outlevel > O_SILENT)
error_build(".");
sizeticker -= SIZETICKER;
}
}
len -= n;
bufp = buf;
if (buf[0] == '\0' || buf[0] == '\r' || buf[0] == '\n')
inheaders = 0;
if (delimited && *bufp == '.') {
bufp++;
if (*bufp == 0)
break; /* end of message */
}
strcat(bufp, "\n");
if (inheaders)
{
if (!ctl->norewrite)
reply_hack(bufp, realname);
if (!lines)
{
oldlen = strlen(bufp);
headers = xmalloc(oldlen + 1);
(void) strcpy(headers, bufp);
bufp = headers;
}
else
{
int newlen;
/*
* We deal with RFC822 continuation lines here.
* Replace previous '\n' with '\r' so nxtaddr
* and reply_hack will be able to see past it.
* (We know this is safe because SocketGets stripped
* out all carriage returns in the read loop above
* and we haven't reintroduced any since then.)
* We'll undo this before writing the header.
*/
if (isspace(bufp[0]))
headers[oldlen-1] = '\r';
newlen = oldlen + strlen(bufp);
headers = realloc(headers, newlen + 1);
if (headers == NULL)
return(PS_IOERR);
strcpy(headers + oldlen, bufp);
bufp = headers + oldlen;
oldlen = newlen;
}
if (!strncasecmp("From:", bufp, 5))
fromhdr = bufp;
else if (!fromhdr && !strncasecmp("Resent-From:", bufp, 12))
fromhdr = bufp;
else if (!fromhdr && !strncasecmp("Apparently-From:", bufp, 16))
fromhdr = bufp;
else if (!strncasecmp("To:", bufp, 3))
tohdr = bufp;
else if (!strncasecmp("Apparently-To:", bufp, 14))
envto = bufp;
else if (!strncasecmp(ctl->server.envelope, bufp, 14))
envto = bufp;
else if (!strncasecmp("Cc:", bufp, 3))
cchdr = bufp;
else if (!strncasecmp("Bcc:", bufp, 4))
bcchdr = bufp;
#ifdef HAVE_RES_SEARCH
else if (MULTIDROP(ctl) && !strncasecmp("Received:", bufp, 9))
{
char *ok;
/*
* Try to extract the real envelope addressee. We look here
* specifically for the mailserver's Received line.
* Note: this will only work for sendmail, or an MTA that
* shares sendmail's convention for embedding the envelope
* address in the Received line. Sendmail itself only
* does this when the mail has a single recipient.
*/
if ((ok = strstr(bufp, "by ")) == (char *)NULL)
ok = (char *)NULL;
else
{
char *sp, *tp;
/* extract space-delimited token after "by " */
tp = rbuf;
for (sp = ok + 3; !isspace(*sp); sp++)
*tp++ = *sp;
*tp = '\0';
/*
* If it's a DNS name of the mail server, look for the
* recipient name after a following "for". Otherwise
* punt.
*/
if (is_host_alias(rbuf, ctl))
ok = strstr(sp, "for ");
else
ok = (char *)NULL;
}
if (ok != 0)
{
char *sp, *tp;
tp = rbuf;
sp = ok + 4;
if (*sp == '<')
sp++;
while (*sp && *sp != '>' && *sp != '@' && *sp != ';')
if (!isspace(*sp))
*tp++ = *sp++;
else
{
/* uh oh -- whitespace here can't be right! */
ok = (char *)NULL;
break;
}
*tp = '\0';
}
if (ok != 0)
{
received_for = alloca(strlen(rbuf)+1);
strcpy(received_for, rbuf);
if (outlevel == O_VERBOSE)
error(0, 0,
"found Received address `%s'",
received_for);
}
}
#endif /* HAVE_RES_SEARCH */
goto skipwrite;
}
else if (headers) /* OK, we're at end of headers now */
{
char *cp;
struct idlist *idp, *xmit_names;
int good_addresses, bad_addresses;
#ifdef HAVE_RES_SEARCH
int no_local_matches = FALSE;
#endif /* HAVE_RES_SEARCH */
/* cons up a list of local recipients */
xmit_names = (struct idlist *)NULL;
bad_addresses = good_addresses = 0;
#ifdef HAVE_RES_SEARCH
/* is this a multidrop box? */
if (MULTIDROP(ctl))
{
if (envto) /* We have the actual envelope addressee */
find_server_names(envto, ctl, &xmit_names);
else if (received_for)
/*
* We have the Received for addressee.
* It has to be a mailserver address, or we
* wouldn't have got here.
*/
map_name(received_for, ctl, &xmit_names);
else
{
/*
* We haven't extracted the envelope address.
* So check all the header addresses.
*/
find_server_names(tohdr, ctl, &xmit_names);
find_server_names(cchdr, ctl, &xmit_names);
find_server_names(bcchdr, ctl, &xmit_names);
}
if (!xmit_names)
{
no_local_matches = TRUE;
save_str(&xmit_names, -1, user);
if (outlevel == O_VERBOSE)
error(0, 0,
"no local matches, forwarding to %s",
user);
}
}
else /* it's a single-drop box, use first localname */
#endif /* HAVE_RES_SEARCH */
save_str(&xmit_names, -1, ctl->localnames->id);
/* time to address the message */
if (ctl->mda) /* we have a declared MDA */
{
int length = 0;
char *names, *cmd;
/*
* We go through this in order to be able to handle very
* long lists of users and (re)implement %s.
*/
for (idp = xmit_names; idp; idp = idp->next)
length += (strlen(idp->id) + 1);
names = (char *)alloca(length);
names[0] = '\0';
for (idp = xmit_names; idp; idp = idp->next)
{
strcat(names, idp->id);
strcat(names, " ");
}
cmd = (char *)alloca(strlen(ctl->mda) + length);
sprintf(cmd, ctl->mda, names);
if (outlevel == O_VERBOSE)
error(0, 0, "about to deliver with: %s", cmd);
#ifdef HAVE_SETEUID
/*
* Arrange to run with user's permissions if we're root.
* This will initialize the ownership of any files the
* MDA creates properly. (The seteuid call is available
* under all BSDs and Linux)
*/
seteuid(ctl->uid);
#endif /* HAVE_SETEUID */
sinkfp = popen(cmd, "w");
#ifdef HAVE_SETEUID
/* this will fail quietly if we didn't start as root */
seteuid(0);
#endif /* HAVE_SETEUID */
if (!sinkfp)
{
error(0, 0, "MDA open failed");
return(PS_IOERR);
}
sigchld = signal(SIGCHLD, SIG_DFL);
}
else
{
char *ap;
/* build a connection to the SMTP listener */
if (!ctl->mda && ((sinkfp = smtp_open(ctl)) == NULL))
{
free_str_list(&xmit_names);
error(0, 0, "SMTP connect failed");
return(PS_SMTP);
}
/*
* Try to get the SMTP listener to take the header
* From address as MAIL FROM (this makes the logging
* nicer). If it won't, fall back on the calling-user
* ID. This won't affect replies, which use the header
* From address anyway.
*/
if (!fromhdr || !(ap = nxtaddr(fromhdr)))
{
if (SMTP_from(sinkfp, user) != SM_OK)
return(PS_SMTP); /* should never happen */
}
else if (SMTP_from(sinkfp, ap) != SM_OK)
if (smtp_response == 571)
{
/*
* SMTP listener explicitly refuses to deliver
* mail coming from this address, probably due
* to an anti-spam domain exclusion. Respect
* this.
*/
sinkfp = (FILE *)NULL;
goto skiptext;
}
else if (SMTP_from(sinkfp, user) != SM_OK)
return(PS_SMTP); /* should never happen */
/* now list the recipient addressees */
for (idp = xmit_names; idp; idp = idp->next)
if (SMTP_rcpt(sinkfp, idp->id) == SM_OK)
good_addresses++;
else
{
bad_addresses++;
idp->val.num = 0;
error(0, 0,
"SMTP listener doesn't like recipient address `%s'", idp->id);
}
if (!good_addresses && SMTP_rcpt(sinkfp, user) != SM_OK)
{
error(0, 0,
"can't even send to calling user!");
return(PS_SMTP);
}
/* tell it we're ready to send data */
SMTP_data(sinkfp);
skiptext:;
}
/* change continuation markers back to regular newlines */
for (cp = headers; cp < headers + oldlen; cp++)
if (*cp == '\r')
*cp = '\n';
/* replace all LFs with CR-LF before sending to the SMTP server */
if (!ctl->mda)
{
char *newheaders = xmalloc(1 + oldlen * 2);
oldlen = strcrlf(newheaders, headers, oldlen);
free(headers);
headers = newheaders;
}
/* write all the headers */
n = 0;
if (ctl->mda)
n = fwrite(headers, 1, oldlen, sinkfp);
else if (sinkfp)
n = SockWrite(headers, 1, oldlen, sinkfp);
if (n < 0)
{
free(headers);
headers = NULL;
error(0, errno, "writing RFC822 headers");
if (ctl->mda)
{
pclose(sinkfp);
signal(SIGCHLD, sigchld);
}
return(PS_IOERR);
}
else if (outlevel == O_VERBOSE)
fputs("#", stderr);
free(headers);
headers = NULL;
/* write error notifications */
#ifdef HAVE_RES_SEARCH
if (no_local_matches || bad_addresses)
#else
if (bad_addresses)
#endif /* HAVE_RES_SEARCH */
{
int errlen = 0;
char errhd[USERNAMELEN + POPBUFSIZE], *errmsg;
errmsg = errhd;
(void) strcpy(errhd, "X-Fetchmail-Warning: ");
#ifdef HAVE_RES_SEARCH
if (no_local_matches)
{
strcat(errhd, "no recipient addresses matched declared local names");
if (bad_addresses)
strcat(errhd, "; ");
}
#endif /* HAVE_RES_SEARCH */
if (bad_addresses)
{
strcat(errhd, "SMTP listener rejected local recipient addresses: ");
errlen = strlen(errhd);
for (idp = xmit_names; idp; idp = idp->next)
if (!idp->val.num)
errlen += strlen(idp->id) + 2;
errmsg = alloca(errlen+3);
(void) strcpy(errmsg, errhd);
for (idp = xmit_names; idp; idp = idp->next)
if (!idp->val.num)
{
strcat(errmsg, idp->id);
if (idp->next)
strcat(errmsg, ", ");
}
}
strcat(errmsg, "\n");
if (sinkfp)
fputs(errmsg, sinkfp);
}
free_str_list(&xmit_names);
}
/* SMTP byte-stuffing */
if (*bufp == '.')
if (ctl->mda)
fputs(".", sinkfp);
else if (sinkfp)
SockWrite(bufp, 1, 1, sinkfp);
/* replace all LFs with CR-LF in the line */
if (!ctl->mda)
{
char *newbufp = xmalloc(1 + strlen(bufp) * 2);
strcrlf(newbufp, bufp, strlen(bufp));
bufp = newbufp;
}
/* ship out the text line */
n = 0;
if (ctl->mda)
n = fwrite(bufp, 1, strlen(bufp), sinkfp);
else if (sinkfp)
n = SockWrite(bufp, 1, strlen(bufp), sinkfp);
if (!ctl->mda)
free(bufp);
if (n < 0)
{
error(0, errno, "writing message text");
if (ctl->mda)
{
pclose(sinkfp);
signal(SIGCHLD, sigchld);
}
return(PS_IOERR);
}
else if (outlevel == O_VERBOSE)
fputc('*', stderr);
skipwrite:;
lines++;
}
if (outlevel == O_VERBOSE)
fputc('\n', stderr);
if (ctl->mda)
{
int rc;
/* close the delivery pipe, we'll reopen before next message */
rc = pclose(sinkfp);
signal(SIGCHLD, sigchld);
if (rc)
{
error(0, 0, "MDA exited abnormally or returned nonzero status");
return(PS_IOERR);
}
}
else if (sinkfp)
{
/* write message terminator */
if (SMTP_eom(sinkfp) != SM_OK)
{
error(0, 0, "SMTP listener refused delivery");
return(PS_SMTP);
}
}
return(0);
}
#ifdef KERBEROS_V4
int
kerberos_auth (socket, canonical)
/* authenticate to the server host using Kerberos V4 */
int socket; /* socket to server host */
const char *canonical; /* server name */
{
char * host_primary;
KTEXT ticket;
MSG_DAT msg_data;
CREDENTIALS cred;
Key_schedule schedule;
int rem;
ticket = ((KTEXT) (malloc (sizeof (KTEXT_ST))));
rem = (krb_sendauth (0L, socket, ticket, "pop",
canonical,
((char *) (krb_realmofhost (canonical))),
((unsigned long) 0),
(&msg_data),
(&cred),
(schedule),
((struct sockaddr_in *) 0),
((struct sockaddr_in *) 0),
"KPOPV0.1"));
free (ticket);
if (rem != KSUCCESS)
{
error(0, 0, "kerberos error %s", (krb_get_err_text (rem)));
return (PS_ERROR);
}
return (0);
}
#endif /* KERBEROS_V4 */
int do_protocol(ctl, proto)
/* retrieve messages from server using given protocol method table */
struct query *ctl; /* parsed options with merged-in defaults */
const struct method *proto; /* protocol method table */
{
int ok, js, pst;
char *msg, *sp, *cp, realname[HOSTLEN];
void (*sigsave)();
#ifndef KERBEROS_V4
if (ctl->server.authenticate == A_KERBEROS)
{
error(0, 0, "Kerberos support not linked.");
return(PS_ERROR);
}
#endif /* KERBEROS_V4 */
/* lacking methods, there are some options that may fail */
if (!proto->is_old)
{
/* check for unsupported options */
if (ctl->flush) {
error(0, 0,
"Option --flush is not supported with %s",
proto->name);
return(PS_SYNTAX);
}
else if (ctl->fetchall) {
error(0, 0,
"Option --all is not supported with %s",
proto->name);
return(PS_SYNTAX);
}
}
if (!proto->getsizes && ctl->limit)
{
error(0, 0,
"Option --limit is not supported with %s",
proto->name);
return(PS_SYNTAX);
}
protocol = proto;
tagnum = 0;
tag[0] = '\0'; /* nuke any tag hanging out from previous query */
ok = 0;
error_init(poll_interval == 0 && !logfile);
/* set up the server-nonresponse timeout */
sigsave = signal(SIGVTALRM, vtalarm_handler);
vtalarm(mytimeout = ctl->server.timeout);
if ((js = setjmp(restart)) == 1)
{
error(0, 0,
"timeout after %d seconds waiting for %s.",
ctl->server.timeout, ctl->server.names->id);
ok = PS_ERROR;
}
else if (js == 2)
{
/* error message printed at point of longjmp */
ok = PS_ERROR;
}
else
{
char buf [POPBUFSIZE+1];
int *msgsizes, len, num, count, new, deletions = 0;
FILE *sockfp;
/* execute pre-initialization command, if any */
if (ctl->preconnect && (ok = system(ctl->preconnect)))
{
sprintf(buf, "pre-connection command failed with status %d", ok);
error(0, 0, buf);
ok = PS_SYNTAX;
goto closeUp;
}
/* open a socket to the mail server */
if (!(sockfp = SockOpen(ctl->server.names->id,
ctl->server.port ? ctl->server.port : protocol->port)))
{
if (errno != EHOSTUNREACH)
error(0, errno, "connecting to host");
ok = PS_SOCKET;
goto closeUp;
}
#ifdef KERBEROS_V4
if (ctl->authenticate == A_KERBEROS)
{
ok = kerberos_auth(fileno(sockfp), ctl->server.canonical_name);
if (ok != 0)
goto cleanUp;
vtalarm(ctl->server.timeout);
}
#endif /* KERBEROS_V4 */
/* accept greeting message from mail server */
ok = (protocol->parse_response)(sockfp, buf);
if (ok != 0)
goto cleanUp;
vtalarm(ctl->server.timeout);
/*
* Try to parse the host's actual name out of the greeting
* message. We do this so that the progress messages will
* make sense even if the connection is indirected through
* ssh. *Do* use this for hacking reply headers, but *don't*
* use it for error logging, as the names in the log should
* correlate directly back to rc file entries.
*
* This assumes that the first space-delimited token found
* that contains at least two dots (with the characters on
* each side of the dot alphanumeric to exclude version
* numbers) is the hostname. The hostname candidate may not
* contain @ -- if it does it's probably a mailserver
* maintainer's name. If no such token is found, fall back on
* the .fetchmailrc id.
*/
pst = 0;
for (cp = buf; *cp; cp++)
{
switch (pst)
{
case 0: /* skip to end of current token */
if (*cp == ' ')
pst = 1;
break;
case 1: /* look for blank-delimited token */
if (*cp != ' ')
{
sp = cp;
pst = 2;
}
break;
case 2: /* look for first dot */
if (*cp == '@')
pst = 0;
else if (*cp == ' ')
pst = 1;
else if (*cp == '.' && isalpha(cp[1]) && isalpha(cp[-1]))
pst = 3;
break;
case 3: /* look for second dot */
if (*cp == '@')
pst = 0;
else if (*cp == ' ')
pst = 1;
else if (*cp == '.' && isalpha(cp[1]) && isalpha(cp[-1]))
pst = 4;
break;
case 4: /* look for trailing space */
if (*cp == '@')
pst = 0;
else if (*cp == ' ')
{
pst = 5;
goto done;
}
break;
}
}
done:
if (pst == 5)
{
char *tp = realname;
while (sp < cp)
*tp++ = *sp++;
*tp = '\0';
}
else
strcpy(realname, ctl->server.names->id);
/* try to get authorized to fetch mail */
shroud = ctl->password;
ok = (protocol->getauth)(sockfp, ctl, buf);
shroud = (char *)NULL;
if (ok == PS_ERROR)
ok = PS_AUTHFAIL;
if (ok != 0)
goto cleanUp;
vtalarm(ctl->server.timeout);
/* compute number of messages and number of new messages waiting */
ok = (protocol->getrange)(sockfp, ctl, &count, &new);
if (ok != 0)
goto cleanUp;
vtalarm(ctl->server.timeout);
/* show user how many messages we downloaded */
if (outlevel > O_SILENT)
if (count == 0)
error(0, 0, "No mail from %s@%s",
ctl->remotename,
realname);
else
{
if (new != -1 && (count - new) > 0)
error(0, 0, "%d message%s (%d seen) from %s@%s.",
count, count > 1 ? "s" : "", count-new,
ctl->remotename,
realname);
else
error(0, 0, "%d message%s from %s@%s.", count, count > 1 ? "s" : "",
ctl->remotename,
realname);
}
/* we may need to get sizes in order to check message limits */
msgsizes = (int *)NULL;
if (!ctl->fetchall && proto->getsizes && ctl->limit)
{
msgsizes = (int *)alloca(sizeof(int) * count);
ok = (proto->getsizes)(sockfp, count, msgsizes);
if (ok != 0)
goto cleanUp;
vtalarm(ctl->server.timeout);
}
if (check_only)
{
if (new == -1 || ctl->fetchall)
new = count;
ok = ((new > 0) ? PS_SUCCESS : PS_NOMAIL);
goto cleanUp;
}
else if (count > 0)
{
/*
* What forces this code is that in POP3 and IMAP2BIS you can't
* fetch a message without having it marked `seen'. In IMAP4,
* on the other hand, you can (peek_capable is set to convey
* this).
*
* The result of being unable to peek is that if there's
* any kind of transient error (DNS lookup failure, or
* sendmail refusing delivery due to process-table limits)
* the message will be marked "seen" on the server without
* having been delivered. This is not a big problem if
* fetchmail is running in foreground, because the user
* will see a "skipped" message when it next runs and get
* clued in.
*
* But in daemon mode this leads to the message being silently
* ignored forever. This is not acceptable.
*
* We compensate for this by checking the error count from the
* previous pass and forcing all messages to be considered new
* if it's nonzero.
*/
int force_retrieval = !peek_capable && (ctl->errcount > 0);
ctl->errcount = 0;
/* read, forward, and delete messages */
for (num = 1; num <= count; num++)
{
int toolarge = msgsizes && (msgsizes[num-1] > ctl->limit);
int fetch_it = ctl->fetchall ||
(!toolarge && (force_retrieval || !(protocol->is_old && (protocol->is_old)(sockfp,ctl,num))));
/* we may want to reject this message if it's old */
if (!fetch_it)
{
if (outlevel > O_SILENT)
{
error_build("skipping message %d", num);
if (toolarge)
error_build(" (oversized, %d bytes)", msgsizes[num-1]);
}
}
else
{
/* request a message */
ok = (protocol->fetch)(sockfp, ctl, num, &len);
if (ok != 0)
goto cleanUp;
vtalarm(ctl->server.timeout);
if (outlevel > O_SILENT)
{
error_build("reading message %d", num);
if (len > 0)
error_build(" (%d bytes)", len);
if (outlevel == O_VERBOSE)
error_complete(0, 0, "");
else
error_build(" ");
}
/* read the message and ship it to the output sink */
ok = gen_readmsg(sockfp,
len,
protocol->delimited,
ctl,
realname);
if (ok != 0)
goto cleanUp;
vtalarm(ctl->server.timeout);
/* tell the server we got it OK and resynchronize */
if (protocol->trail)
{
ok = (protocol->trail)(sockfp, ctl, num);
if (ok != 0)
goto cleanUp;
vtalarm(ctl->server.timeout);
}
}
/*
* At this point in flow of control, either we've bombed
* on a protocol error or had delivery refused by the SMTP
* server (unlikely -- I've never seen it) or we've seen
* `accepted for delivery' and the message is shipped.
* It's safe to mark the message seen and delete it on the
* server now.
*/
/* maybe we delete this message now? */
if (protocol->delete
&& (fetch_it ? !ctl->keep : ctl->flush))
{
deletions++;
if (outlevel > O_SILENT)
error_complete(0, 0, " flushed");
ok = (protocol->delete)(sockfp, ctl, num);
if (ok != 0)
goto cleanUp;
vtalarm(ctl->server.timeout);
delete_str(&ctl->newsaved, num);
}
else if (outlevel > O_SILENT)
error_complete(0, 0, " not flushed");
/* perhaps this as many as we're ready to handle */
if (ctl->fetchlimit && ctl->fetchlimit <= num)
break;
}
ok = gen_transact(sockfp, protocol->exit_cmd);
if (ok == 0)
ok = PS_SUCCESS;
vtalarm(0);
fclose(sockfp);
goto closeUp;
}
else {
ok = gen_transact(sockfp, protocol->exit_cmd);
if (ok == 0)
ok = PS_NOMAIL;
vtalarm(0);
fclose(sockfp);
goto closeUp;
}
cleanUp:
vtalarm(ctl->server.timeout);
if (ok != 0 && ok != PS_SOCKET)
gen_transact(sockfp, protocol->exit_cmd);
vtalarm(0);
fclose(sockfp);
}
switch (ok)
{
case PS_SOCKET:
msg = "socket";
break;
case PS_AUTHFAIL:
msg = "authorization";
break;
case PS_SYNTAX:
msg = "missing or bad RFC822 header";
break;
case PS_IOERR:
msg = "MDA";
break;
case PS_ERROR:
msg = "client/server synchronization";
break;
case PS_PROTOCOL:
msg = "client/server protocol";
break;
case PS_SMTP:
msg = "SMTP transaction";
break;
case PS_UNDEFINED:
error(0, 0, "undefined");
break;
}
if (ok==PS_SOCKET || ok==PS_AUTHFAIL || ok==PS_SYNTAX || ok==PS_IOERR
|| ok==PS_ERROR || ok==PS_PROTOCOL || ok==PS_SMTP)
error(0, 0, "%s error while fetching from %s", msg, ctl->server.names->id);
closeUp:
signal(SIGVTALRM, sigsave);
return(ok);
}
#if defined(HAVE_STDARG_H)
void gen_send(FILE *sockfp, char *fmt, ... )
/* assemble command in printf(3) style and send to the server */
#else
void gen_send(sockfp, fmt, va_alist)
/* assemble command in printf(3) style and send to the server */
FILE *sockfp; /* socket to which server is connected */
const char *fmt; /* printf-style format */
va_dcl
#endif
{
char buf [POPBUFSIZE+1];
va_list ap;
if (protocol->tagged)
(void) sprintf(buf, "%s ", GENSYM);
else
buf[0] = '\0';
#if defined(HAVE_STDARG_H)
va_start(ap, fmt) ;
#else
va_start(ap);
#endif
vsprintf(buf + strlen(buf), fmt, ap);
va_end(ap);
strcat(buf, "\r\n");
SockWrite(buf, 1, strlen(buf), sockfp);
if (outlevel == O_VERBOSE)
{
char *cp;
if (shroud && (cp = strstr(buf, shroud)))
memset(cp, '*', strlen(shroud));
buf[strlen(buf)-1] = '\0';
error(0, 0, "%s> %s", protocol->name, buf);
}
}
#if defined(HAVE_STDARG_H)
int gen_transact(FILE *sockfp, char *fmt, ... )
/* assemble command in printf(3) style, send to server, accept a response */
#else
int gen_transact(sockfp, fmt, va_alist)
/* assemble command in printf(3) style, send to server, accept a response */
FILE *sockfp; /* socket to which server is connected */
const char *fmt; /* printf-style format */
va_dcl
#endif
{
int ok;
char buf [POPBUFSIZE+1];
va_list ap;
if (protocol->tagged)
(void) sprintf(buf, "%s ", GENSYM);
else
buf[0] = '\0';
#if defined(HAVE_STDARG_H)
va_start(ap, fmt) ;
#else
va_start(ap);
#endif
vsprintf(buf + strlen(buf), fmt, ap);
va_end(ap);
strcat(buf, "\r\n");
SockWrite(buf, 1, strlen(buf), sockfp);
if (outlevel == O_VERBOSE)
{
char *cp;
if (shroud && (cp = strstr(buf, shroud)))
memset(cp, '*', strlen(shroud));
buf[strlen(buf)-1] = '\0';
error(0, 0, "%s> %s", protocol->name, buf);
}
/* we presume this does its own response echoing */
ok = (protocol->parse_response)(sockfp, buf);
vtalarm(mytimeout);
return(ok);
}
/* driver.c ends here */
|