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