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