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