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