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