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