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