]> Pileus Git - ~andy/fetchmail/blob - sink.c
519fc2bd67a981278ce8ca01ab25e75aa0127ccb
[~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], *ts, *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     ts = rfc822timestamp();
295
296     if (outlevel >= O_VERBOSE)
297         report(stdout, "SMTP: (bounce-message body)\n");
298     else
299         /* this will usually go to sylog... */
300         report(stderr, "mail from %s bounced to %s\n",
301                daemon_name, bounce_to);
302
303     /* bouncemail headers */
304     SockPrintf(sock, "Return-Path: <>\r\n");
305     SockPrintf(sock, "From: %s\r\n", daemon_name);
306     SockPrintf(sock, "To: %s\r\n", bounce_to);
307     SockPrintf(sock, "MIME-Version: 1.0\r\n");
308     SockPrintf(sock, "Content-Type: multipart/report; report-type=delivery-status;\r\n\tboundary=\"%s\"\r\n", boundary);
309     SockPrintf(sock, "\r\n");
310
311     /* RFC1892 part 1 -- human-readable message */
312     SockPrintf(sock, "--%s\r\n", boundary); 
313     SockPrintf(sock,"Content-Type: text/plain\r\n");
314     SockPrintf(sock, "\r\n");
315     SockWrite(sock, message, strlen(message));
316     SockPrintf(sock, "\r\n");
317     SockPrintf(sock, "\r\n");
318
319     if (nerrors)
320     {
321         struct idlist   *idp;
322         int             nusers;
323         
324         /* RFC1892 part 2 -- machine-readable responses */
325         SockPrintf(sock, "--%s\r\n", boundary); 
326         SockPrintf(sock,"Content-Type: message/delivery-status\r\n");
327         SockPrintf(sock, "\r\n");
328         SockPrintf(sock, "Reporting-MTA: dns; %s\r\n", fetchmailhost);
329
330         nusers = 0;
331         for (idp = msg->recipients; idp; idp = idp->next)
332             if (idp->val.status.mark == userclass)
333             {
334                 char    *error;
335                 /* Minimum RFC1894 compliance + Diagnostic-Code field */
336                 SockPrintf(sock, "\r\n");
337                 SockPrintf(sock, "Final-Recipient: rfc822; %s\r\n", idp->id);
338                 SockPrintf(sock, "Last-Attempt-Date: %s\r\n", ts);
339                 SockPrintf(sock, "Action: failed\r\n");
340
341                 if (nerrors == 1)
342                     /* one error applies to all users */
343                     error = errors[0];
344                 else if (nerrors > nusers)
345                 {
346                     SockPrintf(sock, "Internal error: SMTP error count doesn't match number of recipients.\r\n");
347                     break;
348                 }
349                 else
350                     /* errors correspond 1-1 to selected users */
351                     error = errors[nusers++];
352                 
353                 if (strlen(error) > 9 && isdigit(error[4])
354                         && error[5] == '.' && isdigit(error[6])
355                         && error[7] == '.' && isdigit(error[8]))
356                     /* Enhanced status code available, use it */
357                     SockPrintf(sock, "Status: %5.5s\r\n", &(error[4]));
358                 else
359                     /* Enhanced status code not available, fake one */
360                     SockPrintf(sock, "Status: %c.0.0\r\n", error[0]);
361                 SockPrintf(sock, "Diagnostic-Code: %s\r\n", error);
362             }
363         SockPrintf(sock, "\r\n");
364     }
365
366     /* RFC1892 part 3 -- headers of undelivered message */
367     SockPrintf(sock, "--%s\r\n", boundary); 
368     SockPrintf(sock, "Content-Type: text/rfc822-headers\r\n");
369     SockPrintf(sock, "\r\n");
370     SockWrite(sock, msg->headers, strlen(msg->headers));
371     SockPrintf(sock, "\r\n");
372     SockPrintf(sock, "--%s--\r\n", boundary); 
373
374     if (SMTP_eom(sock) != SM_OK || SMTP_quit(sock))
375         return(FALSE);
376
377     SockClose(sock);
378
379     return(TRUE);
380 }
381
382 static int handle_smtp_report(struct query *ctl, struct msgblk *msg)
383 /* handle SMTP errors based on the content of SMTP_response */
384 /* return of PS_REFUSED deletes mail from the server; PS_TRANSIENT keeps it */
385 {
386     int smtperr = atoi(smtp_response);
387     char *responses[1];
388
389     xalloca(responses[0], char *, strlen(smtp_response)+1);
390     strcpy(responses[0], smtp_response);
391
392     SMTP_rset(ctl->smtp_socket);    /* stay on the safe site */
393
394     if (outlevel >= O_DEBUG)
395         report(stdout, "Saved error is still %d\n", smtperr);
396
397     /*
398      * Note: send_bouncemail message strings are not made subject
399      * to gettext translation because (a) they're going to be 
400      * embedded in a text/plain 7bit part, and (b) they're
401      * going to be associated with listener error-response
402      * messages, which are probably in English (none of the
403      * MTAs I know about are internationalized).
404      */
405     if (str_find(&ctl->antispam, smtperr))
406     {
407         /*
408          * SMTP listener explicitly refuses to deliver mail
409          * coming from this address, probably due to an
410          * anti-spam domain exclusion.  Respect this.  Don't
411          * try to ship the message, and don't prevent it from
412          * being deleted.  Default values:
413          *
414          * 571 = sendmail's "unsolicited email refused"
415          * 550 = exim's new antispam response (temporary)
416          * 501 = exim's old antispam response
417          * 554 = Postfix antispam response.
418          *
419          */
420         send_bouncemail(ctl, msg, XMIT_ACCEPT,
421                         "Our spam filter rejected this transaction.\r\n", 
422                         1, responses);
423         return(PS_REFUSED);
424     }
425
426     /*
427      * Suppress error message only if the response specifically 
428      * meant `excluded for policy reasons'.  We *should* see
429      * an error when the return code is less specific.
430      */
431     if (smtperr >= 400)
432         report(stderr, _("%cMTP error: %s\n"), 
433               ctl->listener,
434               smtp_response);
435
436     switch (smtperr)
437     {
438     case 552: /* message exceeds fixed maximum message size */
439         /*
440          * Permanent no-go condition on the
441          * ESMTP server.  Don't try to ship the message, 
442          * and allow it to be deleted.
443          */
444         send_bouncemail(ctl, msg, XMIT_ACCEPT,
445                         "This message was too large (SMTP error 552).\r\n", 
446                         1, responses);
447         return(run.bouncemail ? PS_REFUSED : PS_TRANSIENT);
448   
449     case 553: /* invalid sending domain */
450         /*
451          * These latter days 553 usually means a spammer is trying to
452          * cover his tracks.  We never bouncemail on these, because 
453          * (a) the return address is invalid by definition, and 
454          * (b) we wouldn't want spammers to get confirmation that
455          * this address is live, anyway.
456          */
457         send_bouncemail(ctl, msg, XMIT_ACCEPT,
458                         "Invalid address in MAIL FROM (SMTP error 553).\r\n", 
459                         1, responses);
460         return(PS_REFUSED);
461
462     default:
463         /* bounce non-transient errors back to the sender */
464         if (smtperr >= 500 && smtperr <= 599)
465             if (send_bouncemail(ctl, msg, XMIT_ACCEPT,
466                                 "General SMTP/ESMTP error.\r\n", 
467                                 1, responses))
468                 return(run.bouncemail ? PS_REFUSED : PS_TRANSIENT);
469         /*
470          * We're going to end up here on 4xx errors, like:
471          *
472          * 451: temporarily unable to identify sender (exim)
473          * 452: temporary out-of-queue-space condition on the ESMTP server.
474          *
475          * These are temporary errors.  Don't try to ship the message,
476          * and suppress deletion so it can be retried on a future
477          * retrieval cycle.
478          *
479          * Bouncemail *might* be appropriate here as a delay
480          * notification (note; if we ever add this, we must make
481          * sure the RFC1894 Action field is "delayed" rather thwn
482          * "failed").  But it's not really necessary because
483          * these are not actual failures, we're very likely to be
484          * able to recover on the next cycle.
485          */
486         return(PS_TRANSIENT);
487     }
488 }
489
490 int open_sink(struct query *ctl, struct msgblk *msg,
491               int *good_addresses, int *bad_addresses)
492 /* set up sinkfp to be an input sink we can ship a message to */
493 {
494     struct      idlist *idp;
495 #ifdef HAVE_SIGACTION
496     struct      sigaction sa_new;
497 #endif /* HAVE_SIGACTION */
498
499     *bad_addresses = *good_addresses = 0;
500
501     if (ctl->bsmtp)             /* dump to a BSMTP batch file */
502     {
503         if (strcmp(ctl->bsmtp, "-") == 0)
504             sinkfp = stdout;
505         else
506             sinkfp = fopen(ctl->bsmtp, "a");
507
508         /* see the ap computation under the SMTP branch */
509         fprintf(sinkfp, 
510                 "MAIL FROM: %s", (msg->return_path[0]) ? msg->return_path : user);
511
512         if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
513             fputs(" BODY=8BITMIME", sinkfp);
514         else if (ctl->mimemsg & MSG_IS_7BIT)
515             fputs(" BODY=7BIT", sinkfp);
516
517         /* exim's BSMTP processor does not handle SIZE */
518         /* fprintf(sinkfp, " SIZE=%d", msg->reallen); */
519
520         fprintf(sinkfp, "\r\n");
521
522         /*
523          * RFC 1123 requires that the domain name part of the
524          * RCPT TO address be "canonicalized", that is a FQDN
525          * or MX but not a CNAME.  Some listeners (like exim)
526          * enforce this.  Now that we have the actual hostname,
527          * compute what we should canonicalize with.
528          */
529         ctl->destaddr = ctl->smtpaddress ? ctl->smtpaddress : "localhost";
530
531         *bad_addresses = 0;
532         for (idp = msg->recipients; idp; idp = idp->next)
533             if (idp->val.status.mark == XMIT_ACCEPT)
534             {
535                 if (ctl->smtpname)
536                     fprintf(sinkfp, "RCPT TO: %s\r\n", ctl->smtpname);
537                 else if (strchr(idp->id, '@'))
538                     fprintf(sinkfp,
539                             "RCPT TO: %s\r\n", idp->id);
540                 else
541                     fprintf(sinkfp,
542                             "RCPT TO: %s@%s\r\n", idp->id, ctl->destaddr);
543                 *good_addresses = 0;
544             }
545
546         fputs("DATA\r\n", sinkfp);
547
548         if (ferror(sinkfp))
549         {
550             report(stderr, _("BSMTP file open or preamble write failed\n"));
551             return(PS_BSMTP);
552         }
553     }
554     else if (ctl->mda)          /* we have a declared MDA */
555     {
556         int     length = 0, fromlen = 0, nameslen = 0;
557         char    *names = NULL, *before, *after, *from = NULL;
558
559         ctl->destaddr = "localhost";
560
561         for (idp = msg->recipients; idp; idp = idp->next)
562             if (idp->val.status.mark == XMIT_ACCEPT)
563                 (*good_addresses)++;
564
565         length = strlen(ctl->mda);
566         before = xstrdup(ctl->mda);
567
568         /* get user addresses for %T (or %s for backward compatibility) */
569         if (strstr(before, "%s") || strstr(before, "%T"))
570         {
571             /*
572              * We go through this in order to be able to handle very
573              * long lists of users and (re)implement %s.
574              */
575             nameslen = 0;
576             for (idp = msg->recipients; idp; idp = idp->next)
577                 if ((idp->val.status.mark == XMIT_ACCEPT))
578                     nameslen += (strlen(idp->id) + 1);  /* string + ' ' */
579             if ((*good_addresses == 0))
580                 nameslen = strlen(run.postmaster);
581
582             names = (char *)xmalloc(nameslen + 1);      /* account for '\0' */
583             if (*good_addresses == 0)
584                 strcpy(names, run.postmaster);
585             else
586             {
587                 names[0] = '\0';
588                 for (idp = msg->recipients; idp; idp = idp->next)
589                     if (idp->val.status.mark == XMIT_ACCEPT)
590                     {
591                         strcat(names, idp->id);
592                         strcat(names, " ");
593                     }
594                 names[--nameslen] = '\0';       /* chop trailing space */
595             }
596
597             /* sanitize names in order to contain only harmless shell chars */
598             sanitize(names);
599         }
600
601         /* get From address for %F */
602         if (strstr(before, "%F"))
603         {
604             from = xstrdup(msg->return_path);
605
606             /* sanitize from in order to contain *only* harmless shell chars */
607             sanitize(from);
608
609             fromlen = strlen(from);
610         }
611
612         /* do we have to build an mda string? */
613         if (names || from) 
614         {               
615             char        *sp, *dp;
616
617             /* find length of resulting mda string */
618             sp = before;
619             while ((sp = strstr(sp, "%s"))) {
620                 length += nameslen - 2; /* subtract %s */
621                 sp += 2;
622             }
623             sp = before;
624             while ((sp = strstr(sp, "%T"))) {
625                 length += nameslen - 2; /* subtract %T */
626                 sp += 2;
627             }
628             sp = before;
629             while ((sp = strstr(sp, "%F"))) {
630                 length += fromlen - 2;  /* subtract %F */
631                 sp += 2;
632             }
633                 
634             after = xmalloc(length + 1);
635
636             /* copy mda source string to after, while expanding %[sTF] */
637             for (dp = after, sp = before; (*dp = *sp); dp++, sp++) {
638                 if (sp[0] != '%')       continue;
639
640                 /* need to expand? BTW, no here overflow, because in
641                 ** the worst case (end of string) sp[1] == '\0' */
642                 if (sp[1] == 's' || sp[1] == 'T') {
643                     strcpy(dp, names);
644                     dp += nameslen;
645                     sp++;       /* position sp over [sT] */
646                     dp--;       /* adjust dp */
647                 } else if (sp[1] == 'F') {
648                     strcpy(dp, from);
649                     dp += fromlen;
650                     sp++;       /* position sp over F */
651                     dp--;       /* adjust dp */
652                 }
653             }
654
655             if (names) {
656                 free(names);
657                 names = NULL;
658             }
659             if (from) {
660                 free(from);
661                 from = NULL;
662             }
663
664             free(before);
665
666             before = after;
667         }
668
669
670         if (outlevel >= O_DEBUG)
671             report(stdout, _("about to deliver with: %s\n"), before);
672
673 #ifdef HAVE_SETEUID
674         /*
675          * Arrange to run with user's permissions if we're root.
676          * This will initialize the ownership of any files the
677          * MDA creates properly.  (The seteuid call is available
678          * under all BSDs and Linux)
679          */
680         seteuid(ctl->uid);
681 #endif /* HAVE_SETEUID */
682
683         sinkfp = popen(before, "w");
684         free(before);
685         before = NULL;
686
687 #ifdef HAVE_SETEUID
688         /* this will fail quietly if we didn't start as root */
689         seteuid(0);
690 #endif /* HAVE_SETEUID */
691
692         if (!sinkfp)
693         {
694             report(stderr, _("MDA open failed\n"));
695             return(PS_IOERR);
696         }
697
698 #ifndef HAVE_SIGACTION
699         sigchld = signal(SIGCHLD, SIG_DFL);
700 #else
701         memset (&sa_new, 0, sizeof sa_new);
702         sigemptyset (&sa_new.sa_mask);
703         sa_new.sa_handler = SIG_DFL;
704         sigaction (SIGCHLD, &sa_new, &sa_old);
705 #endif /* HAVE_SIGACTION */
706     }
707     else /* forward to an SMTP or LMTP listener */
708     {
709         const char      *ap;
710         char            options[MSGBUFSIZE]; 
711         char            addr[HOSTLEN+USERNAMELEN+1];
712         char            **from_responses;
713         int             total_addresses;
714
715         /* build a connection to the SMTP listener */
716         if ((smtp_open(ctl) == -1))
717         {
718             report(stderr, _("%cMTP connect to %s failed\n"),
719                   ctl->listener,
720                   ctl->smtphost ? ctl->smtphost : "localhost");
721             return(PS_SMTP);
722         }
723
724         /*
725          * Compute ESMTP options.
726          */
727         options[0] = '\0';
728         if (ctl->server.esmtp_options & ESMTP_8BITMIME) {
729              if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
730                 strcpy(options, " BODY=8BITMIME");
731              else if (ctl->mimemsg & MSG_IS_7BIT)
732                 strcpy(options, " BODY=7BIT");
733         }
734
735         if ((ctl->server.esmtp_options & ESMTP_SIZE) && msg->reallen > 0)
736             sprintf(options + strlen(options), " SIZE=%d", msg->reallen);
737
738         /*
739          * Try to get the SMTP listener to take the Return-Path
740          * address as MAIL FROM.  If it won't, fall back on the
741          * remotename and mailserver host.  This won't affect replies,
742          * which use the header From address anyway; the MAIL FROM
743          * address is a place for the SMTP listener to send
744          * bouncemail.  The point is to guarantee a FQDN in the MAIL
745          * FROM line -- some SMTP listeners, like smail, become
746          * unhappy otherwise.
747          *
748          * RFC 1123 requires that the domain name part of the
749          * MAIL FROM address be "canonicalized", that is a
750          * FQDN or MX but not a CNAME.  We'll assume the Return-Path
751          * header is already in this form here (it certainly
752          * is if rewrite is on).  RFC 1123 is silent on whether
753          * a nonexistent hostname part is considered canonical.
754          *
755          * This is a potential problem if the MTAs further upstream
756          * didn't pass canonicalized From/Return-Path lines, *and* the
757          * local SMTP listener insists on them. 
758          */
759         if (!msg->return_path[0])
760         {
761             sprintf(addr, "%s@%s", ctl->remotename, ctl->server.truename);
762             ap = addr;
763         }
764         else if (strchr(msg->return_path, '@'))
765             ap = msg->return_path;
766         else            /* in case Return-Path existed but was local */
767         {
768             sprintf(addr, "%s@%s", msg->return_path, ctl->server.truename);
769             ap = addr;
770         }
771
772         if (SMTP_from(ctl->smtp_socket, ap, options) != SM_OK)
773             return(handle_smtp_report(ctl, msg));
774
775         /*
776          * Now list the recipient addressees
777          */
778         total_addresses = 0;
779         for (idp = msg->recipients; idp; idp = idp->next)
780             total_addresses++;
781         xalloca(from_responses, char **, sizeof(char *) * total_addresses);
782         for (idp = msg->recipients; idp; idp = idp->next)
783             if (idp->val.status.mark == XMIT_ACCEPT)
784             {
785                 if (strchr(idp->id, '@'))
786                     strcpy(addr, idp->id);
787                 else {
788                     if (ctl->smtpname) {
789 #ifdef HAVE_SNPRINTF
790                         snprintf(addr, sizeof(addr)-1, "%s", ctl->smtpname);
791 #else
792                         sprintf(addr, "%s", ctl->smtpname);
793 #endif /* HAVE_SNPRINTF */
794
795                     } else {
796 #ifdef HAVE_SNPRINTF
797                       snprintf(addr, sizeof(addr)-1, "%s@%s", idp->id, ctl->destaddr);
798 #else
799                       sprintf(addr, "%s@%s", idp->id, ctl->destaddr);
800 #endif /* HAVE_SNPRINTF */
801                     }
802                 }
803                 if (SMTP_rcpt(ctl->smtp_socket, addr) == SM_OK)
804                     (*good_addresses)++;
805                 else
806                 {
807                     char        errbuf[POPBUFSIZE];
808
809                     strcpy(errbuf, idp->id);
810                     strcat(errbuf, ": ");
811                     strcat(errbuf, smtp_response);
812
813                     xalloca(from_responses[*bad_addresses], 
814                             char *, 
815                             strlen(errbuf)+1);
816                     strcpy(from_responses[*bad_addresses], errbuf);
817
818                     (*bad_addresses)++;
819                     idp->val.status.mark = XMIT_RCPTBAD;
820                     if (outlevel >= O_VERBOSE)
821                         report(stderr, 
822                               _("%cMTP listener doesn't like recipient address `%s'\n"),
823                               ctl->listener, addr);
824                 }
825             }
826         if (*bad_addresses)
827             send_bouncemail(ctl, msg, XMIT_RCPTBAD,
828                             "Some addresses were rejected by the MDA fetchmail forwards to.\r\n",
829                             *bad_addresses, from_responses);
830         /*
831          * It's tempting to do local notification only if bouncemail was
832          * insufficient -- that is, to add && total_addresses > *bad_addresses
833          * to the test here.  The problem with this theory is that it would
834          * make initial diagnosis of a broken multidrop configuration very
835          * hard -- most single-recipient messages would just invisibly bounce.
836          */
837         if (!(*good_addresses)) 
838         {
839             if (strchr(run.postmaster, '@'))
840                 strcpy(addr, run.postmaster);
841             else
842             {
843 #ifdef HAVE_SNPRINTF
844                 snprintf(addr, sizeof(addr)-1, "%s@%s", run.postmaster, ctl->destaddr);
845 #else
846                 sprintf(addr, "%s@%s", run.postmaster, ctl->destaddr);
847 #endif /* HAVE_SNPRINTF */
848             }
849
850             if (SMTP_rcpt(ctl->smtp_socket, addr) != SM_OK)
851             {
852                 report(stderr, _("can't even send to %s!\n"), run.postmaster);
853                 SMTP_rset(ctl->smtp_socket);    /* required by RFC1870 */
854                 return(PS_SMTP);
855             }
856
857             if (outlevel >= O_VERBOSE)
858                 report(stderr, _("no address matches; forwarding to %s.\n"), run.postmaster);
859         }
860
861         /* 
862          * Tell the listener we're ready to send data.
863          * Some listeners (like zmailer) may return antispam errors here.
864          */
865         if (SMTP_data(ctl->smtp_socket) != SM_OK)
866             return(handle_smtp_report(ctl, msg));
867     }
868
869     /*
870      * We need to stash this away in order to know how many
871      * response lines to expect after the LMTP end-of-message.
872      */
873     lmtp_responses = *good_addresses;
874
875     return(PS_SUCCESS);
876 }
877
878 void release_sink(struct query *ctl)
879 /* release the per-message output sink, whether it's a pipe or SMTP socket */
880 {
881     if (ctl->bsmtp)
882         fclose(sinkfp);
883     else if (ctl->mda)
884     {
885         if (sinkfp)
886         {
887             pclose(sinkfp);
888             sinkfp = (FILE *)NULL;
889         }
890 #ifndef HAVE_SIGACTION
891         signal(SIGCHLD, sigchld);
892 #else
893         sigaction (SIGCHLD, &sa_old, NULL);
894 #endif /* HAVE_SIGACTION */
895     }
896 }
897
898 int close_sink(struct query *ctl, struct msgblk *msg, flag forward)
899 /* perform end-of-message actions on the current output sink */
900 {
901     if (ctl->mda)
902     {
903         int rc;
904
905         /* close the delivery pipe, we'll reopen before next message */
906         if (sinkfp)
907         {
908             rc = pclose(sinkfp);
909             sinkfp = (FILE *)NULL;
910         }
911         else
912             rc = 0;
913 #ifndef HAVE_SIGACTION
914         signal(SIGCHLD, sigchld);
915 #else
916         sigaction (SIGCHLD, &sa_old, NULL);
917 #endif /* HAVE_SIGACTION */
918         if (rc)
919         {
920             report(stderr, 
921                    _("MDA exited abnormally or returned nonzero status\n"));
922             return(FALSE);
923         }
924     }
925     else if (ctl->bsmtp)
926     {
927         int error;
928
929         /* implicit disk-full check here... */
930         fputs(".\r\n", sinkfp);
931         error = ferror(sinkfp);
932         if (strcmp(ctl->bsmtp, "-"))
933             if (fclose(sinkfp) == EOF) error = 1;
934         if (error)
935         {
936             report(stderr, 
937                    _("Message termination or close of BSMTP file failed\n"));
938             return(FALSE);
939         }
940     }
941     else if (forward)
942     {
943         /* write message terminator */
944         if (SMTP_eom(ctl->smtp_socket) != SM_OK)
945         {
946             if (handle_smtp_report(ctl, msg) != PS_REFUSED)
947                 return(FALSE);
948             else
949             {
950                 report(stderr, _("SMTP listener refused delivery\n"));
951                 return(TRUE);
952             }
953         }
954
955         /*
956          * If this is an SMTP connection, SMTP_eom() ate the response.
957          * But could be this is an LMTP connection, in which case we have to
958          * interpret either (a) a single 503 response meaning there
959          * were no successful RCPT TOs, or (b) a variable number of
960          * responses, one for each successful RCPT TO.  We need to send
961          * bouncemail on each failed response and then return TRUE anyway,
962          * otherwise the message will get left in the queue and resent
963          * to people who got it the first time.
964          */
965         if (ctl->listener == LMTP_MODE)
966         {
967             if (lmtp_responses == 0)
968             {
969                 SMTP_ok(ctl->smtp_socket); 
970
971                 /*
972                  * According to RFC2033, 503 is the only legal response
973                  * if no RCPT TO commands succeeded.  No error recovery
974                  * is really possible here, as we have no idea what
975                  * insane thing the listener might be doing if it doesn't
976                  * comply.
977                  */
978                 if (atoi(smtp_response) == 503)
979                     report(stderr, _("LMTP delivery error on EOM\n"));
980                 else
981                     report(stderr,
982                           _("Unexpected non-503 response to LMTP EOM: %s\n"),
983                           smtp_response);
984
985                 /*
986                  * It's not completely clear what to do here.  We choose to
987                  * interpret delivery failure here as a transient error, 
988                  * the same way SMTP delivery failure is handled.  If we're
989                  * wrong, an undead message will get stuck in the queue.
990                  */
991                 return(FALSE);
992             }
993             else
994             {
995                 int     i, errors;
996                 char    **responses;
997
998                 /* eat the RFC2033-required responses, saving errors */ 
999                 xalloca(responses, char **, sizeof(char *) * lmtp_responses);
1000                 for (errors = i = 0; i < lmtp_responses; i++)
1001                 {
1002                     if (SMTP_ok(ctl->smtp_socket) == SM_OK)
1003                         responses[i] = (char *)NULL;
1004                     else
1005                     {
1006                         xalloca(responses[errors], 
1007                                 char *, 
1008                                 strlen(smtp_response)+1);
1009                         strcpy(responses[errors], smtp_response);
1010                         errors++;
1011                     }
1012                 }
1013
1014                 if (errors == 0)
1015                     return(TRUE);       /* all deliveries succeeded */
1016                 else
1017                     /*
1018                      * One or more deliveries failed.
1019                      * If we can bounce a failures list back to the
1020                      * sender, and the postmaster does not want to
1021                      * deal with the bounces return TRUE, deleting the
1022                      * message from the server so it won't be
1023                      * re-forwarded on subsequent poll cycles.
1024                      */
1025                   return(send_bouncemail(ctl, msg, XMIT_ACCEPT,
1026                                          "LSMTP partial delivery failure.\r\n",
1027                                          errors, responses));
1028             }
1029         }
1030     }
1031
1032     return(TRUE);
1033 }
1034
1035 int open_warning_by_mail(struct query *ctl, struct msgblk *msg)
1036 /* set up output sink for a mailed warning to calling user */
1037 {
1038     int good, bad;
1039
1040     /*
1041      * Dispatching warning email is a little complicated.  The problem is
1042      * that we have to deal with three distinct cases:
1043      *
1044      * 1. Single-drop running from user account.  Warning mail should
1045      * go to the local name for which we're collecting (coincides
1046      * with calling user).
1047      *
1048      * 2. Single-drop running from root or other privileged ID, with rc
1049      * file generated on the fly (Ken Estes's weird setup...)  Mail
1050      * should go to the local name for which we're collecting (does not 
1051      * coincide with calling user).
1052      * 
1053      * 3. Multidrop.  Mail must go to postmaster.  We leave the recipients
1054      * member null so this message will fall through to run.postmaster.
1055      *
1056      * The zero in the reallen element means we won't pass a SIZE
1057      * option to ESMTP; the message length would be more trouble than
1058      * it's worth to compute.
1059      */
1060     struct msgblk reply = {NULL, NULL, "FETCHMAIL-DAEMON@", 0};
1061
1062     strcat(reply.return_path, fetchmailhost);
1063
1064     if (!MULTIDROP(ctl))                /* send to calling user */
1065     {
1066         int status;
1067
1068         save_str(&reply.recipients, ctl->localnames->id, XMIT_ACCEPT);
1069         status = open_sink(ctl, &reply, &good, &bad);
1070         free_str_list(&reply.recipients);
1071         return(status);
1072     }
1073     else                                /* send to postmaster  */
1074         return(open_sink(ctl, &reply, &good, &bad));
1075 }
1076
1077 #if defined(HAVE_STDARG_H)
1078 void stuff_warning(struct query *ctl, const char *fmt, ... )
1079 #else
1080 void stuff_warning(struct query *ctl, fmt, va_alist)
1081 struct query *ctl;
1082 const char *fmt;        /* printf-style format */
1083 va_dcl
1084 #endif
1085 /* format and ship a warning message line by mail */
1086 {
1087     char        buf[POPBUFSIZE];
1088     va_list ap;
1089
1090     /*
1091      * stuffline() requires its input to be writeable (for CR stripping),
1092      * so we needed to copy the message to a writeable buffer anyway in
1093      * case it was a string constant.  We make a virtue of that necessity
1094      * here by supporting stdargs/varargs.
1095      */
1096 #if defined(HAVE_STDARG_H)
1097     va_start(ap, fmt) ;
1098 #else
1099     va_start(ap);
1100 #endif
1101 #ifdef HAVE_VSNPRINTF
1102     vsnprintf(buf, sizeof(buf), fmt, ap);
1103 #else
1104     vsprintf(buf, fmt, ap);
1105 #endif
1106     va_end(ap);
1107
1108     strcat(buf, "\r\n");
1109
1110     stuffline(ctl, buf);
1111 }
1112
1113 void close_warning_by_mail(struct query *ctl, struct msgblk *msg)
1114 /* sign and send mailed warnings */
1115 {
1116     stuff_warning(ctl, "--\r\n\t\t\t\tThe Fetchmail Daemon\r\n");
1117     close_sink(ctl, msg, TRUE);
1118 }
1119
1120 /* sink.c ends here */