]> Pileus Git - ~andy/fetchmail/blob - sink.c
Bug fixes and internationalization improvements.
[~andy/fetchmail] / sink.c
1 /*
2  * sink.c -- forwarding/delivery support for fetchmail
3  *
4  * The interface of this module (open_sink(), stuff_line(), close_sink(),
5  * release_sink()) seals off the delivery logic from the protocol machine,
6  * so the latter won't have to care whether it's shipping to an [SL]MTP
7  * listener daemon or an MDA pipe.
8  *
9  * Copyright 1998 by Eric S. Raymond
10  * For license terms, see the file COPYING in this directory.
11  */
12
13 #include  "config.h"
14 #include  <stdio.h>
15 #include  <errno.h>
16 #include  <string.h>
17 #include  <signal.h>
18 #include  <time.h>
19 #ifdef HAVE_MEMORY_H
20 #include  <memory.h>
21 #endif /* HAVE_MEMORY_H */
22 #if defined(STDC_HEADERS)
23 #include  <stdlib.h>
24 #endif
25 #if defined(HAVE_UNISTD_H)
26 #include <unistd.h>
27 #endif
28 #if defined(HAVE_STDARG_H)
29 #include  <stdarg.h>
30 #else
31 #include  <varargs.h>
32 #endif
33 #include  <ctype.h>
34
35 #include  "fetchmail.h"
36 #include  "socket.h"
37 #include  "smtp.h"
38 #include  "i18n.h"
39
40 /* BSD portability hack...I know, this is an ugly place to put it */
41 #if !defined(SIGCHLD) && defined(SIGCLD)
42 #define SIGCHLD SIGCLD
43 #endif
44
45 /* makes the open_sink()/close_sink() pair non-reentrant */
46 static int lmtp_responses;
47
48 static int smtp_open(struct query *ctl)
49 /* try to open a socket to the appropriate SMTP server for this query */ 
50 {
51     /* maybe it's time to close the socket in order to force delivery */
52     if (NUM_NONZERO(ctl->batchlimit) && (ctl->smtp_socket != -1) && ++batchcount == ctl->batchlimit)
53     {
54         SockClose(ctl->smtp_socket);
55         ctl->smtp_socket = -1;
56         batchcount = 0;
57     }
58
59     /* if no socket to any SMTP host is already set up, try to open one */
60     if (ctl->smtp_socket == -1) 
61     {
62         /* 
63          * RFC 1123 requires that the domain name in HELO address is a
64          * "valid principal domain name" for the client host. If we're
65          * running in invisible mode, violate this with malice
66          * aforethought in order to make the Received headers and
67          * logging look right.
68          *
69          * In fact this code relies on the RFC1123 requirement that the
70          * SMTP listener must accept messages even if verification of the
71          * HELO name fails (RFC1123 section 5.2.5, paragraph 2).
72          *
73          * How we compute the true mailhost name to pass to the
74          * listener doesn't affect behavior on RFC1123- violating
75          * listeners that check for name match; we're going to lose
76          * on those anyway because we can never give them a name
77          * that matches the local machine fetchmail is running on.
78          * What it will affect is the listener's logging.
79          */
80         struct idlist   *idp;
81         const char *id_me = run.invisible ? ctl->server.truename : fetchmailhost;
82         int oldphase = phase;
83
84         errno = 0;
85
86         /*
87          * Run down the SMTP hunt list looking for a server that's up.
88          * Use both explicit hunt entries (value TRUE) and implicit 
89          * (default) ones (value FALSE).
90          */
91         oldphase = phase;
92         phase = LISTENER_WAIT;
93
94         set_timeout(ctl->server.timeout);
95         for (idp = ctl->smtphunt; idp; idp = idp->next)
96         {
97             char        *cp, *parsed_host;
98 #ifdef INET6_ENABLE 
99             char        *portnum = SMTP_PORT;
100 #else
101             int         portnum = SMTP_PORT;
102 #endif /* INET6_ENABLE */
103
104             xalloca(parsed_host, char *, strlen(idp->id) + 1);
105
106             ctl->smtphost = idp->id;  /* remember last host tried. */
107
108             strcpy(parsed_host, idp->id);
109             if ((cp = strrchr(parsed_host, '/')))
110             {
111                 *cp++ = 0;
112 #ifdef INET6_ENABLE 
113                 portnum = cp;
114 #else
115                 portnum = atoi(cp);
116 #endif /* INET6_ENABLE */
117             }
118
119             if ((ctl->smtp_socket = SockOpen(parsed_host,portnum,NULL,
120                                              ctl->server.plugout)) == -1)
121                 continue;
122
123             /* are we doing SMTP or LMTP? */
124             SMTP_setmode(ctl->listener);
125
126             /* first, probe for ESMTP */
127             if (SMTP_ok(ctl->smtp_socket) == SM_OK &&
128                     SMTP_ehlo(ctl->smtp_socket, id_me,
129                           &ctl->server.esmtp_options) == SM_OK)
130                break;  /* success */
131
132             /*
133              * RFC 1869 warns that some listeners hang up on a failed EHLO,
134              * so it's safest not to assume the socket will still be good.
135              */
136             SockClose(ctl->smtp_socket);
137             ctl->smtp_socket = -1;
138
139             /* if opening for ESMTP failed, try SMTP */
140             if ((ctl->smtp_socket = SockOpen(parsed_host,portnum,NULL,
141                                              ctl->server.plugout)) == -1)
142                 continue;
143
144             if (SMTP_ok(ctl->smtp_socket) == SM_OK && 
145                     SMTP_helo(ctl->smtp_socket, id_me) == SM_OK)
146                 break;  /* success */
147
148             SockClose(ctl->smtp_socket);
149             ctl->smtp_socket = -1;
150         }
151         set_timeout(0);
152         phase = oldphase;
153     }
154
155     /*
156      * RFC 1123 requires that the domain name part of the
157      * RCPT TO address be "canonicalized", that is a FQDN
158      * or MX but not a CNAME.  Some listeners (like exim)
159      * enforce this.  Now that we have the actual hostname,
160      * compute what we should canonicalize with.
161      */
162     ctl->destaddr = ctl->smtpaddress ? ctl->smtpaddress : ( ctl->smtphost ? ctl->smtphost : "localhost");
163
164     if (outlevel >= O_DEBUG && ctl->smtp_socket != -1)
165         report(stdout, _("forwarding to %s\n"), ctl->smtphost);
166
167     return(ctl->smtp_socket);
168 }
169
170 /* these are shared by open_sink and stuffline */
171 static FILE *sinkfp;
172 #ifndef HAVE_SIGACTION
173 static RETSIGTYPE (*sigchld)(int);
174 #else
175 static struct sigaction sa_old;
176 #endif /* HAVE_SIGACTION */
177
178 int stuffline(struct query *ctl, char *buf)
179 /* ship a line to the given control block's output sink (SMTP server or MDA) */
180 {
181     int n, oldphase;
182     char *last;
183
184     /* The line may contain NUL characters. Find the last char to use
185      * -- the real line termination is the sequence "\n\0".
186      */
187     last = buf;
188     while ((last += strlen(last)) && (last[-1] != '\n'))
189         last++;
190
191     /* fix message lines that have only \n termination (for qmail) */
192     if (ctl->forcecr)
193     {
194         if (last - 1 == buf || last[-2] != '\r')
195         {
196             last[-1] = '\r';
197             *last++  = '\n';
198             *last    = '\0';
199         }
200     }
201
202     oldphase = phase;
203     phase = FORWARDING_WAIT;
204
205     /*
206      * SMTP byte-stuffing.  We only do this if the protocol does *not*
207      * use .<CR><LF> as EOM.  If it does, the server will already have
208      * decorated any . lines it sends back up.
209      */
210     if (*buf == '.')
211     {
212         if (ctl->server.base_protocol->delimited)       /* server has already byte-stuffed */
213         {
214             if (ctl->mda)
215                 ++buf;
216             else
217                 /* writing to SMTP, leave the byte-stuffing in place */;
218         }
219         else /* if (!protocol->delimited)       -- not byte-stuffed already */
220         {
221             if (!ctl->mda)
222                 SockWrite(ctl->smtp_socket, buf, 1);    /* byte-stuff it */
223             else
224                 /* leave it alone */;
225         }
226     }
227
228     /* we may need to strip carriage returns */
229     if (ctl->stripcr)
230     {
231         char    *sp, *tp;
232
233         for (sp = tp = buf; sp < last; sp++)
234             if (*sp != '\r')
235                 *tp++ =  *sp;
236         *tp = '\0';
237         last = tp;
238     }
239
240     n = 0;
241     if (ctl->mda || ctl->bsmtp)
242         n = fwrite(buf, 1, last - buf, sinkfp);
243     else if (ctl->smtp_socket != -1)
244         n = SockWrite(ctl->smtp_socket, buf, last - buf);
245
246     phase = oldphase;
247
248     return(n);
249 }
250
251 static void sanitize(char *s)
252 /* replace unsafe shellchars by an _ */
253 {
254     const static char *ok_chars = " 1234567890!@%-_=+:,./abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
255     char *cp;
256
257     for (cp = s; *(cp += strspn(cp, ok_chars)); /* NO INCREMENT */)
258         *cp = '_';
259 }
260
261 static int send_bouncemail(struct query *ctl, struct msgblk *msg,
262                            int userclass, char *message,
263                            int nerrors, char *errors[])
264 /* bounce back an error report a la RFC 1892 */
265 {
266     char daemon_name[18 + HOSTLEN] = "FETCHMAIL-DAEMON@";
267     char boundary[BUFSIZ], *bounce_to;
268     int sock;
269
270     /* don't bounce  in reply to undeliverable bounces */
271     if (!msg->return_path[0] || strcmp(msg->return_path, "<>") == 0)
272         return(FALSE);
273
274     bounce_to = (run.bouncemail ? msg->return_path : run.postmaster);
275
276     SMTP_setmode(SMTP_MODE);
277
278     strcat(daemon_name, fetchmailhost);
279
280     /* we need only SMTP for this purpose */
281     if ((sock = SockOpen("localhost", SMTP_PORT, NULL, NULL)) == -1
282                 || SMTP_ok(sock) != SM_OK 
283                 || SMTP_helo(sock, "localhost") != SM_OK
284                 || SMTP_from(sock, daemon_name, (char *)NULL) != SM_OK
285                 || SMTP_rcpt(sock, bounce_to) != SM_OK
286                 || SMTP_data(sock) != SM_OK)
287         return(FALSE);
288
289     /* our first duty is to keep the sacred foo counters turning... */
290     sprintf(boundary, 
291             "foo-mani-padme-hum-%d-%d-%ld", 
292             (int)getpid(), (int)getppid(), time((time_t *)NULL));
293
294     if (outlevel >= O_VERBOSE)
295         report(stdout, _("SMTP: (bounce-message body)\n"));
296     else
297         /* this will usually go to sylog... */
298         report(stderr, _("mail from %s bounced to %s\n"),
299                daemon_name, bounce_to);
300
301     /* bouncemail headers */
302     SockPrintf(sock, "Return-Path: <>\r\n");
303     SockPrintf(sock, "From: %s\r\n", daemon_name);
304     SockPrintf(sock, "To: %s\r\n", bounce_to);
305     SockPrintf(sock, "MIME-Version: 1.0\r\n");
306     SockPrintf(sock, "Content-Type: multipart/report; report-type=delivery-status;\r\n\tboundary=\"%s\"\r\n", boundary);
307     SockPrintf(sock, "\r\n");
308
309     /* RFC1892 part 1 -- human-readable message */
310     SockPrintf(sock, "--%s\r\n", boundary); 
311     SockPrintf(sock,"Content-Type: text/plain\r\n");
312     SockPrintf(sock, "\r\n");
313     SockWrite(sock, message, strlen(message));
314     SockPrintf(sock, "\r\n");
315     SockPrintf(sock, "\r\n");
316
317     if (nerrors)
318     {
319         struct idlist   *idp;
320         int             nusers;
321         
322         /* RFC1892 part 2 -- machine-readable responses */
323         SockPrintf(sock, "--%s\r\n", boundary); 
324         SockPrintf(sock,"Content-Type: message/delivery-status\r\n");
325         SockPrintf(sock, "\r\n");
326         SockPrintf(sock, "Reporting-MTA: dns; %s\r\n", fetchmailhost);
327
328         nusers = 0;
329         for (idp = msg->recipients; idp; idp = idp->next)
330             if (idp->val.status.mark == userclass)
331             {
332                 char    *error;
333                 /* Minimum RFC1894 compliance + Diagnostic-Code field */
334                 SockPrintf(sock, "\r\n");
335                 SockPrintf(sock, "Final-Recipient: rfc822; %s\r\n", idp->id);
336                 SockPrintf(sock, "Last-Attempt-Date: %s\r\n", rfc822timestamp());
337                 SockPrintf(sock, "Action: failed\r\n");
338
339                 if (nerrors == 1)
340                     /* one error applies to all users */
341                     error = errors[0];
342                 else if (nerrors > nusers)
343                 {
344                     SockPrintf(sock, "Internal error: SMTP error count doesn't match number of recipients.\r\n");
345                     break;
346                 }
347                 else
348                     /* errors correspond 1-1 to selected users */
349                     error = errors[nusers++];
350                 
351                 if (strlen(error) > 9 && isdigit(error[4])
352                         && error[5] == '.' && isdigit(error[6])
353                         && error[7] == '.' && isdigit(error[8]))
354                     /* Enhanced status code available, use it */
355                     SockPrintf(sock, "Status: %5.5s\r\n", &(error[4]));
356                 else
357                     /* Enhanced status code not available, fake one */
358                     SockPrintf(sock, "Status: %c.0.0\r\n", error[0]);
359                 SockPrintf(sock, "Diagnostic-Code: %s\r\n", error);
360             }
361         SockPrintf(sock, "\r\n");
362     }
363
364     /* RFC1892 part 3 -- headers of undelivered message */
365     SockPrintf(sock, "--%s\r\n", boundary); 
366     SockPrintf(sock, "Content-Type: text/rfc822-headers\r\n");
367     SockPrintf(sock, "\r\n");
368     SockWrite(sock, msg->headers, strlen(msg->headers));
369     SockPrintf(sock, "\r\n");
370     SockPrintf(sock, "--%s--\r\n", boundary); 
371
372     if (SMTP_eom(sock) != SM_OK || SMTP_quit(sock))
373         return(FALSE);
374
375     SockClose(sock);
376
377     return(TRUE);
378 }
379
380 static int handle_smtp_report(struct query *ctl, struct msgblk *msg)
381 /* handle SMTP errors based on the content of SMTP_response */
382 /* return of PS_REFUSED deletes mail from the server; PS_TRANSIENT keeps it */
383 {
384     int smtperr = atoi(smtp_response);
385     char *responses[1];
386
387     xalloca(responses[0], char *, strlen(smtp_response)+1);
388     strcpy(responses[0], smtp_response);
389
390     SMTP_rset(ctl->smtp_socket);    /* stay on the safe site */
391
392     if (outlevel >= O_DEBUG)
393         report(stdout, _("Saved error is still %d\n"), smtperr);
394
395     /*
396      * Note: send_bouncemail message strings are not made subject
397      * to gettext translation because (a) they're going to be 
398      * embedded in a text/plain 7bit part, and (b) they're
399      * going to be associated with listener error-response
400      * messages, which are probably in English (none of the
401      * MTAs I know about are internationalized).
402      */
403     if (str_find(&ctl->antispam, smtperr))
404     {
405         /*
406          * SMTP listener explicitly refuses to deliver mail
407          * coming from this address, probably due to an
408          * anti-spam domain exclusion.  Respect this.  Don't
409          * try to ship the message, and don't prevent it from
410          * being deleted.  Default values:
411          *
412          * 571 = sendmail's "unsolicited email refused"
413          * 550 = exim's new antispam response (temporary)
414          * 501 = exim's old antispam response
415          * 554 = Postfix antispam response.
416          *
417          */
418         send_bouncemail(ctl, msg, XMIT_ACCEPT,
419                         "Our spam filter rejected this transaction.\r\n", 
420                         1, responses);
421         return(PS_REFUSED);
422     }
423
424     /*
425      * Suppress error message only if the response specifically 
426      * meant `excluded for policy reasons'.  We *should* see
427      * an error when the return code is less specific.
428      */
429     if (smtperr >= 400)
430         report(stderr, _("%cMTP error: %s\n"), 
431               ctl->listener,
432               smtp_response);
433
434     switch (smtperr)
435     {
436     case 552: /* message exceeds fixed maximum message size */
437         /*
438          * Permanent no-go condition on the
439          * ESMTP server.  Don't try to ship the message, 
440          * and allow it to be deleted.
441          */
442         send_bouncemail(ctl, msg, XMIT_ACCEPT,
443                         "This message was too large (SMTP error 552).\r\n", 
444                         1, responses);
445         return(run.bouncemail ? PS_REFUSED : PS_TRANSIENT);
446   
447     case 553: /* invalid sending domain */
448         /*
449          * These latter days 553 usually means a spammer is trying to
450          * cover his tracks.  We never bouncemail on these, because 
451          * (a) the return address is invalid by definition, and 
452          * (b) we wouldn't want spammers to get confirmation that
453          * this address is live, anyway.
454          */
455         send_bouncemail(ctl, msg, XMIT_ACCEPT,
456                         "Invalid address in MAIL FROM (SMTP error 553).\r\n", 
457                         1, responses);
458         return(PS_REFUSED);
459
460     default:
461         /* bounce non-transient errors back to the sender */
462         if (smtperr >= 500 && smtperr <= 599)
463             if (send_bouncemail(ctl, msg, XMIT_ACCEPT,
464                                 "General SMTP/ESMTP error.\r\n", 
465                                 1, responses))
466                 return(run.bouncemail ? PS_REFUSED : PS_TRANSIENT);
467         /*
468          * We're going to end up here on 4xx errors, like:
469          *
470          * 451: temporarily unable to identify sender (exim)
471          * 452: temporary out-of-queue-space condition on the ESMTP server.
472          *
473          * These are temporary errors.  Don't try to ship the message,
474          * and suppress deletion so it can be retried on a future
475          * retrieval cycle.
476          *
477          * Bouncemail *might* be appropriate here as a delay
478          * notification (note; if we ever add this, we must make
479          * sure the RFC1894 Action field is "delayed" rather thwn
480          * "failed").  But it's not really necessary because
481          * these are not actual failures, we're very likely to be
482          * able to recover on the next cycle.
483          */
484         return(PS_TRANSIENT);
485     }
486 }
487
488 int open_sink(struct query *ctl, struct msgblk *msg,
489               int *good_addresses, int *bad_addresses)
490 /* set up sinkfp to be an input sink we can ship a message to */
491 {
492     struct      idlist *idp;
493 #ifdef HAVE_SIGACTION
494     struct      sigaction sa_new;
495 #endif /* HAVE_SIGACTION */
496
497     *bad_addresses = *good_addresses = 0;
498
499     if (ctl->bsmtp)             /* dump to a BSMTP batch file */
500     {
501         if (strcmp(ctl->bsmtp, "-") == 0)
502             sinkfp = stdout;
503         else
504             sinkfp = fopen(ctl->bsmtp, "a");
505
506         /* see the ap computation under the SMTP branch */
507         fprintf(sinkfp, 
508                 "MAIL FROM: %s", (msg->return_path[0]) ? msg->return_path : user);
509
510         if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
511             fputs(" BODY=8BITMIME", sinkfp);
512         else if (ctl->mimemsg & MSG_IS_7BIT)
513             fputs(" BODY=7BIT", sinkfp);
514
515         /* exim's BSMTP processor does not handle SIZE */
516         /* fprintf(sinkfp, " SIZE=%d", msg->reallen); */
517
518         fprintf(sinkfp, "\r\n");
519
520         /*
521          * RFC 1123 requires that the domain name part of the
522          * RCPT TO address be "canonicalized", that is a FQDN
523          * or MX but not a CNAME.  Some listeners (like exim)
524          * enforce this.  Now that we have the actual hostname,
525          * compute what we should canonicalize with.
526          */
527         ctl->destaddr = ctl->smtpaddress ? ctl->smtpaddress : "localhost";
528
529         *bad_addresses = 0;
530         for (idp = msg->recipients; idp; idp = idp->next)
531             if (idp->val.status.mark == XMIT_ACCEPT)
532             {
533                 if (ctl->smtpname)
534                     fprintf(sinkfp, "RCPT TO: %s\r\n", ctl->smtpname);
535                 else if (strchr(idp->id, '@'))
536                     fprintf(sinkfp,
537                             "RCPT TO: %s\r\n", idp->id);
538                 else
539                     fprintf(sinkfp,
540                             "RCPT TO: %s@%s\r\n", idp->id, ctl->destaddr);
541                 *good_addresses = 0;
542             }
543
544         fputs("DATA\r\n", sinkfp);
545
546         if (ferror(sinkfp))
547         {
548             report(stderr, _("BSMTP file open or preamble write failed\n"));
549             return(PS_BSMTP);
550         }
551     }
552     else if (ctl->mda)          /* we have a declared MDA */
553     {
554         int     length = 0, fromlen = 0, nameslen = 0;
555         char    *names = NULL, *before, *after, *from = NULL;
556
557         ctl->destaddr = "localhost";
558
559         for (idp = msg->recipients; idp; idp = idp->next)
560             if (idp->val.status.mark == XMIT_ACCEPT)
561                 (*good_addresses)++;
562
563         length = strlen(ctl->mda);
564         before = xstrdup(ctl->mda);
565
566         /* get user addresses for %T (or %s for backward compatibility) */
567         if (strstr(before, "%s") || strstr(before, "%T"))
568         {
569             /*
570              * We go through this in order to be able to handle very
571              * long lists of users and (re)implement %s.
572              */
573             nameslen = 0;
574             for (idp = msg->recipients; idp; idp = idp->next)
575                 if ((idp->val.status.mark == XMIT_ACCEPT))
576                     nameslen += (strlen(idp->id) + 1);  /* string + ' ' */
577             if ((*good_addresses == 0))
578                 nameslen = strlen(run.postmaster);
579
580             names = (char *)xmalloc(nameslen + 1);      /* account for '\0' */
581             if (*good_addresses == 0)
582                 strcpy(names, run.postmaster);
583             else
584             {
585                 names[0] = '\0';
586                 for (idp = msg->recipients; idp; idp = idp->next)
587                     if (idp->val.status.mark == XMIT_ACCEPT)
588                     {
589                         strcat(names, idp->id);
590                         strcat(names, " ");
591                     }
592                 names[--nameslen] = '\0';       /* chop trailing space */
593             }
594
595             /* sanitize names in order to contain only harmless shell chars */
596             sanitize(names);
597         }
598
599         /* get From address for %F */
600         if (strstr(before, "%F"))
601         {
602             from = xstrdup(msg->return_path);
603
604             /* sanitize from in order to contain *only* harmless shell chars */
605             sanitize(from);
606
607             fromlen = strlen(from);
608         }
609
610         /* do we have to build an mda string? */
611         if (names || from) 
612         {               
613             char        *sp, *dp;
614
615             /* find length of resulting mda string */
616             sp = before;
617             while ((sp = strstr(sp, "%s"))) {
618                 length += nameslen - 2; /* subtract %s */
619                 sp += 2;
620             }
621             sp = before;
622             while ((sp = strstr(sp, "%T"))) {
623                 length += nameslen - 2; /* subtract %T */
624                 sp += 2;
625             }
626             sp = before;
627             while ((sp = strstr(sp, "%F"))) {
628                 length += fromlen - 2;  /* subtract %F */
629                 sp += 2;
630             }
631                 
632             after = xmalloc(length + 1);
633
634             /* copy mda source string to after, while expanding %[sTF] */
635             for (dp = after, sp = before; (*dp = *sp); dp++, sp++) {
636                 if (sp[0] != '%')       continue;
637
638                 /* need to expand? BTW, no here overflow, because in
639                 ** the worst case (end of string) sp[1] == '\0' */
640                 if (sp[1] == 's' || sp[1] == 'T') {
641                     strcpy(dp, names);
642                     dp += nameslen;
643                     sp++;       /* position sp over [sT] */
644                     dp--;       /* adjust dp */
645                 } else if (sp[1] == 'F') {
646                     strcpy(dp, from);
647                     dp += fromlen;
648                     sp++;       /* position sp over F */
649                     dp--;       /* adjust dp */
650                 }
651             }
652
653             if (names) {
654                 free(names);
655                 names = NULL;
656             }
657             if (from) {
658                 free(from);
659                 from = NULL;
660             }
661
662             free(before);
663
664             before = after;
665         }
666
667
668         if (outlevel >= O_DEBUG)
669             report(stdout, _("about to deliver with: %s\n"), before);
670
671 #ifdef HAVE_SETEUID
672         /*
673          * Arrange to run with user's permissions if we're root.
674          * This will initialize the ownership of any files the
675          * MDA creates properly.  (The seteuid call is available
676          * under all BSDs and Linux)
677          */
678         seteuid(ctl->uid);
679 #endif /* HAVE_SETEUID */
680
681         sinkfp = popen(before, "w");
682         free(before);
683         before = NULL;
684
685 #ifdef HAVE_SETEUID
686         /* this will fail quietly if we didn't start as root */
687         seteuid(0);
688 #endif /* HAVE_SETEUID */
689
690         if (!sinkfp)
691         {
692             report(stderr, _("MDA open failed\n"));
693             return(PS_IOERR);
694         }
695
696 #ifndef HAVE_SIGACTION
697         sigchld = signal(SIGCHLD, SIG_DFL);
698 #else
699         memset (&sa_new, 0, sizeof sa_new);
700         sigemptyset (&sa_new.sa_mask);
701         sa_new.sa_handler = SIG_DFL;
702         sigaction (SIGCHLD, &sa_new, &sa_old);
703 #endif /* HAVE_SIGACTION */
704     }
705     else /* forward to an SMTP or LMTP listener */
706     {
707         const char      *ap;
708         char            options[MSGBUFSIZE]; 
709         char            addr[HOSTLEN+USERNAMELEN+1];
710         char            **from_responses;
711         int             total_addresses;
712
713         /* build a connection to the SMTP listener */
714         if ((smtp_open(ctl) == -1))
715         {
716             report(stderr, _("%cMTP connect to %s failed\n"),
717                   ctl->listener,
718                   ctl->smtphost ? ctl->smtphost : "localhost");
719             return(PS_SMTP);
720         }
721
722         /*
723          * Compute ESMTP options.
724          */
725         options[0] = '\0';
726         if (ctl->server.esmtp_options & ESMTP_8BITMIME) {
727              if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
728                 strcpy(options, " BODY=8BITMIME");
729              else if (ctl->mimemsg & MSG_IS_7BIT)
730                 strcpy(options, " BODY=7BIT");
731         }
732
733         if ((ctl->server.esmtp_options & ESMTP_SIZE) && msg->reallen > 0)
734             sprintf(options + strlen(options), " SIZE=%d", msg->reallen);
735
736         /*
737          * Try to get the SMTP listener to take the Return-Path
738          * address as MAIL FROM.  If it won't, fall back on the
739          * remotename and mailserver host.  This won't affect replies,
740          * which use the header From address anyway; the MAIL FROM
741          * address is a place for the SMTP listener to send
742          * bouncemail.  The point is to guarantee a FQDN in the MAIL
743          * FROM line -- some SMTP listeners, like smail, become
744          * unhappy otherwise.
745          *
746          * RFC 1123 requires that the domain name part of the
747          * MAIL FROM address be "canonicalized", that is a
748          * FQDN or MX but not a CNAME.  We'll assume the Return-Path
749          * header is already in this form here (it certainly
750          * is if rewrite is on).  RFC 1123 is silent on whether
751          * a nonexistent hostname part is considered canonical.
752          *
753          * This is a potential problem if the MTAs further upstream
754          * didn't pass canonicalized From/Return-Path lines, *and* the
755          * local SMTP listener insists on them. 
756          */
757         if (!msg->return_path[0])
758         {
759             sprintf(addr, "%s@%s", ctl->remotename, ctl->server.truename);
760             ap = addr;
761         }
762         else if (strchr(msg->return_path, '@'))
763             ap = msg->return_path;
764         else            /* in case Return-Path existed but was local */
765         {
766             sprintf(addr, "%s@%s", msg->return_path, ctl->server.truename);
767             ap = addr;
768         }
769
770         if (SMTP_from(ctl->smtp_socket, ap, options) != SM_OK)
771             return(handle_smtp_report(ctl, msg));
772
773         /*
774          * Now list the recipient addressees
775          */
776         total_addresses = 0;
777         for (idp = msg->recipients; idp; idp = idp->next)
778             total_addresses++;
779         xalloca(from_responses, char **, sizeof(char *) * total_addresses);
780         for (idp = msg->recipients; idp; idp = idp->next)
781             if (idp->val.status.mark == XMIT_ACCEPT)
782             {
783                 if (strchr(idp->id, '@'))
784                     strcpy(addr, idp->id);
785                 else {
786                     if (ctl->smtpname) {
787 #ifdef HAVE_SNPRINTF
788                         snprintf(addr, sizeof(addr)-1, "%s", ctl->smtpname);
789 #else
790                         sprintf(addr, "%s", ctl->smtpname);
791 #endif /* HAVE_SNPRINTF */
792
793                     } else {
794 #ifdef HAVE_SNPRINTF
795                       snprintf(addr, sizeof(addr)-1, "%s@%s", idp->id, ctl->destaddr);
796 #else
797                       sprintf(addr, "%s@%s", idp->id, ctl->destaddr);
798 #endif /* HAVE_SNPRINTF */
799                     }
800                 }
801                 if (SMTP_rcpt(ctl->smtp_socket, addr) == SM_OK)
802                     (*good_addresses)++;
803                 else
804                 {
805                     char        errbuf[POPBUFSIZE];
806
807                     strcpy(errbuf, idp->id);
808                     strcat(errbuf, ": ");
809                     strcat(errbuf, smtp_response);
810
811                     xalloca(from_responses[*bad_addresses], 
812                             char *, 
813                             strlen(errbuf)+1);
814                     strcpy(from_responses[*bad_addresses], errbuf);
815
816                     (*bad_addresses)++;
817                     idp->val.status.mark = XMIT_RCPTBAD;
818                     if (outlevel >= O_VERBOSE)
819                         report(stderr, 
820                               _("%cMTP listener doesn't like recipient address `%s'\n"),
821                               ctl->listener, addr);
822                 }
823             }
824         if (*bad_addresses)
825             send_bouncemail(ctl, msg, XMIT_RCPTBAD,
826                             "Some addresses were rejected by the MDA fetchmail forwards to.\r\n",
827                             *bad_addresses, from_responses);
828         /*
829          * It's tempting to do local notification only if bouncemail was
830          * insufficient -- that is, to add && total_addresses > *bad_addresses
831          * to the test here.  The problem with this theory is that it would
832          * make initial diagnosis of a broken multidrop configuration very
833          * hard -- most single-recipient messages would just invisibly bounce.
834          */
835         if (!(*good_addresses)) 
836         {
837             if (strchr(run.postmaster, '@'))
838                 strcpy(addr, run.postmaster);
839             else
840             {
841 #ifdef HAVE_SNPRINTF
842                 snprintf(addr, sizeof(addr)-1, "%s@%s", run.postmaster, ctl->destaddr);
843 #else
844                 sprintf(addr, "%s@%s", run.postmaster, ctl->destaddr);
845 #endif /* HAVE_SNPRINTF */
846             }
847
848             if (SMTP_rcpt(ctl->smtp_socket, addr) != SM_OK)
849             {
850                 report(stderr, _("can't even send to %s!\n"), run.postmaster);
851                 SMTP_rset(ctl->smtp_socket);    /* required by RFC1870 */
852                 return(PS_SMTP);
853             }
854
855             if (outlevel >= O_VERBOSE)
856                 report(stderr, _("no address matches; forwarding to %s.\n"), run.postmaster);
857         }
858
859         /* 
860          * Tell the listener we're ready to send data.
861          * Some listeners (like zmailer) may return antispam errors here.
862          */
863         if (SMTP_data(ctl->smtp_socket) != SM_OK)
864             return(handle_smtp_report(ctl, msg));
865     }
866
867     /*
868      * We need to stash this away in order to know how many
869      * response lines to expect after the LMTP end-of-message.
870      */
871     lmtp_responses = *good_addresses;
872
873     return(PS_SUCCESS);
874 }
875
876 void release_sink(struct query *ctl)
877 /* release the per-message output sink, whether it's a pipe or SMTP socket */
878 {
879     if (ctl->bsmtp)
880         fclose(sinkfp);
881     else if (ctl->mda)
882     {
883         if (sinkfp)
884         {
885             pclose(sinkfp);
886             sinkfp = (FILE *)NULL;
887         }
888 #ifndef HAVE_SIGACTION
889         signal(SIGCHLD, sigchld);
890 #else
891         sigaction (SIGCHLD, &sa_old, NULL);
892 #endif /* HAVE_SIGACTION */
893     }
894 }
895
896 int close_sink(struct query *ctl, struct msgblk *msg, flag forward)
897 /* perform end-of-message actions on the current output sink */
898 {
899     if (ctl->mda)
900     {
901         int rc;
902
903         /* close the delivery pipe, we'll reopen before next message */
904         if (sinkfp)
905         {
906             rc = pclose(sinkfp);
907             sinkfp = (FILE *)NULL;
908         }
909         else
910             rc = 0;
911 #ifndef HAVE_SIGACTION
912         signal(SIGCHLD, sigchld);
913 #else
914         sigaction (SIGCHLD, &sa_old, NULL);
915 #endif /* HAVE_SIGACTION */
916         if (rc)
917         {
918             report(stderr, 
919                    _("MDA exited abnormally or returned nonzero status\n"));
920             return(FALSE);
921         }
922     }
923     else if (ctl->bsmtp)
924     {
925         int error;
926
927         /* implicit disk-full check here... */
928         fputs(".\r\n", sinkfp);
929         error = ferror(sinkfp);
930         if (strcmp(ctl->bsmtp, "-"))
931             if (fclose(sinkfp) == EOF) error = 1;
932         if (error)
933         {
934             report(stderr, 
935                    _("Message termination or close of BSMTP file failed\n"));
936             return(FALSE);
937         }
938     }
939     else if (forward)
940     {
941         /* write message terminator */
942         if (SMTP_eom(ctl->smtp_socket) != SM_OK)
943         {
944             if (handle_smtp_report(ctl, msg) != PS_REFUSED)
945                 return(FALSE);
946             else
947             {
948                 report(stderr, _("SMTP listener refused delivery\n"));
949                 return(TRUE);
950             }
951         }
952
953         /*
954          * If this is an SMTP connection, SMTP_eom() ate the response.
955          * But could be this is an LMTP connection, in which case we have to
956          * interpret either (a) a single 503 response meaning there
957          * were no successful RCPT TOs, or (b) a variable number of
958          * responses, one for each successful RCPT TO.  We need to send
959          * bouncemail on each failed response and then return TRUE anyway,
960          * otherwise the message will get left in the queue and resent
961          * to people who got it the first time.
962          */
963         if (ctl->listener == LMTP_MODE)
964         {
965             if (lmtp_responses == 0)
966             {
967                 SMTP_ok(ctl->smtp_socket); 
968
969                 /*
970                  * According to RFC2033, 503 is the only legal response
971                  * if no RCPT TO commands succeeded.  No error recovery
972                  * is really possible here, as we have no idea what
973                  * insane thing the listener might be doing if it doesn't
974                  * comply.
975                  */
976                 if (atoi(smtp_response) == 503)
977                     report(stderr, _("LMTP delivery error on EOM\n"));
978                 else
979                     report(stderr,
980                           _("Unexpected non-503 response to LMTP EOM: %s\n"),
981                           smtp_response);
982
983                 /*
984                  * It's not completely clear what to do here.  We choose to
985                  * interpret delivery failure here as a transient error, 
986                  * the same way SMTP delivery failure is handled.  If we're
987                  * wrong, an undead message will get stuck in the queue.
988                  */
989                 return(FALSE);
990             }
991             else
992             {
993                 int     i, errors;
994                 char    **responses;
995
996                 /* eat the RFC2033-required responses, saving errors */ 
997                 xalloca(responses, char **, sizeof(char *) * lmtp_responses);
998                 for (errors = i = 0; i < lmtp_responses; i++)
999                 {
1000                     if (SMTP_ok(ctl->smtp_socket) == SM_OK)
1001                         responses[i] = (char *)NULL;
1002                     else
1003                     {
1004                         xalloca(responses[errors], 
1005                                 char *, 
1006                                 strlen(smtp_response)+1);
1007                         strcpy(responses[errors], smtp_response);
1008                         errors++;
1009                     }
1010                 }
1011
1012                 if (errors == 0)
1013                     return(TRUE);       /* all deliveries succeeded */
1014                 else
1015                     /*
1016                      * One or more deliveries failed.
1017                      * If we can bounce a failures list back to the
1018                      * sender, and the postmaster does not want to
1019                      * deal with the bounces return TRUE, deleting the
1020                      * message from the server so it won't be
1021                      * re-forwarded on subsequent poll cycles.
1022                      */
1023                   return(send_bouncemail(ctl, msg, XMIT_ACCEPT,
1024                                          "LSMTP partial delivery failure.\r\n",
1025                                          errors, responses));
1026             }
1027         }
1028     }
1029
1030     return(TRUE);
1031 }
1032
1033 int open_warning_by_mail(struct query *ctl, struct msgblk *msg)
1034 /* set up output sink for a mailed warning to calling user */
1035 {
1036     int good, bad;
1037
1038     /*
1039      * Dispatching warning email is a little complicated.  The problem is
1040      * that we have to deal with three distinct cases:
1041      *
1042      * 1. Single-drop running from user account.  Warning mail should
1043      * go to the local name for which we're collecting (coincides
1044      * with calling user).
1045      *
1046      * 2. Single-drop running from root or other privileged ID, with rc
1047      * file generated on the fly (Ken Estes's weird setup...)  Mail
1048      * should go to the local name for which we're collecting (does not 
1049      * coincide with calling user).
1050      * 
1051      * 3. Multidrop.  Mail must go to postmaster.  We leave the recipients
1052      * member null so this message will fall through to run.postmaster.
1053      *
1054      * The zero in the reallen element means we won't pass a SIZE
1055      * option to ESMTP; the message length would be more trouble than
1056      * it's worth to compute.
1057      */
1058     struct msgblk reply = {NULL, NULL, "FETCHMAIL-DAEMON@", 0};
1059
1060     strcat(reply.return_path, fetchmailhost);
1061
1062     if (!MULTIDROP(ctl))                /* send to calling user */
1063     {
1064         int status;
1065
1066         save_str(&reply.recipients, ctl->localnames->id, XMIT_ACCEPT);
1067         status = open_sink(ctl, &reply, &good, &bad);
1068         free_str_list(&reply.recipients);
1069         return(status);
1070     }
1071     else                                /* send to postmaster  */
1072         return(open_sink(ctl, &reply, &good, &bad));
1073 }
1074
1075 #if defined(HAVE_STDARG_H)
1076 void stuff_warning(struct query *ctl, const char *fmt, ... )
1077 #else
1078 void stuff_warning(struct query *ctl, fmt, va_alist)
1079 struct query *ctl;
1080 const char *fmt;        /* printf-style format */
1081 va_dcl
1082 #endif
1083 /* format and ship a warning message line by mail */
1084 {
1085     char        buf[POPBUFSIZE];
1086     va_list ap;
1087
1088     /*
1089      * stuffline() requires its input to be writeable (for CR stripping),
1090      * so we needed to copy the message to a writeable buffer anyway in
1091      * case it was a string constant.  We make a virtue of that necessity
1092      * here by supporting stdargs/varargs.
1093      */
1094 #if defined(HAVE_STDARG_H)
1095     va_start(ap, fmt) ;
1096 #else
1097     va_start(ap);
1098 #endif
1099 #ifdef HAVE_VSNPRINTF
1100     vsnprintf(buf, sizeof(buf), fmt, ap);
1101 #else
1102     vsprintf(buf, fmt, ap);
1103 #endif
1104     va_end(ap);
1105
1106     strcat(buf, "\r\n");
1107
1108     stuffline(ctl, buf);
1109 }
1110
1111 void close_warning_by_mail(struct query *ctl, struct msgblk *msg)
1112 /* sign and send mailed warnings */
1113 {
1114     stuff_warning(ctl, _("--\r\n\t\t\t\tThe Fetchmail Daemon\r\n"));
1115     close_sink(ctl, msg, TRUE);
1116 }
1117
1118 /* sink.c ends here */