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