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