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