]> Pileus Git - ~andy/fetchmail/blob - sink.c
LMTP problem has been solved.
[~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, _("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, _("SMTP: (bounce-message body)\n"));
325     else
326         /* this will usually go to sylog... */
327         report(stderr, _("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, _("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, _("%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 int open_sink(struct query *ctl, struct msgblk *msg,
533               int *good_addresses, int *bad_addresses)
534 /* set up sinkfp to be an input sink we can ship a message to */
535 {
536     struct      idlist *idp;
537 #ifdef HAVE_SIGACTION
538     struct      sigaction sa_new;
539 #endif /* HAVE_SIGACTION */
540
541     *bad_addresses = *good_addresses = 0;
542
543     if (ctl->bsmtp)             /* dump to a BSMTP batch file */
544     {
545         if (strcmp(ctl->bsmtp, "-") == 0)
546             sinkfp = stdout;
547         else
548             sinkfp = fopen(ctl->bsmtp, "a");
549
550         /* see the ap computation under the SMTP branch */
551         fprintf(sinkfp, 
552                 "MAIL FROM: %s", (msg->return_path[0]) ? msg->return_path : user);
553
554         if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
555             fputs(" BODY=8BITMIME", sinkfp);
556         else if (ctl->mimemsg & MSG_IS_7BIT)
557             fputs(" BODY=7BIT", sinkfp);
558
559         /* exim's BSMTP processor does not handle SIZE */
560         /* fprintf(sinkfp, " SIZE=%d", msg->reallen); */
561
562         fprintf(sinkfp, "\r\n");
563
564         /*
565          * RFC 1123 requires that the domain name part of the
566          * RCPT TO address be "canonicalized", that is a FQDN
567          * or MX but not a CNAME.  Some listeners (like exim)
568          * enforce this.  Now that we have the actual hostname,
569          * compute what we should canonicalize with.
570          */
571         ctl->destaddr = ctl->smtpaddress ? ctl->smtpaddress : "localhost";
572
573         *bad_addresses = 0;
574         for (idp = msg->recipients; idp; idp = idp->next)
575             if (idp->val.status.mark == XMIT_ACCEPT)
576             {
577                 if (ctl->smtpname)
578                     fprintf(sinkfp, "RCPT TO: %s\r\n", ctl->smtpname);
579                 else if (strchr(idp->id, '@'))
580                     fprintf(sinkfp,
581                             "RCPT TO: %s\r\n", idp->id);
582                 else
583                     fprintf(sinkfp,
584                             "RCPT TO: %s@%s\r\n", idp->id, ctl->destaddr);
585                 *good_addresses = 0;
586             }
587
588         fputs("DATA\r\n", sinkfp);
589
590         if (ferror(sinkfp))
591         {
592             report(stderr, _("BSMTP file open or preamble write failed\n"));
593             return(PS_BSMTP);
594         }
595     }
596
597     /* 
598      * Try to forward to an SMTP or LMTP listener.  If the attempt to 
599      * open a socket fails, fall through to attempt delivery via
600      * local MDA.
601      */
602     else if (!ctl->mda && smtp_open(ctl) != -1)
603     {
604         const char      *ap;
605         char            options[MSGBUFSIZE]; 
606         char            addr[HOSTLEN+USERNAMELEN+1];
607         int             total_addresses;
608
609         /*
610          * Compute ESMTP options.
611          */
612         options[0] = '\0';
613         if (ctl->server.esmtp_options & ESMTP_8BITMIME) {
614              if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
615                 strcpy(options, " BODY=8BITMIME");
616              else if (ctl->mimemsg & MSG_IS_7BIT)
617                 strcpy(options, " BODY=7BIT");
618         }
619
620         if ((ctl->server.esmtp_options & ESMTP_SIZE) && msg->reallen > 0)
621             sprintf(options + strlen(options), " SIZE=%d", msg->reallen);
622
623         /*
624          * Try to get the SMTP listener to take the Return-Path
625          * address as MAIL FROM.  If it won't, fall back on the
626          * remotename and mailserver host.  This won't affect replies,
627          * which use the header From address anyway; the MAIL FROM
628          * address is a place for the SMTP listener to send
629          * bouncemail.  The point is to guarantee a FQDN in the MAIL
630          * FROM line -- some SMTP listeners, like smail, become
631          * unhappy otherwise.
632          *
633          * RFC 1123 requires that the domain name part of the
634          * MAIL FROM address be "canonicalized", that is a
635          * FQDN or MX but not a CNAME.  We'll assume the Return-Path
636          * header is already in this form here (it certainly
637          * is if rewrite is on).  RFC 1123 is silent on whether
638          * a nonexistent hostname part is considered canonical.
639          *
640          * This is a potential problem if the MTAs further upstream
641          * didn't pass canonicalized From/Return-Path lines, *and* the
642          * local SMTP listener insists on them. 
643          *
644          * Handle the case where an upstream MTA is setting a return
645          * path equal to "@".  Ghod knows why anyone does this, but 
646          * it's been reported to happen in mail from Amazon.com and
647          * Motorola.
648          */
649         if (!msg->return_path[0] || (0 == strcmp(msg->return_path, "@")))
650         {
651 #ifdef HAVE_SNPRINTF
652             snprintf(addr, sizeof(addr),
653 #else
654             sprintf(addr,
655 #endif /* HAVE_SNPRINTF */
656                   "%s@%s", ctl->remotename, ctl->server.truename);
657             ap = addr;
658         }
659         else if (strchr(msg->return_path,'@') || strchr(msg->return_path,'!'))
660             ap = msg->return_path;
661         else            /* in case Return-Path existed but was local */
662         {
663 #ifdef HAVE_SNPRINTF
664             snprintf(addr, sizeof(addr),
665 #else
666             sprintf(addr,
667 #endif /* HAVE_SNPRINTF */
668                     "%s@%s", msg->return_path, ctl->server.truename);
669             ap = addr;
670         }
671
672         if (SMTP_from(ctl->smtp_socket, ap, options) != SM_OK)
673         {
674             int err = handle_smtp_report(ctl, msg);
675
676             SMTP_rset(ctl->smtp_socket);    /* stay on the safe side */
677             return(err);
678         }
679
680         /*
681          * Now list the recipient addressees
682          */
683         total_addresses = 0;
684         for (idp = msg->recipients; idp; idp = idp->next)
685             total_addresses++;
686         for (idp = msg->recipients; idp; idp = idp->next)
687             if (idp->val.status.mark == XMIT_ACCEPT)
688             {
689                 if (strchr(idp->id, '@'))
690                     strcpy(addr, idp->id);
691                 else {
692                     if (ctl->smtpname) {
693 #ifdef HAVE_SNPRINTF
694                         snprintf(addr, sizeof(addr)-1, "%s", ctl->smtpname);
695 #else
696                         sprintf(addr, "%s", ctl->smtpname);
697 #endif /* HAVE_SNPRINTF */
698
699                     } else {
700 #ifdef HAVE_SNPRINTF
701                       snprintf(addr, sizeof(addr)-1, "%s@%s", idp->id, ctl->destaddr);
702 #else
703                       sprintf(addr, "%s@%s", idp->id, ctl->destaddr);
704 #endif /* HAVE_SNPRINTF */
705                     }
706                 }
707                 if (SMTP_rcpt(ctl->smtp_socket, addr) == SM_OK)
708                     (*good_addresses)++;
709                 else
710                 {
711                     handle_smtp_report(ctl, msg);
712
713                     (*bad_addresses)++;
714                     idp->val.status.mark = XMIT_RCPTBAD;
715                     if (outlevel >= O_VERBOSE)
716                         report(stderr, 
717                               _("%cMTP listener doesn't like recipient address `%s'\n"),
718                               ctl->listener, addr);
719                 }
720             }
721
722         /*
723          * It's tempting to do local notification only if bouncemail was
724          * insufficient -- that is, to add && total_addresses > *bad_addresses
725          * to the test here.  The problem with this theory is that it would
726          * make initial diagnosis of a broken multidrop configuration very
727          * hard -- most single-recipient messages would just invisibly bounce.
728          */
729         if (!(*good_addresses)) 
730         {
731             if (!run.postmaster[0])
732             {
733                 if (outlevel >= O_VERBOSE)
734                     report(stderr, _("no address matches; no postmaster set.\n"));
735                 SMTP_rset(ctl->smtp_socket);    /* required by RFC1870 */
736                 return(PS_REFUSED);
737             }
738             if (strchr(run.postmaster, '@'))
739                 strncpy(addr, run.postmaster, sizeof(addr));
740             else
741             {
742 #ifdef HAVE_SNPRINTF
743                 snprintf(addr, sizeof(addr)-1, "%s@%s", run.postmaster, ctl->destaddr);
744 #else
745                 sprintf(addr, "%s@%s", run.postmaster, ctl->destaddr);
746 #endif /* HAVE_SNPRINTF */
747             }
748
749             if (SMTP_rcpt(ctl->smtp_socket, addr) != SM_OK)
750             {
751                 report(stderr, _("can't even send to %s!\n"), run.postmaster);
752                 SMTP_rset(ctl->smtp_socket);    /* required by RFC1870 */
753                 return(PS_REFUSED);
754             }
755
756             if (outlevel >= O_VERBOSE)
757                 report(stderr, _("no address matches; forwarding to %s.\n"), run.postmaster);
758         }
759
760         /* 
761          * Tell the listener we're ready to send data.
762          * Some listeners (like zmailer) may return antispam errors here.
763          */
764         if (SMTP_data(ctl->smtp_socket) != SM_OK)
765         {
766             SMTP_rset(ctl->smtp_socket);    /* stay on the safe side */
767             return(handle_smtp_report(ctl, msg));
768         }
769     }
770
771     /*
772      * Awkward case.  User didn't specify an MDA.  Our attempt to get a
773      * listener socket failed.  Try to cope anyway -- initial configuration
774      * may have found procmail.
775      */
776     else if (!ctl->mda)
777     {
778         report(stderr, _("%cMTP connect to %s failed\n"),
779                ctl->listener,
780                ctl->smtphost ? ctl->smtphost : "localhost");
781
782 #ifndef FALLBACK_MDA
783         /* No fallback MDA declared.  Bail out. */
784         return(PS_SMTP);
785 #else
786         /*
787          * If user had things set up to forward offsite, no way
788          * we want to deliver locally!
789          */
790         if (ctl->smtphost && strcmp(ctl->smtphost, "localhost"))
791             return(PS_SMTP);
792
793         /* 
794          * User was delivering locally.  We have a fallback MDA.
795          * Latch it in place, logging the error, and fall through.
796          */
797         ctl->mda = FALLBACK_MDA;
798
799         report(stderr, _("can't raise the listener; falling back to %s"),
800                          FALLBACK_MDA);
801 #endif
802     }
803
804     if (ctl->mda)               /* must deliver through an MDA */
805     {
806         int     length = 0, fromlen = 0, nameslen = 0;
807         char    *names = NULL, *before, *after, *from = NULL;
808
809         ctl->destaddr = "localhost";
810
811         for (idp = msg->recipients; idp; idp = idp->next)
812             if (idp->val.status.mark == XMIT_ACCEPT)
813                 (*good_addresses)++;
814
815         length = strlen(ctl->mda);
816         before = xstrdup(ctl->mda);
817
818         /* get user addresses for %T (or %s for backward compatibility) */
819         if (strstr(before, "%s") || strstr(before, "%T"))
820         {
821             /*
822              * We go through this in order to be able to handle very
823              * long lists of users and (re)implement %s.
824              */
825             nameslen = 0;
826             for (idp = msg->recipients; idp; idp = idp->next)
827                 if ((idp->val.status.mark == XMIT_ACCEPT))
828                     nameslen += (strlen(idp->id) + 1);  /* string + ' ' */
829             if ((*good_addresses == 0))
830                 nameslen = strlen(run.postmaster);
831
832             names = (char *)xmalloc(nameslen + 1);      /* account for '\0' */
833             if (*good_addresses == 0)
834                 strcpy(names, run.postmaster);
835             else
836             {
837                 names[0] = '\0';
838                 for (idp = msg->recipients; idp; idp = idp->next)
839                     if (idp->val.status.mark == XMIT_ACCEPT)
840                     {
841                         strcat(names, idp->id);
842                         strcat(names, " ");
843                     }
844                 names[--nameslen] = '\0';       /* chop trailing space */
845             }
846
847             /* sanitize names in order to contain only harmless shell chars */
848             sanitize(names);
849         }
850
851         /* get From address for %F */
852         if (strstr(before, "%F"))
853         {
854             from = xstrdup(msg->return_path);
855
856             /* sanitize from in order to contain *only* harmless shell chars */
857             sanitize(from);
858
859             fromlen = strlen(from);
860         }
861
862         /* do we have to build an mda string? */
863         if (names || from) 
864         {               
865             char        *sp, *dp;
866
867             /* find length of resulting mda string */
868             sp = before;
869             while ((sp = strstr(sp, "%s"))) {
870                 length += nameslen - 2; /* subtract %s */
871                 sp += 2;
872             }
873             sp = before;
874             while ((sp = strstr(sp, "%T"))) {
875                 length += nameslen - 2; /* subtract %T */
876                 sp += 2;
877             }
878             sp = before;
879             while ((sp = strstr(sp, "%F"))) {
880                 length += fromlen - 2;  /* subtract %F */
881                 sp += 2;
882             }
883                 
884             after = xmalloc(length + 1);
885
886             /* copy mda source string to after, while expanding %[sTF] */
887             for (dp = after, sp = before; (*dp = *sp); dp++, sp++) {
888                 if (sp[0] != '%')       continue;
889
890                 /* need to expand? BTW, no here overflow, because in
891                 ** the worst case (end of string) sp[1] == '\0' */
892                 if (sp[1] == 's' || sp[1] == 'T') {
893                     strcpy(dp, names);
894                     dp += nameslen;
895                     sp++;       /* position sp over [sT] */
896                     dp--;       /* adjust dp */
897                 } else if (sp[1] == 'F') {
898                     strcpy(dp, from);
899                     dp += fromlen;
900                     sp++;       /* position sp over F */
901                     dp--;       /* adjust dp */
902                 }
903             }
904
905             if (names) {
906                 free(names);
907                 names = NULL;
908             }
909             if (from) {
910                 free(from);
911                 from = NULL;
912             }
913
914             free(before);
915
916             before = after;
917         }
918
919
920         if (outlevel >= O_DEBUG)
921             report(stdout, _("about to deliver with: %s\n"), before);
922
923 #ifdef HAVE_SETEUID
924         /*
925          * Arrange to run with user's permissions if we're root.
926          * This will initialize the ownership of any files the
927          * MDA creates properly.  (The seteuid call is available
928          * under all BSDs and Linux)
929          */
930         seteuid(ctl->uid);
931 #endif /* HAVE_SETEUID */
932
933         sinkfp = popen(before, "w");
934         free(before);
935         before = NULL;
936
937 #ifdef HAVE_SETEUID
938         /* this will fail quietly if we didn't start as root */
939         seteuid(0);
940 #endif /* HAVE_SETEUID */
941
942         if (!sinkfp)
943         {
944             report(stderr, _("MDA open failed\n"));
945             return(PS_IOERR);
946         }
947
948         /*
949          * We need to disable the normal SIGCHLD handling here because 
950          * sigchld_handler() would reap away the error status, returning
951          * error status instead of 0 for successful completion.
952          */
953 #ifndef HAVE_SIGACTION
954         sigchld = signal(SIGCHLD, SIG_DFL);
955 #else
956         memset (&sa_new, 0, sizeof sa_new);
957         sigemptyset (&sa_new.sa_mask);
958         sa_new.sa_handler = SIG_DFL;
959         sigaction (SIGCHLD, &sa_new, NULL);
960 #endif /* HAVE_SIGACTION */
961     }
962
963     /*
964      * We need to stash this away in order to know how many
965      * response lines to expect after the LMTP end-of-message.
966      */
967     lmtp_responses = *good_addresses;
968
969     return(PS_SUCCESS);
970 }
971
972 void release_sink(struct query *ctl)
973 /* release the per-message output sink, whether it's a pipe or SMTP socket */
974 {
975     if (ctl->bsmtp && sinkfp)
976         fclose(sinkfp);
977     else if (ctl->mda)
978     {
979         if (sinkfp)
980         {
981             pclose(sinkfp);
982             sinkfp = (FILE *)NULL;
983         }
984         deal_with_sigchld(); /* Restore SIGCHLD handling to reap zombies */
985     }
986 }
987
988 int close_sink(struct query *ctl, struct msgblk *msg, flag forward)
989 /* perform end-of-message actions on the current output sink */
990 {
991     if (ctl->mda)
992     {
993         int rc;
994
995         /* close the delivery pipe, we'll reopen before next message */
996         if (sinkfp)
997         {
998             rc = pclose(sinkfp);
999             sinkfp = (FILE *)NULL;
1000         }
1001         else
1002             rc = 0;
1003
1004         deal_with_sigchld(); /* Restore SIGCHLD handling to reap zombies */
1005
1006         if (rc)
1007         {
1008             report(stderr, 
1009                    _("MDA returned nonzero status %d\n"), rc);
1010             return(FALSE);
1011         }
1012     }
1013     else if (ctl->bsmtp && sinkfp)
1014     {
1015         int error;
1016
1017         /* implicit disk-full check here... */
1018         fputs(".\r\n", sinkfp);
1019         error = ferror(sinkfp);
1020         if (strcmp(ctl->bsmtp, "-"))
1021             if (fclose(sinkfp) == EOF) error = 1;
1022         if (error)
1023         {
1024             report(stderr, 
1025                    _("Message termination or close of BSMTP file failed\n"));
1026             return(FALSE);
1027         }
1028     }
1029     else if (forward)
1030     {
1031         /* write message terminator */
1032         if (SMTP_eom(ctl->smtp_socket) != SM_OK)
1033         {
1034             if (handle_smtp_report(ctl, msg) != PS_REFUSED)
1035             {
1036                 SMTP_rset(ctl->smtp_socket);    /* stay on the safe side */
1037                 return(FALSE);
1038             }
1039             else
1040             {
1041                 report(stderr, _("SMTP listener refused delivery\n"));
1042                 SMTP_rset(ctl->smtp_socket);    /* stay on the safe side */
1043                 return(TRUE);
1044             }
1045         }
1046
1047         /*
1048          * If this is an SMTP connection, SMTP_eom() ate the response.
1049          * But could be this is an LMTP connection, in which case we have to
1050          * interpret either (a) a single 503 response meaning there
1051          * were no successful RCPT TOs, or (b) a variable number of
1052          * responses, one for each successful RCPT TO.  We need to send
1053          * bouncemail on each failed response and then return TRUE anyway,
1054          * otherwise the message will get left in the queue and resent
1055          * to people who got it the first time.
1056          */
1057         if (ctl->listener == LMTP_MODE)
1058         {
1059             if (lmtp_responses == 0)
1060             {
1061                 SMTP_ok(ctl->smtp_socket); 
1062
1063                 /*
1064                  * According to RFC2033, 503 is the only legal response
1065                  * if no RCPT TO commands succeeded.  No error recovery
1066                  * is really possible here, as we have no idea what
1067                  * insane thing the listener might be doing if it doesn't
1068                  * comply.
1069                  */
1070                 if (atoi(smtp_response) == 503)
1071                     report(stderr, _("LMTP delivery error on EOM\n"));
1072                 else
1073                     report(stderr,
1074                           _("Unexpected non-503 response to LMTP EOM: %s\n"),
1075                           smtp_response);
1076
1077                 /*
1078                  * It's not completely clear what to do here.  We choose to
1079                  * interpret delivery failure here as a transient error, 
1080                  * the same way SMTP delivery failure is handled.  If we're
1081                  * wrong, an undead message will get stuck in the queue.
1082                  */
1083                 return(FALSE);
1084             }
1085             else
1086             {
1087                 int     i, errors;
1088                 char    **responses;
1089
1090                 /* eat the RFC2033-required responses, saving errors */ 
1091                 xalloca(responses, char **, sizeof(char *) * lmtp_responses);
1092                 for (errors = i = 0; i < lmtp_responses; i++)
1093                 {
1094                     if (SMTP_ok(ctl->smtp_socket) == SM_OK)
1095                         responses[i] = (char *)NULL;
1096                     else
1097                     {
1098                         xalloca(responses[errors], 
1099                                 char *, 
1100                                 strlen(smtp_response)+1);
1101                         strcpy(responses[errors], smtp_response);
1102                         errors++;
1103                     }
1104                 }
1105
1106                 if (errors == 0)
1107                     return(TRUE);       /* all deliveries succeeded */
1108                 else
1109                     /*
1110                      * One or more deliveries failed.
1111                      * If we can bounce a failures list back to the
1112                      * sender, and the postmaster does not want to
1113                      * deal with the bounces return TRUE, deleting the
1114                      * message from the server so it won't be
1115                      * re-forwarded on subsequent poll cycles.
1116                      */
1117                   return(send_bouncemail(ctl, msg, XMIT_ACCEPT,
1118                                          "LSMTP partial delivery failure.\r\n",
1119                                          errors, responses));
1120             }
1121         }
1122     }
1123
1124     return(TRUE);
1125 }
1126
1127 int open_warning_by_mail(struct query *ctl, struct msgblk *msg)
1128 /* set up output sink for a mailed warning to calling user */
1129 {
1130     int good, bad;
1131
1132     /*
1133      * Dispatching warning email is a little complicated.  The problem is
1134      * that we have to deal with three distinct cases:
1135      *
1136      * 1. Single-drop running from user account.  Warning mail should
1137      * go to the local name for which we're collecting (coincides
1138      * with calling user).
1139      *
1140      * 2. Single-drop running from root or other privileged ID, with rc
1141      * file generated on the fly (Ken Estes's weird setup...)  Mail
1142      * should go to the local name for which we're collecting (does not 
1143      * coincide with calling user).
1144      * 
1145      * 3. Multidrop.  Mail must go to postmaster.  We leave the recipients
1146      * member null so this message will fall through to run.postmaster.
1147      *
1148      * The zero in the reallen element means we won't pass a SIZE
1149      * option to ESMTP; the message length would be more trouble than
1150      * it's worth to compute.
1151      */
1152     struct msgblk reply = {NULL, NULL, "FETCHMAIL-DAEMON@", 0};
1153     int status;
1154
1155     strcat(reply.return_path, fetchmailhost);
1156
1157     if (!MULTIDROP(ctl))                /* send to calling user */
1158     {
1159         save_str(&reply.recipients, ctl->localnames->id, XMIT_ACCEPT);
1160         status = open_sink(ctl, &reply, &good, &bad);
1161         free_str_list(&reply.recipients);
1162     }
1163     else                                /* send to postmaster  */
1164         status = open_sink(ctl, &reply, &good, &bad);
1165     stuff_warning(ctl, "Date: %s", rfc822timestamp());
1166     return(status);
1167 }
1168
1169 #if defined(HAVE_STDARG_H)
1170 void stuff_warning(struct query *ctl, const char *fmt, ... )
1171 #else
1172 void stuff_warning(struct query *ctl, fmt, va_alist)
1173 struct query *ctl;
1174 const char *fmt;        /* printf-style format */
1175 va_dcl
1176 #endif
1177 /* format and ship a warning message line by mail */
1178 {
1179     char        buf[POPBUFSIZE];
1180     va_list ap;
1181
1182     /*
1183      * stuffline() requires its input to be writeable (for CR stripping),
1184      * so we needed to copy the message to a writeable buffer anyway in
1185      * case it was a string constant.  We make a virtue of that necessity
1186      * here by supporting stdargs/varargs.
1187      */
1188 #if defined(HAVE_STDARG_H)
1189     va_start(ap, fmt) ;
1190 #else
1191     va_start(ap);
1192 #endif
1193 #ifdef HAVE_VSNPRINTF
1194     vsnprintf(buf, sizeof(buf), fmt, ap);
1195 #else
1196     vsprintf(buf, fmt, ap);
1197 #endif
1198     va_end(ap);
1199
1200 #ifdef HAVE_SNPRINTF
1201     snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), "\r\n");
1202 #else
1203     strcat(buf, "\r\n");
1204 #endif /* HAVE_SNPRINTF */
1205
1206     stuffline(ctl, buf);
1207 }
1208
1209 void close_warning_by_mail(struct query *ctl, struct msgblk *msg)
1210 /* sign and send mailed warnings */
1211 {
1212     stuff_warning(ctl, _("--\r\n\t\t\t\tThe Fetchmail Daemon\r\n"));
1213     close_sink(ctl, msg, TRUE);
1214 }
1215
1216 /* sink.c ends here */