]> Pileus Git - ~andy/fetchmail/blob - sink.c
Working version of Debian changelog code.
[~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             (int)getpid(), (int)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     /*
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         SMTP_rset(ctl->smtp_socket);    /* stay on the safe site */
405         send_bouncemail(ctl, msg, XMIT_ACCEPT,
406                         "Our spam filter rejected this transaction.\r\n", 
407                         1, responses);
408         return(PS_REFUSED);
409     }
410
411     /*
412      * Suppress error message only if the response specifically 
413      * meant `excluded for policy reasons'.  We *should* see
414      * an error when the return code is less specific.
415      */
416     if (smtperr >= 400)
417         report(stderr, _("%cMTP error: %s\n"), 
418               ctl->listener,
419               smtp_response);
420
421     switch (smtperr)
422     {
423     case 452: /* insufficient system storage */
424         /*
425          * Temporary out-of-queue-space condition on the
426          * ESMTP server.  Don't try to ship the message, 
427          * and suppress deletion so it can be retried on
428          * a future retrieval cycle. 
429          *
430          * Bouncemail *might* be appropriate here as a delay
431          * notification (note; if we ever add this, we must make
432          * sure the RFC1894 Action field is "delayed" rather thwn
433          * "failed").  But it's not really necessary because
434          * this is not an actual failure, we're very likely to be
435          * able to recover on the next cycle.
436          */
437         SMTP_rset(ctl->smtp_socket);    /* required by RFC1870 */
438         return(PS_TRANSIENT);
439
440     case 552: /* message exceeds fixed maximum message size */
441         /*
442          * Permanent no-go condition on the
443          * ESMTP server.  Don't try to ship the message, 
444          * and allow it to be deleted.
445          */
446         SMTP_rset(ctl->smtp_socket);    /* required by RFC1870 */
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         SMTP_rset(ctl->smtp_socket);    /* stay on the safe side */
458         send_bouncemail(ctl, msg, XMIT_ACCEPT,
459                         "Invalid address.\r\n", 
460                         1, responses);
461         return(PS_REFUSED);
462
463     default:    /* bounce the error back to the sender */
464         SMTP_rset(ctl->smtp_socket);    /* stay on the safe side */
465         if (send_bouncemail(ctl, msg, XMIT_ACCEPT,
466                         "General SMTP/ESMTP error.\r\n", 
467                         1, responses))
468             return(run.bouncemail ? PS_REFUSED : PS_TRANSIENT);
469         else
470             return(PS_TRANSIENT);
471     }
472 }
473
474 int open_sink(struct query *ctl, struct msgblk *msg,
475               int *good_addresses, int *bad_addresses)
476 /* set up sinkfp to be an input sink we can ship a message to */
477 {
478     struct      idlist *idp;
479
480     *bad_addresses = *good_addresses = 0;
481
482     if (ctl->bsmtp)             /* dump to a BSMTP batch file */
483     {
484         if (strcmp(ctl->bsmtp, "-") == 0)
485             sinkfp = stdout;
486         else
487             sinkfp = fopen(ctl->bsmtp, "a");
488
489         /* see the ap computation under the SMTP branch */
490         fprintf(sinkfp, 
491                 "MAIL FROM: %s", (msg->return_path[0]) ? msg->return_path : user);
492
493         if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
494             fputs(" BODY=8BITMIME", sinkfp);
495         else if (ctl->mimemsg & MSG_IS_7BIT)
496             fputs(" BODY=7BIT", sinkfp);
497
498         fprintf(sinkfp, " SIZE=%d\r\n", msg->reallen);
499
500         /*
501          * RFC 1123 requires that the domain name part of the
502          * RCPT TO address be "canonicalized", that is a FQDN
503          * or MX but not a CNAME.  Some listeners (like exim)
504          * enforce this.  Now that we have the actual hostname,
505          * compute what we should canonicalize with.
506          */
507         ctl->destaddr = ctl->smtpaddress ? ctl->smtpaddress : "localhost";
508
509         *bad_addresses = 0;
510         for (idp = msg->recipients; idp; idp = idp->next)
511             if (idp->val.status.mark == XMIT_ACCEPT)
512             {
513                 if (strchr(idp->id, '@'))
514                     fprintf(sinkfp,
515                                 "RCPT TO: %s\r\n", idp->id);
516                 else
517                     fprintf(sinkfp,
518                                 "RCPT TO: %s@%s\r\n", idp->id, ctl->destaddr);
519                 *good_addresses = 0;
520             }
521
522         fputs("DATA\r\n", sinkfp);
523
524         if (ferror(sinkfp))
525         {
526             report(stderr, _("BSMTP file open or preamble write failed\n"));
527             return(PS_BSMTP);
528         }
529     }
530     else if (ctl->mda)          /* we have a declared MDA */
531     {
532         int     length = 0, fromlen = 0, nameslen = 0;
533         char    *names = NULL, *before, *after, *from = NULL;
534
535         ctl->destaddr = "localhost";
536
537         for (idp = msg->recipients; idp; idp = idp->next)
538             if (idp->val.status.mark == XMIT_ACCEPT)
539                 (*good_addresses)++;
540
541         length = strlen(ctl->mda);
542         before = xstrdup(ctl->mda);
543
544         /* get user addresses for %T (or %s for backward compatibility) */
545         if (strstr(before, "%s") || strstr(before, "%T"))
546         {
547             /*
548              * We go through this in order to be able to handle very
549              * long lists of users and (re)implement %s.
550              */
551             nameslen = 0;
552             for (idp = msg->recipients; idp; idp = idp->next)
553                 if ((idp->val.status.mark == XMIT_ACCEPT))
554                     nameslen += (strlen(idp->id) + 1);  /* string + ' ' */
555             if ((*good_addresses == 0))
556                 nameslen = strlen(run.postmaster);
557
558             names = (char *)xmalloc(nameslen + 1);      /* account for '\0' */
559             if (*good_addresses == 0)
560                 strcpy(names, run.postmaster);
561             else
562             {
563                 names[0] = '\0';
564                 for (idp = msg->recipients; idp; idp = idp->next)
565                     if (idp->val.status.mark == XMIT_ACCEPT)
566                     {
567                         strcat(names, idp->id);
568                         strcat(names, " ");
569                     }
570                 names[--nameslen] = '\0';       /* chop trailing space */
571             }
572
573             /* sanitize names in order to contain only harmless shell chars */
574             sanitize(names);
575         }
576
577         /* get From address for %F */
578         if (strstr(before, "%F"))
579         {
580             from = xstrdup(msg->return_path);
581
582             /* sanitize from in order to contain *only* harmless shell chars */
583             sanitize(from);
584
585             fromlen = strlen(from);
586         }
587
588         /* do we have to build an mda string? */
589         if (names || from) 
590         {               
591             char        *sp, *dp;
592
593             /* find length of resulting mda string */
594             sp = before;
595             while ((sp = strstr(sp, "%s"))) {
596                 length += nameslen - 2; /* subtract %s */
597                 sp += 2;
598             }
599             sp = before;
600             while ((sp = strstr(sp, "%T"))) {
601                 length += nameslen - 2; /* subtract %T */
602                 sp += 2;
603             }
604             sp = before;
605             while ((sp = strstr(sp, "%F"))) {
606                 length += fromlen - 2;  /* subtract %F */
607                 sp += 2;
608             }
609                 
610             after = xmalloc(length + 1);
611
612             /* copy mda source string to after, while expanding %[sTF] */
613             for (dp = after, sp = before; (*dp = *sp); dp++, sp++) {
614                 if (sp[0] != '%')       continue;
615
616                 /* need to expand? BTW, no here overflow, because in
617                 ** the worst case (end of string) sp[1] == '\0' */
618                 if (sp[1] == 's' || sp[1] == 'T') {
619                     strcpy(dp, names);
620                     dp += nameslen;
621                     sp++;       /* position sp over [sT] */
622                     dp--;       /* adjust dp */
623                 } else if (sp[1] == 'F') {
624                     strcpy(dp, from);
625                     dp += fromlen;
626                     sp++;       /* position sp over F */
627                     dp--;       /* adjust dp */
628                 }
629             }
630
631             if (names) {
632                 free(names);
633                 names = NULL;
634             }
635             if (from) {
636                 free(from);
637                 from = NULL;
638             }
639
640             free(before);
641
642             before = after;
643         }
644
645
646         if (outlevel >= O_DEBUG)
647             report(stdout, _("about to deliver with: %s\n"), before);
648
649 #ifdef HAVE_SETEUID
650         /*
651          * Arrange to run with user's permissions if we're root.
652          * This will initialize the ownership of any files the
653          * MDA creates properly.  (The seteuid call is available
654          * under all BSDs and Linux)
655          */
656         seteuid(ctl->uid);
657 #endif /* HAVE_SETEUID */
658
659         sinkfp = popen(before, "w");
660         free(before);
661         before = NULL;
662
663 #ifdef HAVE_SETEUID
664         /* this will fail quietly if we didn't start as root */
665         seteuid(0);
666 #endif /* HAVE_SETEUID */
667
668         if (!sinkfp)
669         {
670             report(stderr, _("MDA open failed\n"));
671             return(PS_IOERR);
672         }
673
674         sigchld = signal(SIGCHLD, SIG_DFL);
675     }
676     else /* forward to an SMTP or LMTP listener */
677     {
678         const char      *ap;
679         char            options[MSGBUFSIZE]; 
680         char            addr[HOSTLEN+USERNAMELEN+1];
681         char            **from_responses;
682         int             total_addresses;
683
684         /* build a connection to the SMTP listener */
685         if ((smtp_open(ctl) == -1))
686         {
687             report(stderr, _("%cMTP connect to %s failed\n"),
688                   ctl->listener,
689                   ctl->smtphost ? ctl->smtphost : "localhost");
690             return(PS_SMTP);
691         }
692
693         /*
694          * Compute ESMTP options.
695          */
696         options[0] = '\0';
697         if (ctl->server.esmtp_options & ESMTP_8BITMIME) {
698              if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
699                 strcpy(options, " BODY=8BITMIME");
700              else if (ctl->mimemsg & MSG_IS_7BIT)
701                 strcpy(options, " BODY=7BIT");
702         }
703
704         if ((ctl->server.esmtp_options & ESMTP_SIZE) && msg->reallen > 0)
705             sprintf(options + strlen(options), " SIZE=%d", msg->reallen);
706
707         /*
708          * Try to get the SMTP listener to take the Return-Path
709          * address as MAIL FROM .  If it won't, fall back on the
710          * calling-user ID.  This won't affect replies, which use the
711          * header From address anyway.
712          *
713          * RFC 1123 requires that the domain name part of the
714          * MAIL FROM address be "canonicalized", that is a
715          * FQDN or MX but not a CNAME.  We'll assume the From
716          * header is already in this form here (it certainly
717          * is if rewrite is on).  RFC 1123 is silent on whether
718          * a nonexistent hostname part is considered canonical.
719          *
720          * This is a potential problem if the MTAs further upstream
721          * didn't pass canonicalized From/Return-Path lines, *and* the
722          * local SMTP listener insists on them.
723          */
724         ap = (msg->return_path[0]) ? msg->return_path : user;
725         if (SMTP_from(ctl->smtp_socket, ap, options) != SM_OK)
726             return(handle_smtp_report(ctl, msg));
727
728         /*
729          * Now list the recipient addressees
730          */
731         total_addresses = 0;
732         for (idp = msg->recipients; idp; idp = idp->next)
733             total_addresses++;
734         xalloca(from_responses, char **, sizeof(char *) * total_addresses);
735         for (idp = msg->recipients; idp; idp = idp->next)
736             if (idp->val.status.mark == XMIT_ACCEPT)
737             {
738                 if (strchr(idp->id, '@'))
739                     strcpy(addr, idp->id);
740                 else
741 #ifdef HAVE_SNPRINTF
742                     snprintf(addr, sizeof(addr)-1, "%s@%s", idp->id, ctl->destaddr);
743 #else
744                     sprintf(addr, "%s@%s", idp->id, ctl->destaddr);
745 #endif /* HAVE_SNPRINTF */
746
747                 if (SMTP_rcpt(ctl->smtp_socket, addr) == SM_OK)
748                     (*good_addresses)++;
749                 else
750                 {
751                     char        errbuf[POPBUFSIZE];
752
753                     strcpy(errbuf, idp->id);
754                     strcat(errbuf, ": ");
755                     strcat(errbuf, smtp_response);
756
757                     xalloca(from_responses[*bad_addresses], 
758                             char *, 
759                             strlen(errbuf)+1);
760                     strcpy(from_responses[*bad_addresses], errbuf);
761
762                     (*bad_addresses)++;
763                     idp->val.status.mark = XMIT_RCPTBAD;
764                     if (outlevel >= O_VERBOSE)
765                         report(stderr, 
766                               _("%cMTP listener doesn't like recipient address `%s'\n"),
767                               ctl->listener, addr);
768                 }
769             }
770         if (*bad_addresses)
771             send_bouncemail(ctl, msg, XMIT_RCPTBAD,
772                             "Some addresses were rejected by the MDA fetchmail forwards to.\r\n",
773                             *bad_addresses, from_responses);
774         /*
775          * It's tempting to do local notification only if bouncemail was
776          * insufficient -- that is, to add && total_addresses > *bad_addresses
777          * to the test here.  The problem with this theory is that it would
778          * make initial diagnosis of a broken multidrop configuration very
779          * hard -- most single-recipient messages would just invisibly bounce.
780          */
781         if (!(*good_addresses)) 
782         {
783             if (strchr(run.postmaster, '@'))
784                 strcpy(addr, run.postmaster);
785             else
786             {
787 #ifdef HAVE_SNPRINTF
788                 snprintf(addr, sizeof(addr)-1, "%s@%s", run.postmaster, ctl->destaddr);
789 #else
790                 sprintf(addr, "%s@%s", run.postmaster, ctl->destaddr);
791 #endif /* HAVE_SNPRINTF */
792             }
793
794             if (SMTP_rcpt(ctl->smtp_socket, addr) != SM_OK)
795             {
796                 report(stderr, _("can't even send to %s!\n"), run.postmaster);
797                 SMTP_rset(ctl->smtp_socket);    /* required by RFC1870 */
798                 return(PS_SMTP);
799             }
800
801             if (outlevel >= O_VERBOSE)
802                 report(stderr, _("no address matches; forwarding to %s.\n"), run.postmaster);
803         }
804
805         /* 
806          * Tell the listener we're ready to send data.
807          * Some listeners (like zmailer) may return antispam errors here.
808          */
809         if (SMTP_data(ctl->smtp_socket) != SM_OK)
810             return(handle_smtp_report(ctl, msg));
811     }
812
813     /*
814      * We need to stash this away in order to know how many
815      * response lines to expect after the LMTP end-of-message.
816      */
817     lmtp_responses = *good_addresses;
818
819     return(PS_SUCCESS);
820 }
821
822 void release_sink(struct query *ctl)
823 /* release the per-message output sink, whether it's a pipe or SMTP socket */
824 {
825     if (ctl->bsmtp)
826         fclose(sinkfp);
827     else if (ctl->mda)
828     {
829         if (sinkfp)
830         {
831             pclose(sinkfp);
832             sinkfp = (FILE *)NULL;
833         }
834         signal(SIGCHLD, sigchld);
835     }
836 }
837
838 int close_sink(struct query *ctl, struct msgblk *msg, flag forward)
839 /* perform end-of-message actions on the current output sink */
840 {
841     if (ctl->mda)
842     {
843         int rc;
844
845         /* close the delivery pipe, we'll reopen before next message */
846         if (sinkfp)
847         {
848             rc = pclose(sinkfp);
849             sinkfp = (FILE *)NULL;
850         }
851         else
852             rc = 0;
853         signal(SIGCHLD, sigchld);
854         if (rc)
855         {
856             report(stderr, 
857                    _("MDA exited abnormally or returned nonzero status\n"));
858             return(FALSE);
859         }
860     }
861     else if (ctl->bsmtp)
862     {
863         /* implicit disk-full check here... */
864         fputs("..\r\n", sinkfp);
865         if (strcmp(ctl->bsmtp, "-"))
866             fclose(sinkfp);
867         if (ferror(sinkfp))
868         {
869             report(stderr, 
870                    _("Message termination or close of BSMTP file failed\n"));
871             return(FALSE);
872         }
873     }
874     else if (forward)
875     {
876         /* write message terminator */
877         if (SMTP_eom(ctl->smtp_socket) != SM_OK)
878         {
879             if (handle_smtp_report(ctl, msg) != PS_REFUSED)
880                 return(FALSE);
881             else
882             {
883                 report(stderr, _("SMTP listener refused delivery\n"));
884                 return(TRUE);
885             }
886         }
887
888         /*
889          * If this is an SMTP connection, SMTP_eom() ate the response.
890          * But could be this is an LMTP connection, in which case we have to
891          * interpret either (a) a single 503 response meaning there
892          * were no successful RCPT TOs, or (b) a variable number of
893          * responses, one for each successful RCPT TO.  We need to send
894          * bouncemail on each failed response and then return TRUE anyway,
895          * otherwise the message will get left in the queue and resent
896          * to people who got it the first time.
897          */
898         if (ctl->listener == LMTP_MODE)
899             if (lmtp_responses == 0)
900             {
901                 SMTP_ok(ctl->smtp_socket); 
902
903                 /*
904                  * According to RFC2033, 503 is the only legal response
905                  * if no RCPT TO commands succeeded.  No error recovery
906                  * is really possible here, as we have no idea what
907                  * insane thing the listener might be doing if it doesn't
908                  * comply.
909                  */
910                 if (atoi(smtp_response) == 503)
911                     report(stderr, _("LMTP delivery error on EOM\n"));
912                 else
913                     report(stderr,
914                           _("Unexpected non-503 response to LMTP EOM: %s\n"),
915                           smtp_response);
916
917                 /*
918                  * It's not completely clear what to do here.  We choose to
919                  * interpret delivery failure here as a transient error, 
920                  * the same way SMTP delivery failure is handled.  If we're
921                  * wrong, an undead message will get stuck in the queue.
922                  */
923                 return(FALSE);
924             }
925             else
926             {
927                 int     i, errors;
928                 char    **responses;
929
930                 /* eat the RFC2033-required responses, saving errors */ 
931                 xalloca(responses, char **, sizeof(char *) * lmtp_responses);
932                 for (errors = i = 0; i < lmtp_responses; i++)
933                 {
934                     if (SMTP_ok(ctl->smtp_socket) == SM_OK)
935                         responses[i] = (char *)NULL;
936                     else
937                     {
938                         xalloca(responses[errors], 
939                                 char *, 
940                                 strlen(smtp_response)+1);
941                         strcpy(responses[errors], smtp_response);
942                         errors++;
943                     }
944                 }
945
946                 if (errors == 0)
947                     return(TRUE);       /* all deliveries succeeded */
948                 else
949                     /*
950                      * One or more deliveries failed.
951                      * If we can bounce a failures list back to the
952                      * sender, and the postmaster does not want to
953                      * deal with the bounces return TRUE, deleting the
954                      * message from the server so it won't be
955                      * re-forwarded on subsequent poll cycles.
956                      */
957                   return(send_bouncemail(ctl, msg, XMIT_ACCEPT,
958                                          "LSMTP partial delivery failure.\r\n",
959                                          errors, responses));
960             }
961     }
962
963     return(TRUE);
964 }
965
966 int open_warning_by_mail(struct query *ctl, struct msgblk *msg)
967 /* set up output sink for a mailed warning to calling user */
968 {
969     int good, bad;
970
971     /*
972      * Dispatching warning email is a little complicated.  The problem is
973      * that we have to deal with three distinct cases:
974      *
975      * 1. Single-drop running from user account.  Warning mail should
976      * go to the local name for which we're collecting (coincides
977      * with calling user).
978      *
979      * 2. Single-drop running from root or other privileged ID, with rc
980      * file generated on the fly (Ken Estes's weird setup...)  Mail
981      * should go to the local name for which we're collecting (does not 
982      * coincide with calling user).
983      * 
984      * 3. Multidrop.  Mail must go to postmaster.  We leave the recipients
985      * member null so this message will fall through to run.postmaster.
986      *
987      * The zero in the reallen element means we won't pass a SIZE
988      * option to ESMTP; the message length would be more trouble than
989      * it's worth to compute.
990      */
991     struct msgblk reply = {NULL, NULL, "FETCHMAIL-DAEMON@", 0};
992
993     strcat(reply.return_path, fetchmailhost);
994
995     if (!MULTIDROP(ctl))                /* send to calling user */
996     {
997         int status;
998
999         save_str(&reply.recipients, ctl->localnames->id, XMIT_ACCEPT);
1000         status = open_sink(ctl, &reply, &good, &bad);
1001         free_str_list(&reply.recipients);
1002         return(status);
1003     }
1004     else                                /* send to postmaster  */
1005         return(open_sink(ctl, &reply, &good, &bad));
1006 }
1007
1008 #if defined(HAVE_STDARG_H)
1009 void stuff_warning(struct query *ctl, const char *fmt, ... )
1010 #else
1011 void stuff_warning(struct query *ctl, fmt, va_alist)
1012 struct query *ctl;
1013 const char *fmt;        /* printf-style format */
1014 va_dcl
1015 #endif
1016 /* format and ship a warning message line by mail */
1017 {
1018     char        buf[POPBUFSIZE];
1019     va_list ap;
1020
1021     /*
1022      * stuffline() requires its input to be writeable (for CR stripping),
1023      * so we needed to copy the message to a writeable buffer anyway in
1024      * case it was a string constant.  We make a virtue of that necessity
1025      * here by supporting stdargs/varargs.
1026      */
1027 #if defined(HAVE_STDARG_H)
1028     va_start(ap, fmt) ;
1029 #else
1030     va_start(ap);
1031 #endif
1032 #ifdef HAVE_VSNPRINTF
1033     vsnprintf(buf, sizeof(buf), fmt, ap);
1034 #else
1035     vsprintf(buf, fmt, ap);
1036 #endif
1037     va_end(ap);
1038
1039     strcat(buf, "\r\n");
1040
1041     stuffline(ctl, buf);
1042 }
1043
1044 void close_warning_by_mail(struct query *ctl, struct msgblk *msg)
1045 /* sign and send mailed warnings */
1046 {
1047     stuff_warning(ctl, "--\r\n\t\t\t\tThe Fetchmail Daemon\r\n");
1048     close_sink(ctl, msg, TRUE);
1049 }
1050
1051 /* sink.c ends here */