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