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