]> Pileus Git - ~andy/fetchmail/blob - sink.c
47a4042772027a7dfb8a4706b42cf55811e27338
[~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 #ifdef HAVE_MEMORY_H
19 #include  <memory.h>
20 #endif /* HAVE_MEMORY_H */
21 #if defined(STDC_HEADERS)
22 #include  <stdlib.h>
23 #endif
24 #if defined(HAVE_UNISTD_H)
25 #include  <unistd.h>
26 #endif
27 #if defined(HAVE_STDARG_H)
28 #include  <stdarg.h>
29 #else
30 #include  <varargs.h>
31 #endif
32 #include  <ctype.h>
33 #include  <langinfo.h>
34
35 #include  "fetchmail.h"
36
37 /* for W* macros after pclose() */
38 #define _USE_BSD
39 #include <sys/types.h>
40 #include <sys/resource.h>
41 #include <sys/wait.h>
42
43 #include  "socket.h"
44 #include  "smtp.h"
45 #include  "i18n.h"
46
47 /* BSD portability hack...I know, this is an ugly place to put it */
48 #if !defined(SIGCHLD) && defined(SIGCLD)
49 #define SIGCHLD SIGCLD
50 #endif
51
52 /* makes the open_sink()/close_sink() pair non-reentrant */
53 static int lmtp_responses;
54
55 void smtp_close(struct query *ctl, int sayquit)
56 /* close the socket to SMTP server */
57 {
58     if (ctl->smtp_socket != -1)
59     {
60         if (sayquit)
61             SMTP_quit(ctl->smtp_socket, ctl->smtphostmode);
62         SockClose(ctl->smtp_socket);
63         ctl->smtp_socket = -1;
64     }
65     batchcount = 0;
66 }
67
68 int smtp_open(struct query *ctl)
69 /* try to open a socket to the appropriate SMTP server for this query */ 
70 {
71     /* maybe it's time to close the socket in order to force delivery */
72     if (last_smtp_ok > 0 && time((time_t *)NULL) - last_smtp_ok > mytimeout)
73     {
74         smtp_close(ctl, 1);
75         last_smtp_ok = 0;
76     }
77     if (NUM_NONZERO(ctl->batchlimit)) {
78         if (batchcount == ctl->batchlimit)
79             smtp_close(ctl, 1);
80         batchcount++;
81     }
82
83     /* if no socket to any SMTP host is already set up, try to open one */
84     if (ctl->smtp_socket == -1) 
85     {
86         /* 
87          * RFC 1123 requires that the domain name in HELO address is a
88          * "valid principal domain name" for the client host. If we're
89          * running in invisible mode, violate this with malice
90          * aforethought in order to make the Received headers and
91          * logging look right.
92          *
93          * In fact this code relies on the RFC1123 requirement that the
94          * SMTP listener must accept messages even if verification of the
95          * HELO name fails (RFC1123 section 5.2.5, paragraph 2).
96          *
97          * How we compute the true mailhost name to pass to the
98          * listener doesn't affect behavior on RFC1123-violating
99          * listeners that check for name match; we're going to lose
100          * on those anyway because we can never give them a name
101          * that matches the local machine fetchmail is running on.
102          * What it will affect is the listener's logging.
103          */
104         struct idlist   *idp;
105         const char *id_me = run.invisible ? ctl->server.truename : fetchmailhost;
106         int oldphase = phase;
107         char *parsed_host = NULL;
108
109         errno = 0;
110
111         /*
112          * Run down the SMTP hunt list looking for a server that's up.
113          * Use both explicit hunt entries (value TRUE) and implicit 
114          * (default) ones (value FALSE).
115          */
116         oldphase = phase;
117         phase = LISTENER_WAIT;
118
119         set_timeout(ctl->server.timeout);
120         for (idp = ctl->smtphunt; idp; idp = idp->next)
121         {
122             char        *cp;
123             char        *portnum = SMTP_PORT;
124
125             ctl->smtphost = idp->id;  /* remember last host tried. */
126             if (ctl->smtphost[0]=='/')
127             {
128                 ctl->smtphostmode = LMTP_MODE;
129                 xfree(parsed_host);
130                 if ((ctl->smtp_socket = UnixOpen(ctl->smtphost))==-1)
131                     continue;
132             }
133             else
134             {
135                 ctl->smtphostmode = ctl->listener;
136                 parsed_host = xstrdup(idp->id);
137                 if ((cp = strrchr(parsed_host, '/')))
138                 {
139                     *cp++ = 0;
140                     if (cp[0])
141                         portnum = cp;
142                 }
143                 if ((ctl->smtp_socket = SockOpen(parsed_host,portnum,
144                                 ctl->server.plugout, &ai1)) == -1)
145                 {
146                     xfree(parsed_host);
147                     continue;
148                 }
149             }
150
151             /* return immediately for ODMR */
152             if (ctl->server.protocol == P_ODMR)
153             {
154                 set_timeout(0);
155                 phase = oldphase;
156                 xfree(parsed_host);
157                 return(ctl->smtp_socket); /* success */
158             }
159
160             /* first, probe for ESMTP */
161             if (SMTP_ok(ctl->smtp_socket, ctl->smtphostmode) == SM_OK &&
162                     SMTP_ehlo(ctl->smtp_socket, ctl->smtphostmode, id_me,
163                         ctl->server.esmtp_name, ctl->server.esmtp_password,
164                         &ctl->server.esmtp_options) == SM_OK)
165                 break;  /* success */
166
167             /*
168              * RFC 1869 warns that some listeners hang up on a failed EHLO,
169              * so it's safest not to assume the socket will still be good.
170              */
171             smtp_close(ctl, 0);
172
173             /* if opening for ESMTP failed, try SMTP */
174             if (ctl->smtphost[0]=='/')
175             {
176                 if ((ctl->smtp_socket = UnixOpen(ctl->smtphost))==-1)
177                     continue;
178             }
179             else
180             {
181                 if ((ctl->smtp_socket = SockOpen(parsed_host,portnum,
182                                 ctl->server.plugout, &ai1)) == -1)
183                 {
184                     xfree(parsed_host);
185                     continue;
186                 }
187             }
188
189             if (SMTP_ok(ctl->smtp_socket, ctl->smtphostmode) == SM_OK &&
190                     SMTP_helo(ctl->smtp_socket, ctl->smtphostmode, id_me) == SM_OK)
191                 break;  /* success */
192
193             smtp_close(ctl, 0);
194         }
195         set_timeout(0);
196         phase = oldphase;
197
198         /*
199          * RFC 1123 requires that the domain name part of the
200          * RCPT TO address be "canonicalized", that is a FQDN
201          * or MX but not a CNAME.  Some listeners (like exim)
202          * enforce this.  Now that we have the actual hostname,
203          * compute what we should canonicalize with.
204          */
205         xfree(ctl->destaddr);
206         if (ctl->smtpaddress)
207             ctl->destaddr = xstrdup(ctl->smtpaddress);
208         /* parsed_host is smtphost without the /port */
209         else if (parsed_host && parsed_host[0] != 0)
210             ctl->destaddr = xstrdup(parsed_host);
211         /* No smtphost is specified or it is a UNIX socket, then use
212            localhost as a domain part. */
213         else
214             ctl->destaddr = xstrdup("localhost");
215         xfree(parsed_host);
216     }
217     /* end if (ctl->smtp_socket == -1) */
218
219     if (outlevel >= O_DEBUG && ctl->smtp_socket != -1)
220         report(stdout, GT_("forwarding to %s\n"), ctl->smtphost);
221
222     return(ctl->smtp_socket);
223 }
224
225 static void sanitize(char *s)
226 /* replace ' by _ */
227 {
228     char *cp;
229
230     for (cp = s; (cp = strchr (cp, '\'')); cp++)
231         *cp = '_';
232 }
233
234 char *rcpt_address(struct query *ctl, const char *id,
235                           int usesmtpname)
236 {
237     static char addr[HOSTLEN+USERNAMELEN+1];
238     if (strchr(id, '@'))
239     {
240         snprintf(addr, sizeof (addr), "%s", id);
241     }
242     else if (usesmtpname && ctl->smtpname)
243     {
244         snprintf(addr, sizeof (addr), "%s", ctl->smtpname);
245     }
246     else
247     {
248         snprintf(addr, sizeof (addr), "%s@%s", id, ctl->destaddr);
249     }
250     return addr;
251 }
252
253 static int send_bouncemail(struct query *ctl, struct msgblk *msg,
254                            int userclass, char *message,
255                            int nerrors, char *errors[])
256 /* bounce back an error report a la RFC 1892 */
257 {
258     char daemon_name[15 + HOSTLEN] = "MAILER-DAEMON@";
259     char boundary[BUFSIZ], *bounce_to;
260     int sock;
261     static char *fqdn_of_host = NULL;
262     const char *md1 = "MAILER-DAEMON", *md2 = "MAILER-DAEMON@";
263
264     /* don't bounce in reply to undeliverable bounces */
265     if (!msg || !msg->return_path[0] ||
266         strcmp(msg->return_path, "<>") == 0 ||
267         strcasecmp(msg->return_path, md1) == 0 ||
268         strncasecmp(msg->return_path, md2, strlen(md2)) == 0)
269         return(TRUE);
270
271     bounce_to = (run.bouncemail ? msg->return_path : run.postmaster);
272
273     /* can't just use fetchmailhost here, it might be localhost */
274     if (fqdn_of_host == NULL)
275         fqdn_of_host = host_fqdn(0); /* can't afford to bail out and
276                                         lose the NDN here */
277     strlcat(daemon_name, fqdn_of_host, sizeof(daemon_name));
278
279     /* we need only SMTP for this purpose */
280     /* XXX FIXME: hardcoding localhost is nonsense if smtphost can be
281      * configured */
282     if ((sock = SockOpen("localhost", SMTP_PORT, NULL, &ai1)) == -1)
283         return(FALSE);
284
285     if (SMTP_ok(sock, SMTP_MODE) != SM_OK)
286     {
287         SockClose(sock);
288         return FALSE;
289     }
290
291     if (SMTP_helo(sock, SMTP_MODE, fetchmailhost) != SM_OK
292         || SMTP_from(sock, SMTP_MODE, "<>", (char *)NULL) != SM_OK
293         || SMTP_rcpt(sock, SMTP_MODE, bounce_to) != SM_OK
294         || SMTP_data(sock, SMTP_MODE) != SM_OK)
295     {
296         SMTP_quit(sock, SMTP_MODE);
297         SockClose(sock);
298         return(FALSE);
299     }
300
301     /* our first duty is to keep the sacred foo counters turning... */
302     snprintf(boundary, sizeof(boundary), "foo-mani-padme-hum-%ld-%ld-%ld", 
303             (long)getpid(), (long)getppid(), (long)time(NULL));
304
305     if (outlevel >= O_VERBOSE)
306         report(stdout, GT_("SMTP: (bounce-message body)\n"));
307     else
308         /* this will usually go to sylog... */
309         report(stderr, GT_("mail from %s bounced to %s\n"),
310                daemon_name, bounce_to);
311
312
313     /* bouncemail headers */
314     SockPrintf(sock, "Subject: Mail delivery failed: returning message to sender\r\n");
315     SockPrintf(sock, "From: Mail Delivery System <%s>\r\n", daemon_name);
316     SockPrintf(sock, "To: %s\r\n", bounce_to);
317     SockPrintf(sock, "MIME-Version: 1.0\r\n");
318     SockPrintf(sock, "Content-Type: multipart/report; report-type=delivery-status;\r\n\tboundary=\"%s\"\r\n", boundary);
319     SockPrintf(sock, "\r\n");
320
321     /* RFC1892 part 1 -- human-readable message */
322     SockPrintf(sock, "--%s\r\n", boundary); 
323     SockPrintf(sock,"Content-Type: text/plain\r\n");
324     SockPrintf(sock, "\r\n");
325     SockPrintf(sock, "This message was created automatically by mail delivery software.\r\n\r\n");
326     SockPrintf(sock, "A message that you sent could not be delivered to one or more of its\r\n");
327     SockPrintf(sock, "recipients. This is a permanent error. The following address(es) failed:\r\n");
328     SockPrintf(sock, "\r\n");
329
330     if (nerrors)
331     {
332         struct idlist   *idp;
333         int             nusers;
334         
335         nusers = 0;
336         for (idp = msg->recipients; idp; idp = idp->next)
337         {
338             if (idp->val.status.mark == userclass)
339             {
340                 char    *error;
341                 SockPrintf(sock, "%s\r\n", rcpt_address (ctl, idp->id, 1));
342                 
343                 if (nerrors == 1) error = errors[0];
344                 else if (nerrors <= nusers)
345                 {
346                     SockPrintf(sock, "Internal error: SMTP error count doesn't match number of recipients.\r\n");
347                     break;
348                 }
349                 else error = errors[nusers++];
350                         
351                 SockPrintf(sock, "   SMTP error: %s\r\n\r\n", error);
352             }
353         }
354     
355         /* RFC1892 part 2 -- machine-readable responses */
356         SockPrintf(sock, "--%s\r\n", boundary); 
357         SockPrintf(sock,"Content-Type: message/delivery-status\r\n");
358         SockPrintf(sock, "\r\n");
359         SockPrintf(sock, "Reporting-MTA: dns; %s\r\n", fqdn_of_host);
360
361         nusers = 0;
362         for (idp = msg->recipients; idp; idp = idp->next)
363             if (idp->val.status.mark == userclass)
364             {
365                 char    *error;
366                 /* Minimum RFC1894 compliance + Diagnostic-Code field */
367                 SockPrintf(sock, "\r\n");
368                 SockPrintf(sock, "Final-Recipient: rfc822; %s\r\n", 
369                            rcpt_address (ctl, idp->id, 1));
370                 SockPrintf(sock, "Last-Attempt-Date: %s\r\n", rfc822timestamp());
371                 SockPrintf(sock, "Action: failed\r\n");
372
373                 if (nerrors == 1)
374                     /* one error applies to all users */
375                     error = errors[0];
376                 else if (nerrors <= nusers)
377                 {
378                     SockPrintf(sock, "Internal error: SMTP error count doesn't match number of recipients.\r\n");
379                     break;
380                 }
381                 else
382                     /* errors correspond 1-1 to selected users */
383                     error = errors[nusers++];
384                 
385                 if (strlen(error) > 9 && isdigit((unsigned char)error[4])
386                         && error[5] == '.' && isdigit((unsigned char)error[6])
387                         && error[7] == '.' && isdigit((unsigned char)error[8]))
388                     /* Enhanced status code available, use it */
389                     SockPrintf(sock, "Status: %5.5s\r\n", &(error[4]));
390                 else
391                     /* Enhanced status code not available, fake one */
392                     SockPrintf(sock, "Status: %c.0.0\r\n", error[0]);
393                 SockPrintf(sock, "Diagnostic-Code: %s\r\n", error);
394             }
395         SockPrintf(sock, "\r\n");
396     }
397
398     /* RFC1892 part 3 -- headers of undelivered message */
399     SockPrintf(sock, "--%s\r\n", boundary); 
400     SockPrintf(sock, "Content-Type: text/rfc822-headers\r\n");
401     SockPrintf(sock, "\r\n");
402     if (msg->headers)
403     {
404         SockWrite(sock, msg->headers, strlen(msg->headers));
405         SockPrintf(sock, "\r\n");
406     }
407     SockPrintf(sock, "--%s--\r\n", boundary); 
408
409     if (SMTP_eom(sock, SMTP_MODE) != SM_OK
410             || SMTP_quit(sock, SMTP_MODE) != SM_OK)
411     {
412         SockClose(sock);
413         return(FALSE);
414     }
415
416     SockClose(sock);
417
418     return(TRUE);
419 }
420
421 static int handle_smtp_report(struct query *ctl, struct msgblk *msg)
422 /* handle SMTP errors based on the content of SMTP_response */
423 /* returns either PS_REFUSED (to delete message from the server),
424  *             or PS_TRANSIENT (keeps the message on the server) */
425 {
426     int smtperr = atoi(smtp_response);
427     char *responses[1];
428     struct idlist *walk;
429     int found = 0;
430
431     responses[0] = xstrdup(smtp_response);
432
433 #ifdef __UNUSED__
434     /*
435      * Don't do this!  It can really mess you up if, for example, you're
436      * reporting an error with a single RCPT TO address among several;
437      * RSET discards the message body and it doesn't get sent to the
438      * valid recipients.
439      */
440     SMTP_rset(ctl->smtp_socket);    /* stay on the safe side */
441     if (outlevel >= O_DEBUG)
442         report(stdout, GT_("Saved error is still %d\n"), smtperr);
443 #endif /* __UNUSED */
444
445     /*
446      * Note: send_bouncemail message strings are not made subject
447      * to gettext translation because (a) they're going to be 
448      * embedded in a text/plain 7bit part, and (b) they're
449      * going to be associated with listener error-response
450      * messages, which are probably in English (none of the
451      * MTAs I know about are internationalized).
452      */
453     for( walk = ctl->antispam; walk; walk = walk->next )
454         if ( walk->val.status.num == smtperr ) 
455         { 
456                 found=1;
457                 break;
458         }
459
460     /* if (str_find(&ctl->antispam, smtperr)) */
461     if ( found )
462     {
463         /*
464          * SMTP listener explicitly refuses to deliver mail
465          * coming from this address, probably due to an
466          * anti-spam domain exclusion.  Respect this.  Don't
467          * try to ship the message, and don't prevent it from
468          * being deleted.  There's no point in bouncing the
469          * email either since most spammers don't put their
470          * real return email address anywhere in the headers
471          * (unless the user insists with the SET SPAMBOUNCE
472          * config option).
473          *
474          * Default values:
475          *
476          * 571 = sendmail's "unsolicited email refused"
477          * 550 = exim's new antispam response (temporary)
478          * 501 = exim's old antispam response
479          * 554 = Postfix antispam response.
480          *
481          */
482         if (run.spambounce)
483         {
484             char rejmsg[160];
485             snprintf(rejmsg, sizeof(rejmsg),
486                     "spam filter or virus scanner rejected message because:\r\n"
487                     "%s\r\n", responses[0]);
488
489             send_bouncemail(ctl, msg, XMIT_ACCEPT,
490                     rejmsg, 1, responses);
491         }
492         free(responses[0]);
493         return(PS_REFUSED);
494     }
495
496     /*
497      * Suppress error message only if the response specifically 
498      * meant `excluded for policy reasons'.  We *should* see
499      * an error when the return code is less specific.
500      */
501     if (smtperr >= 400)
502         report(stderr, GT_("%cMTP error: %s\n"), 
503               ctl->smtphostmode,
504               responses[0]);
505
506     switch (smtperr)
507     {
508     case 552: /* message exceeds fixed maximum message size */
509         /*
510          * Permanent no-go condition on the
511          * ESMTP server.  Don't try to ship the message, 
512          * and allow it to be deleted.
513          */
514         if (run.bouncemail)
515             send_bouncemail(ctl, msg, XMIT_ACCEPT,
516                         "This message was too large (SMTP error 552).\r\n", 
517                         1, responses);
518         free(responses[0]);
519         return(PS_REFUSED);
520   
521     case 553: /* invalid sending domain */
522         /*
523          * These latter days 553 usually means a spammer is trying to
524          * cover his tracks.  We never bouncemail on these, because 
525          * (a) the return address is invalid by definition, and 
526          * (b) we wouldn't want spammers to get confirmation that
527          * this address is live, anyway.
528          */
529 #ifdef __DONT_FEED_THE_SPAMMERS__
530         if (run.bouncemail)
531             send_bouncemail(ctl, msg, XMIT_ACCEPT,
532                         "Invalid address in MAIL FROM (SMTP error 553).\r\n", 
533                         1, responses);
534 #endif /* __DONT_FEED_THE_SPAMMERS__ */
535         free(responses[0]);
536         return(PS_REFUSED);
537
538     default:
539         /* bounce non-transient errors back to the sender */
540         if (smtperr >= 500 && smtperr <= 599)
541         {
542             if (run.bouncemail)
543                 send_bouncemail(ctl, msg, XMIT_ACCEPT,
544                                 "General SMTP/ESMTP error.\r\n", 
545                                 1, responses);
546             free(responses[0]);
547             return(PS_REFUSED);
548         }
549         /*
550          * We're going to end up here on 4xx errors, like:
551          *
552          * 451: temporarily unable to identify sender (exim)
553          * 452: temporary out-of-queue-space condition on the ESMTP server.
554          *
555          * These are temporary errors.  Don't try to ship the message,
556          * and suppress deletion so it can be retried on a future
557          * retrieval cycle.
558          *
559          * Bouncemail *might* be appropriate here as a delay
560          * notification (note; if we ever add this, we must make
561          * sure the RFC1894 Action field is "delayed" rather than
562          * "failed").  But it's not really necessary because
563          * these are not actual failures, we're very likely to be
564          * able to recover on the next cycle.
565          */
566         free(responses[0]);
567         return(PS_TRANSIENT);
568     }
569 }
570
571 static int handle_smtp_report_without_bounce(struct query *ctl, struct msgblk *msg)
572 /* handle SMTP errors based on the content of SMTP_response */
573 /* atleast one PS_TRANSIENT: do not send the bounce mail, keep the mail;
574  * no PS_TRANSIENT, atleast one PS_SUCCESS: send the bounce mail, delete the mail;
575  * no PS_TRANSIENT, no PS_SUCCESS: do not send the bounce mail, delete the mail */
576 {
577     int smtperr = atoi(smtp_response);
578
579     if (str_find(&ctl->antispam, smtperr))
580     {
581         if (run.spambounce)
582          return(PS_SUCCESS);
583         return(PS_REFUSED);
584     }
585
586     if (smtperr >= 400)
587         report(stderr, GT_("%cMTP error: %s\n"), 
588               ctl->smtphostmode,
589               smtp_response);
590
591     switch (smtperr)
592     {
593     case 552: /* message exceeds fixed maximum message size */
594         if (run.bouncemail)
595             return(PS_SUCCESS);
596         return(PS_REFUSED);
597
598     case 553: /* invalid sending domain */
599 #ifdef __DONT_FEED_THE_SPAMMERS__
600         if (run.bouncemail)
601             return(PS_SUCCESS);
602 #endif /* __DONT_FEED_THE_SPAMMERS__ */
603         return(PS_REFUSED);
604
605     default:
606         /* bounce non-transient errors back to the sender */
607         if (smtperr >= 500 && smtperr <= 599)
608             return(PS_SUCCESS);
609         return(PS_TRANSIENT);
610     }
611 }
612
613 /* these are shared by open_sink and stuffline */
614 static FILE *sinkfp;
615
616 int stuffline(struct query *ctl, char *buf)
617 /* ship a line to the given control block's output sink (SMTP server or MDA) */
618 {
619     int n, oldphase;
620     char *last;
621
622     /* The line may contain NUL characters. Find the last char to use
623      * -- the real line termination is the sequence "\n\0".
624      */
625     last = buf + 1; /* last[-1] must be valid! */
626     while ((last += strlen(last)) && (last[-1] != '\n'))
627         last++;
628
629     /* fix message lines that have only \n termination (for qmail) */
630     if (ctl->forcecr)
631     {
632         if (last - 1 == buf || last[-2] != '\r')
633         {
634             last[-1] = '\r';
635             *last++  = '\n';
636             *last    = '\0';
637         }
638     }
639
640     oldphase = phase;
641     phase = FORWARDING_WAIT;
642
643     /*
644      * SMTP byte-stuffing.  We only do this if the protocol does *not*
645      * use .<CR><LF> as EOM.  If it does, the server will already have
646      * decorated any . lines it sends back up.
647      */
648     if (*buf == '.')
649     {
650         if (ctl->server.base_protocol->delimited)       /* server has already byte-stuffed */
651         {
652             if (ctl->mda) {
653                 /* writing to MDA, undo byte-stuffing */
654                 ++buf;
655             } else {
656                 /* writing to SMTP, leave the byte-stuffing in place */;
657             }
658         }
659         else /* if (!protocol->delimited)       -- not byte-stuffed already */
660         {
661             /* byte-stuff it */
662             if (!ctl->mda)  {
663                 if (!ctl->bsmtp) {
664                     n = SockWrite(ctl->smtp_socket, buf, 1);
665                 } else {
666                     n = fwrite(buf, 1, 1, sinkfp);
667                     if (ferror(sinkfp)) n = -1;
668                 }
669                 if (n < 0)
670                     return n;
671             }
672         }
673     }
674
675     /* we may need to strip carriage returns */
676     if (ctl->stripcr)
677     {
678         char    *sp, *tp;
679
680         for (sp = tp = buf; sp < last; sp++)
681             if (*sp != '\r')
682                 *tp++ =  *sp;
683         *tp = '\0';
684         last = tp;
685     }
686
687     n = 0;
688     if (ctl->mda || ctl->bsmtp) {
689         n = fwrite(buf, 1, last - buf, sinkfp);
690         if (ferror(sinkfp)) n = -1;
691     } else if (ctl->smtp_socket != -1)
692         n = SockWrite(ctl->smtp_socket, buf, last - buf);
693
694     phase = oldphase;
695
696     return(n);
697 }
698
699 static int open_bsmtp_sink(struct query *ctl, struct msgblk *msg,
700               int *good_addresses, int *bad_addresses)
701 /* open a BSMTP stream */
702 {
703     struct      idlist *idp;
704     int         need_anglebrs;
705
706     if (strcmp(ctl->bsmtp, "-") == 0)
707         sinkfp = stdout;
708     else
709         sinkfp = fopen(ctl->bsmtp, "a");
710
711     if (!sinkfp || ferror(sinkfp)) {
712         report(stderr, GT_("BSMTP file open failed: %s\n"), 
713                 strerror(errno));
714         return(PS_BSMTP);
715     }
716
717     /* see the ap computation under the SMTP branch */
718     need_anglebrs = (msg->return_path[0] != '<');
719     fprintf(sinkfp,
720             "MAIL FROM:%s%s%s",
721             need_anglebrs ? "<" : "",
722             (msg->return_path[0]) ? msg->return_path : user,
723             need_anglebrs ? ">" : "");
724
725     if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
726         fputs(" BODY=8BITMIME", sinkfp);
727     else if (ctl->mimemsg & MSG_IS_7BIT)
728         fputs(" BODY=7BIT", sinkfp);
729
730     /* exim's BSMTP processor does not handle SIZE */
731     /* fprintf(sinkfp, " SIZE=%d", msg->reallen); */
732
733     fprintf(sinkfp, "\r\n");
734
735     /*
736      * RFC 1123 requires that the domain name part of the
737      * RCPT TO address be "canonicalized", that is a FQDN
738      * or MX but not a CNAME.  Some listeners (like exim)
739      * enforce this.  Now that we have the actual hostname,
740      * compute what we should canonicalize with.
741      */
742     xfree(ctl->destaddr);
743     ctl->destaddr = xstrdup(ctl->smtpaddress ? ctl->smtpaddress : "localhost");
744
745     *bad_addresses = 0;
746     for (idp = msg->recipients; idp; idp = idp->next)
747         if (idp->val.status.mark == XMIT_ACCEPT)
748         {
749             fprintf(sinkfp, "RCPT TO:<%s>\r\n",
750                 rcpt_address (ctl, idp->id, 1));
751             (*good_addresses)++;
752         }
753
754     fputs("DATA\r\n", sinkfp);
755
756     if (fflush(sinkfp) || ferror(sinkfp))
757     {
758         report(stderr, GT_("BSMTP preamble write failed.\n"));
759         return(PS_BSMTP);
760     }
761
762     return(PS_SUCCESS);
763 }
764
765 /* this is experimental and will be removed if double bounces are reported */
766 #define EXPLICIT_BOUNCE_ON_BAD_ADDRESS
767
768
769 static const char *is_quad(const char *q)
770 /* Check if the string passed in points to what could be one quad of a
771  * dotted-quad IP address.  Requirements are that the string is not a
772  * NULL pointer, begins with a period (which is skipped) or a digit
773  * and ends with a period or a NULL.  If these requirements are met, a
774  * pointer to the last character (the period or the NULL character) is
775  * returned; otherwise NULL.
776  */
777 {
778   const char *r;
779   
780   if (!q || !*q)
781     return NULL;
782   if (*q == '.')
783     q++;
784   for(r=q;isdigit((unsigned char)*r);r++)
785     ;
786   if ( ((*r) && (*r != '.')) || ((r-q) < 1) || ((r-q)>3) )
787     return NULL;
788   /* Make sure quad is < 255 */
789   if ( (r-q) == 3)
790   {
791     if (*q > '2')
792       return NULL;
793     else if (*q == '2')
794     {
795       if (*(q+1) > '5')
796         return NULL;
797       else if (*(q+1) == '5')
798       {
799         if (*(q+2) > '5')
800           return NULL;
801       }
802     }
803   }
804   return r;
805 }
806
807 static int is_dottedquad(const char *hostname)
808 /* Returns a true value if the passed in string looks like an IP
809  *  address in dotted-quad form, and a false value otherwise.
810  */
811
812 {
813   return ((hostname=is_quad(is_quad(is_quad(is_quad(hostname))))) != NULL) &&
814     (*hostname == '\0');
815 }
816
817 static int open_smtp_sink(struct query *ctl, struct msgblk *msg,
818               int *good_addresses, int *bad_addresses /* this must be signed, to prevent endless loop in from_addresses */)
819 /* open an SMTP stream */
820 {
821     const char  *ap;
822     struct      idlist *idp;
823     char                options[MSGBUFSIZE]; 
824     char                addr[HOSTLEN+USERNAMELEN+1];
825 #ifdef EXPLICIT_BOUNCE_ON_BAD_ADDRESS
826     char                **from_responses;
827 #endif /* EXPLICIT_BOUNCE_ON_BAD_ADDRESS */
828     int         total_addresses;
829     int         force_transient_error = 0;
830     int         smtp_err;
831
832     /*
833      * Compute ESMTP options.
834      */
835     options[0] = '\0';
836     if (ctl->server.esmtp_options & ESMTP_8BITMIME) {
837          if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
838             strcpy(options, " BODY=8BITMIME");
839          else if (ctl->mimemsg & MSG_IS_7BIT)
840             strcpy(options, " BODY=7BIT");
841     }
842
843     if ((ctl->server.esmtp_options & ESMTP_SIZE) && msg->reallen > 0)
844         sprintf(options + strlen(options), " SIZE=%d", msg->reallen);
845
846     /*
847      * Try to get the SMTP listener to take the Return-Path
848      * address as MAIL FROM.  If it won't, fall back on the
849      * remotename and mailserver host.  This won't affect replies,
850      * which use the header From address anyway; the MAIL FROM
851      * address is a place for the SMTP listener to send
852      * bouncemail.  The point is to guarantee a FQDN in the MAIL
853      * FROM line -- some SMTP listeners, like smail, become
854      * unhappy otherwise.
855      *
856      * RFC 1123 requires that the domain name part of the
857      * MAIL FROM address be "canonicalized", that is a
858      * FQDN or MX but not a CNAME.  We'll assume the Return-Path
859      * header is already in this form here (it certainly
860      * is if rewrite is on).  RFC 1123 is silent on whether
861      * a nonexistent hostname part is considered canonical.
862      *
863      * This is a potential problem if the MTAs further upstream
864      * didn't pass canonicalized From/Return-Path lines, *and* the
865      * local SMTP listener insists on them. 
866      *
867      * Handle the case where an upstream MTA is setting a return
868      * path equal to "@".  Ghod knows why anyone does this, but 
869      * it's been reported to happen in mail from Amazon.com and
870      * Motorola.
871      *
872      * Also, if the hostname is a dotted quad, wrap it in square brackets.
873      * Apparently this is required by RFC2821, section 4.1.3.
874      */
875     if (!msg->return_path[0] || (msg->return_path[0] == '@'))
876     {
877       if (strchr(ctl->remotename,'@') || strchr(ctl->remotename,'!'))
878       {
879         snprintf(addr, sizeof(addr), "%s", ctl->remotename);
880       }
881       else if (is_dottedquad(ctl->server.truename))
882       {
883         snprintf(addr, sizeof(addr), "%s@[%s]", ctl->remotename,
884                 ctl->server.truename);
885       }
886       else
887       {
888         snprintf(addr, sizeof(addr),
889               "%s@%s", ctl->remotename, ctl->server.truename);
890       }
891         ap = addr;
892     }
893     else if (strchr(msg->return_path,'@') || strchr(msg->return_path,'!'))
894         ap = msg->return_path;
895     /* in case Return-Path was "<>" we want to preserve that */
896     else if (strcmp(msg->return_path,"<>") == 0)
897         ap = msg->return_path;
898     else                /* in case Return-Path existed but was local */
899     {
900       if (is_dottedquad(ctl->server.truename))
901       {
902         snprintf(addr, sizeof(addr), "%s@[%s]", msg->return_path,
903                 ctl->server.truename);
904       }
905       else
906       {
907         snprintf(addr, sizeof(addr), "%s@%s",
908                 msg->return_path, ctl->server.truename);
909       }
910         ap = addr;
911     }
912
913     if ((smtp_err = SMTP_from(ctl->smtp_socket, ctl->smtphostmode,
914                     ap, options)) == SM_UNRECOVERABLE)
915     {
916         smtp_close(ctl, 0);
917         return(PS_TRANSIENT);
918     }
919     if (smtp_err != SM_OK)
920     {
921         int err = handle_smtp_report(ctl, msg); /* map to PS_TRANSIENT or PS_REFUSED */
922
923         SMTP_rset(ctl->smtp_socket, ctl->smtphostmode);    /* stay on the safe side */
924         return(err);
925     }
926
927     /*
928      * Now list the recipient addressees
929      */
930     total_addresses = 0;
931     for (idp = msg->recipients; idp; idp = idp->next)
932         total_addresses++;
933 #ifdef EXPLICIT_BOUNCE_ON_BAD_ADDRESS
934     from_responses = (char **)xmalloc(sizeof(char *) * total_addresses);
935 #endif /* EXPLICIT_BOUNCE_ON_BAD_ADDRESS */
936     for (idp = msg->recipients; idp; idp = idp->next)
937         if (idp->val.status.mark == XMIT_ACCEPT)
938         {
939             const char *address;
940             address = rcpt_address (ctl, idp->id, 1);
941             if ((smtp_err = SMTP_rcpt(ctl->smtp_socket, ctl->smtphostmode,
942                             address)) == SM_UNRECOVERABLE)
943             {
944                 smtp_close(ctl, 0);
945 transient:
946 #ifdef EXPLICIT_BOUNCE_ON_BAD_ADDRESS
947                 while (*bad_addresses)
948                     free(from_responses[--*bad_addresses]);
949                 free(from_responses);
950 #endif /* EXPLICIT_BOUNCE_ON_BAD_ADDRESS */
951                 return(PS_TRANSIENT);
952             }
953             if (smtp_err == SM_OK)
954                 (*good_addresses)++;
955             else
956             {
957                 switch (handle_smtp_report_without_bounce(ctl, msg))
958                 {
959                     case PS_TRANSIENT:
960                     force_transient_error = 1;
961                     break;
962
963                     case PS_SUCCESS:
964 #ifdef EXPLICIT_BOUNCE_ON_BAD_ADDRESS
965                     from_responses[*bad_addresses] = xstrdup(smtp_response);
966 #endif /* EXPLICIT_BOUNCE_ON_BAD_ADDRESS */
967
968                     (*bad_addresses)++;
969                     idp->val.status.mark = XMIT_RCPTBAD;
970                     if (outlevel >= O_VERBOSE)
971                         report(stderr,
972                               GT_("%cMTP listener doesn't like recipient address `%s'\n"),
973                               ctl->smtphostmode, address);
974                     break;
975
976                     case PS_REFUSED:
977                     if (outlevel >= O_VERBOSE)
978                         report(stderr,
979                               GT_("%cMTP listener doesn't really like recipient address `%s'\n"),
980                               ctl->smtphostmode, address);
981                     break;
982                 }
983             }
984         }
985
986     if (force_transient_error) {
987             /* do not risk dataloss due to overengineered multidrop
988              * crap. If one of the recipients returned PS_TRANSIENT,
989              * we return exactly that.
990              */
991             SMTP_rset(ctl->smtp_socket, ctl->smtphostmode);        /* required by RFC1870 */
992             goto transient;
993     }
994 #ifdef EXPLICIT_BOUNCE_ON_BAD_ADDRESS
995     /*
996      * This should not be necessary, because the SMTP listener itself
997      * should generate a bounce for the bad address.
998      *
999      * XXX FIXME 2006-01-19: is this comment true? I don't think
1000      * it is, because the SMTP listener isn't required to accept bogus
1001      * messages. There appears to be general SMTP<->MDA and
1002      * responsibility confusion.
1003      */
1004     if (*bad_addresses)
1005         send_bouncemail(ctl, msg, XMIT_RCPTBAD,
1006                         "Some addresses were rejected by the MDA fetchmail forwards to.\r\n",
1007                         *bad_addresses, from_responses);
1008     while (*bad_addresses)
1009         free(from_responses[--*bad_addresses]);
1010     free(from_responses);
1011 #endif /* EXPLICIT_BOUNCE_ON_BAD_ADDRESS */
1012
1013     /*
1014      * It's tempting to do local notification only if bouncemail was
1015      * insufficient -- that is, to add && total_addresses > *bad_addresses
1016      * to the test here.  The problem with this theory is that it would
1017      * make initial diagnosis of a broken multidrop configuration very
1018      * hard -- most single-recipient messages would just invisibly bounce.
1019      */
1020     if (!(*good_addresses)) 
1021     {
1022         if (!run.postmaster[0])
1023         {
1024             if (outlevel >= O_VERBOSE)
1025                 report(stderr, GT_("no address matches; no postmaster set.\n"));
1026             SMTP_rset(ctl->smtp_socket, ctl->smtphostmode);     /* required by RFC1870 */
1027             return(PS_REFUSED);
1028         }
1029         if ((smtp_err = SMTP_rcpt(ctl->smtp_socket, ctl->smtphostmode,
1030                 rcpt_address (ctl, run.postmaster, 0))) == SM_UNRECOVERABLE)
1031         {
1032             smtp_close(ctl, 0);
1033             return(PS_TRANSIENT);
1034         }
1035         if (smtp_err != SM_OK)
1036         {
1037             report(stderr, GT_("can't even send to %s!\n"), run.postmaster);
1038             SMTP_rset(ctl->smtp_socket, ctl->smtphostmode);     /* required by RFC1870 */
1039             return(PS_REFUSED);
1040         }
1041
1042         if (outlevel >= O_VERBOSE)
1043             report(stderr, GT_("no address matches; forwarding to %s.\n"), run.postmaster);
1044     }
1045
1046     /* 
1047      * Tell the listener we're ready to send data.
1048      * Some listeners (like zmailer) may return antispam errors here.
1049      */
1050     if ((smtp_err = SMTP_data(ctl->smtp_socket, ctl->smtphostmode))
1051             == SM_UNRECOVERABLE)
1052     {
1053         smtp_close(ctl, 0);
1054         return(PS_TRANSIENT);
1055     }
1056     if (smtp_err != SM_OK)
1057     {
1058         int err = handle_smtp_report(ctl, msg);
1059         SMTP_rset(ctl->smtp_socket, ctl->smtphostmode);    /* stay on the safe side */
1060         return(err);
1061     }
1062
1063     /*
1064      * We need to stash this away in order to know how many
1065      * response lines to expect after the LMTP end-of-message.
1066      */
1067     lmtp_responses = *good_addresses;
1068
1069     return(PS_SUCCESS);
1070 }
1071
1072 static int open_mda_sink(struct query *ctl, struct msgblk *msg,
1073               int *good_addresses, int *bad_addresses)
1074 /* open a stream to a local MDA */
1075 {
1076 #ifdef HAVE_SETEUID
1077     uid_t orig_uid;
1078 #endif /* HAVE_SETEUID */
1079     struct      idlist *idp;
1080     int length = 0, fromlen = 0, nameslen = 0;
1081     char        *names = NULL, *before, *after, *from = NULL;
1082
1083     (void)bad_addresses;
1084     xfree(ctl->destaddr);
1085     ctl->destaddr = xstrdup("localhost");
1086
1087     for (idp = msg->recipients; idp; idp = idp->next)
1088         if (idp->val.status.mark == XMIT_ACCEPT)
1089             (*good_addresses)++;
1090
1091     length = strlen(ctl->mda);
1092     before = xstrdup(ctl->mda);
1093
1094     /* get user addresses for %T (or %s for backward compatibility) */
1095     if (strstr(before, "%s") || strstr(before, "%T"))
1096     {
1097         /*
1098          * We go through this in order to be able to handle very
1099          * long lists of users and (re)implement %s.
1100          */
1101         nameslen = 0;
1102         for (idp = msg->recipients; idp; idp = idp->next)
1103             if ((idp->val.status.mark == XMIT_ACCEPT))
1104                 nameslen += (strlen(idp->id) + 1);      /* string + ' ' */
1105         if ((*good_addresses == 0))
1106             nameslen = strlen(run.postmaster);
1107
1108         names = (char *)xmalloc(nameslen + 1);  /* account for '\0' */
1109         if (*good_addresses == 0)
1110             strcpy(names, run.postmaster);
1111         else
1112         {
1113             names[0] = '\0';
1114             for (idp = msg->recipients; idp; idp = idp->next)
1115                 if (idp->val.status.mark == XMIT_ACCEPT)
1116                 {
1117                     strcat(names, idp->id);
1118                     strcat(names, " ");
1119                 }
1120             names[--nameslen] = '\0';   /* chop trailing space */
1121         }
1122
1123         sanitize(names);
1124     }
1125
1126     /* get From address for %F */
1127     if (strstr(before, "%F"))
1128     {
1129         from = xstrdup(msg->return_path);
1130
1131         sanitize(from);
1132
1133         fromlen = strlen(from);
1134     }
1135
1136     /* do we have to build an mda string? */
1137     if (names || from) 
1138     {           
1139         char    *sp, *dp;
1140
1141         /* find length of resulting mda string */
1142         sp = before;
1143         while ((sp = strstr(sp, "%s"))) {
1144             length += nameslen; /* subtract %s and add '' */
1145             sp += 2;
1146         }
1147         sp = before;
1148         while ((sp = strstr(sp, "%T"))) {
1149             length += nameslen; /* subtract %T and add '' */
1150             sp += 2;
1151         }
1152         sp = before;
1153         while ((sp = strstr(sp, "%F"))) {
1154             length += fromlen;  /* subtract %F and add '' */
1155             sp += 2;
1156         }
1157
1158         after = xmalloc(length + 1);
1159
1160         /* copy mda source string to after, while expanding %[sTF] */
1161         for (dp = after, sp = before; (*dp = *sp); dp++, sp++) {
1162             if (sp[0] != '%')   continue;
1163
1164             /* need to expand? BTW, no here overflow, because in
1165             ** the worst case (end of string) sp[1] == '\0' */
1166             if (sp[1] == 's' || sp[1] == 'T') {
1167                 *dp++ = '\'';
1168                 strcpy(dp, names);
1169                 dp += nameslen;
1170                 *dp++ = '\'';
1171                 sp++;   /* position sp over [sT] */
1172                 dp--;   /* adjust dp */
1173             } else if (sp[1] == 'F') {
1174                 *dp++ = '\'';
1175                 strcpy(dp, from);
1176                 dp += fromlen;
1177                 *dp++ = '\'';
1178                 sp++;   /* position sp over F */
1179                 dp--;   /* adjust dp */
1180             }
1181         }
1182
1183         if (names) {
1184             free(names);
1185             names = NULL;
1186         }
1187         if (from) {
1188             free(from);
1189             from = NULL;
1190         }
1191
1192         free(before);
1193
1194         before = after;
1195     }
1196
1197
1198     if (outlevel >= O_DEBUG)
1199         report(stdout, GT_("about to deliver with: %s\n"), before);
1200
1201 #ifdef HAVE_SETEUID
1202     /*
1203      * Arrange to run with user's permissions if we're root.
1204      * This will initialize the ownership of any files the
1205      * MDA creates properly.  (The seteuid call is available
1206      * under all BSDs and Linux)
1207      */
1208     orig_uid = getuid();
1209     seteuid(ctl->uid);
1210 #endif /* HAVE_SETEUID */
1211
1212     sinkfp = popen(before, "w");
1213     free(before);
1214     before = NULL;
1215
1216 #ifdef HAVE_SETEUID
1217     /* this will fail quietly if we didn't start as root */
1218     seteuid(orig_uid);
1219 #endif /* HAVE_SETEUID */
1220
1221     if (!sinkfp)
1222     {
1223         report(stderr, GT_("MDA open failed\n"));
1224         return(PS_IOERR);
1225     }
1226
1227     /*
1228      * We need to disable the normal SIGCHLD handling here because 
1229      * sigchld_handler() would reap away the error status, returning
1230      * error status instead of 0 for successful completion.
1231      */
1232     set_signal_handler(SIGCHLD, SIG_DFL);
1233
1234     return(PS_SUCCESS);
1235 }
1236
1237 int open_sink(struct query *ctl, struct msgblk *msg,
1238               int *good_addresses, int *bad_addresses)
1239 /* set up sinkfp to be an input sink we can ship a message to */
1240 {
1241     *bad_addresses = *good_addresses = 0;
1242
1243     if (ctl->bsmtp)             /* dump to a BSMTP batch file */
1244         return(open_bsmtp_sink(ctl, msg, good_addresses, bad_addresses));
1245     /* 
1246      * Try to forward to an SMTP or LMTP listener.  If the attempt to 
1247      * open a socket fails, fall through to attempt delivery via
1248      * local MDA.
1249      */
1250     else if (!ctl->mda && smtp_open(ctl) != -1)
1251         return(open_smtp_sink(ctl, msg, good_addresses, bad_addresses));
1252
1253     /*
1254      * Awkward case.  User didn't specify an MDA.  Our attempt to get a
1255      * listener socket failed.  Try to cope anyway -- initial configuration
1256      * may have found procmail.
1257      */
1258     else if (!ctl->mda)
1259     {
1260         report(stderr, GT_("%cMTP connect to %s failed\n"),
1261                ctl->smtphostmode,
1262                ctl->smtphost ? ctl->smtphost : "localhost");
1263
1264 #ifndef FALLBACK_MDA
1265         /* No fallback MDA declared.  Bail out. */
1266         return(PS_SMTP);
1267 #else
1268         /*
1269          * If user had things set up to forward offsite, no way
1270          * we want to deliver locally!
1271          */
1272         if (ctl->smtphost && strcmp(ctl->smtphost, "localhost"))
1273             return(PS_SMTP);
1274
1275         /* 
1276          * User was delivering locally.  We have a fallback MDA.
1277          * Latch it in place, logging the error, and fall through.
1278          * Set stripcr as we would if MDA had been the initial transport
1279          */
1280         ctl->mda = FALLBACK_MDA;
1281         if (!ctl->forcecr)
1282             ctl->stripcr = TRUE;
1283
1284         report(stderr, GT_("can't raise the listener; falling back to %s"),
1285                          FALLBACK_MDA);
1286 #endif
1287     }
1288
1289     if (ctl->mda)               /* must deliver through an MDA */
1290         return(open_mda_sink(ctl, msg, good_addresses, bad_addresses));
1291
1292     return(PS_SUCCESS);
1293 }
1294
1295 void release_sink(struct query *ctl)
1296 /* release the per-message output sink, whether it's a pipe or SMTP socket */
1297 {
1298     if (ctl->bsmtp && sinkfp)
1299     {
1300         if (strcmp(ctl->bsmtp, "-"))
1301         {
1302             fclose(sinkfp);
1303             sinkfp = (FILE *)NULL;
1304         }
1305     }
1306     else if (ctl->mda)
1307     {
1308         if (sinkfp)
1309         {
1310             pclose(sinkfp);
1311             sinkfp = (FILE *)NULL;
1312         }
1313         deal_with_sigchld(); /* Restore SIGCHLD handling to reap zombies */
1314     }
1315 }
1316
1317 int close_sink(struct query *ctl, struct msgblk *msg, flag forward)
1318 /* perform end-of-message actions on the current output sink */
1319 {
1320     int smtp_err;
1321     if (ctl->mda)
1322     {
1323         int rc,e,e2,err = 0;
1324
1325         /* close the delivery pipe, we'll reopen before next message */
1326         if (sinkfp)
1327         {
1328             if (ferror(sinkfp))
1329                 err = 1, e2 = errno;
1330             if ((fflush(sinkfp)))
1331                 err = 1, e2 = errno;
1332
1333             errno = 0;
1334             rc = pclose(sinkfp);
1335             e = errno;
1336             sinkfp = (FILE *)NULL;
1337         }
1338         else
1339             rc = e = 0;
1340
1341         deal_with_sigchld(); /* Restore SIGCHLD handling to reap zombies */
1342
1343         if (rc || err)
1344         {
1345             if (err) {
1346                 report(stderr, GT_("Error writing to MDA: %s\n"), strerror(e2));
1347             } else if (WIFSIGNALED(rc)) {
1348                 report(stderr, 
1349                         GT_("MDA died of signal %d\n"), WTERMSIG(rc));
1350             } else if (WIFEXITED(rc)) {
1351                 report(stderr, 
1352                         GT_("MDA returned nonzero status %d\n"), WEXITSTATUS(rc));
1353             } else {
1354                 report(stderr,
1355                         GT_("Strange: MDA pclose returned %d and errno %d/%s, cannot handle at %s:%d\n"),
1356                         rc, e, strerror(e), __FILE__, __LINE__);
1357             }
1358
1359             return(FALSE);
1360         }
1361     }
1362     else if (ctl->bsmtp && sinkfp)
1363     {
1364         int error;
1365
1366         /* implicit disk-full check here... */
1367         fputs(".\r\n", sinkfp);
1368         error = ferror(sinkfp);
1369         if (strcmp(ctl->bsmtp, "-"))
1370         {
1371             if (fclose(sinkfp) == EOF) error = 1;
1372             sinkfp = (FILE *)NULL;
1373         }
1374         if (error)
1375         {
1376             report(stderr, 
1377                    GT_("Message termination or close of BSMTP file failed\n"));
1378             return(FALSE);
1379         }
1380     }
1381     else if (forward)
1382     {
1383         /* write message terminator */
1384         if ((smtp_err = SMTP_eom(ctl->smtp_socket, ctl->smtphostmode))
1385                 == SM_UNRECOVERABLE)
1386         {
1387             smtp_close(ctl, 0);
1388             return(FALSE);
1389         }
1390         if (smtp_err != SM_OK)
1391         {
1392             if (handle_smtp_report(ctl, msg) != PS_REFUSED)
1393             {
1394                 SMTP_rset(ctl->smtp_socket, ctl->smtphostmode);    /* stay on the safe side */
1395                 return(FALSE);
1396             }
1397             else
1398             {
1399                 report(stderr, GT_("SMTP listener refused delivery\n"));
1400                 SMTP_rset(ctl->smtp_socket, ctl->smtphostmode);    /* stay on the safe side */
1401                 return(TRUE);
1402             }
1403         }
1404
1405         /*
1406          * If this is an SMTP connection, SMTP_eom() ate the response.
1407          * But could be this is an LMTP connection, in which case we have to
1408          * interpret either (a) a single 503 response meaning there
1409          * were no successful RCPT TOs, or (b) a variable number of
1410          * responses, one for each successful RCPT TO.  We need to send
1411          * bouncemail on each failed response and then return TRUE anyway,
1412          * otherwise the message will get left in the queue and resent
1413          * to people who got it the first time.
1414          */
1415         if (ctl->smtphostmode == LMTP_MODE)
1416         {
1417             if (lmtp_responses == 0)
1418             {
1419                 SMTP_ok(ctl->smtp_socket, ctl->smtphostmode);
1420
1421                 /*
1422                  * According to RFC2033, 503 is the only legal response
1423                  * if no RCPT TO commands succeeded.  No error recovery
1424                  * is really possible here, as we have no idea what
1425                  * insane thing the listener might be doing if it doesn't
1426                  * comply.
1427                  */
1428                 if (atoi(smtp_response) == 503)
1429                     report(stderr, GT_("LMTP delivery error on EOM\n"));
1430                 else
1431                     report(stderr,
1432                           GT_("Unexpected non-503 response to LMTP EOM: %s\n"),
1433                           smtp_response);
1434
1435                 /*
1436                  * It's not completely clear what to do here.  We choose to
1437                  * interpret delivery failure here as a transient error, 
1438                  * the same way SMTP delivery failure is handled.  If we're
1439                  * wrong, an undead message will get stuck in the queue.
1440                  */
1441                 return(FALSE);
1442             }
1443             else
1444             {
1445                 int     i, errors, rc = FALSE;
1446                 char    **responses;
1447
1448                 /* eat the RFC2033-required responses, saving errors */ 
1449                 responses = (char **)xmalloc(sizeof(char *) * lmtp_responses);
1450                 for (errors = i = 0; i < lmtp_responses; i++)
1451                 {
1452                     if ((smtp_err = SMTP_ok(ctl->smtp_socket, ctl->smtphostmode))
1453                             == SM_UNRECOVERABLE)
1454                     {
1455                         smtp_close(ctl, 0);
1456                         goto unrecov;
1457                     }
1458                     if (smtp_err != SM_OK)
1459                     {
1460                         responses[errors] = xstrdup(smtp_response);
1461                         errors++;
1462                     }
1463                 }
1464
1465                 if (errors == 0)
1466                     rc = TRUE;  /* all deliveries succeeded */
1467                 else
1468                     /*
1469                      * One or more deliveries failed.
1470                      * If we can bounce a failures list back to the
1471                      * sender, and the postmaster does not want to
1472                      * deal with the bounces return TRUE, deleting the
1473                      * message from the server so it won't be
1474                      * re-forwarded on subsequent poll cycles.
1475                      */
1476                     rc = send_bouncemail(ctl, msg, XMIT_ACCEPT,
1477                             "LMTP partial delivery failure.\r\n",
1478                             errors, responses);
1479
1480 unrecov:
1481                 for (i = 0; i < errors; i++)
1482                     free(responses[i]);
1483                 free(responses);
1484                 return rc;
1485             }
1486         }
1487     }
1488
1489     return(TRUE);
1490 }
1491
1492 int open_warning_by_mail(struct query *ctl)
1493 /* set up output sink for a mailed warning to calling user */
1494 {
1495     int good, bad;
1496
1497     /*
1498      * Dispatching warning email is a little complicated.  The problem is
1499      * that we have to deal with three distinct cases:
1500      *
1501      * 1. Single-drop running from user account.  Warning mail should
1502      * go to the local name for which we're collecting (coincides
1503      * with calling user).
1504      *
1505      * 2. Single-drop running from root or other privileged ID, with rc
1506      * file generated on the fly (Ken Estes's weird setup...)  Mail
1507      * should go to the local name for which we're collecting (does not 
1508      * coincide with calling user).
1509      * 
1510      * 3. Multidrop.  Mail must go to postmaster.  We leave the recipients
1511      * member null so this message will fall through to run.postmaster.
1512      *
1513      * The zero in the reallen element means we won't pass a SIZE
1514      * option to ESMTP; the message length would be more trouble than
1515      * it's worth to compute.
1516      */
1517     struct msgblk reply = {NULL, NULL, "FETCHMAIL-DAEMON@", 0, 0};
1518     int status;
1519
1520     strlcat(reply.return_path, ctl->smtpaddress ? ctl->smtpaddress :
1521             fetchmailhost, sizeof(reply.return_path));
1522
1523     if (!MULTIDROP(ctl))                /* send to calling user */
1524     {
1525         save_str(&reply.recipients, ctl->localnames->id, XMIT_ACCEPT);
1526         status = open_sink(ctl, &reply, &good, &bad);
1527         free_str_list(&reply.recipients);
1528     }
1529     else                                /* send to postmaster  */
1530         status = open_sink(ctl, &reply, &good, &bad);
1531     if (status == 0) {
1532         stuff_warning(NULL, ctl, "From: FETCHMAIL-DAEMON@%s",
1533                 ctl->smtpaddress ? ctl->smtpaddress : fetchmailhost);
1534         stuff_warning(NULL, ctl, "Date: %s", rfc822timestamp());
1535         stuff_warning(NULL, ctl, "MIME-Version: 1.0");
1536         stuff_warning(NULL, ctl, "Content-Transfer-Encoding: 8bit");
1537         stuff_warning(NULL, ctl, "Content-Type: text/plain; charset=\"%s\"", iana_charset);
1538     }
1539     return(status);
1540 }
1541
1542 /* format and ship a warning message line by mail */
1543 /* if rfc2047charset is non-NULL, encode the line (that is assumed to be
1544  * a header line) as per RFC-2047 using rfc2047charset as the character
1545  * set field */
1546 #if defined(HAVE_STDARG_H)
1547 void stuff_warning(const char *rfc2047charset, struct query *ctl, const char *fmt, ... )
1548 #else
1549 void stuff_warning(rfc2047charset, ctl, fmt, va_alist)
1550 const char *charset;
1551 struct query *ctl;
1552 const char *fmt;        /* printf-style format */
1553 va_dcl
1554 #endif
1555 {
1556     /* make huge -- i18n can bulk up error messages a lot */
1557     char        buf[2*MSGBUFSIZE+4];
1558     va_list ap;
1559
1560     /*
1561      * stuffline() requires its input to be writeable (for CR stripping),
1562      * so we needed to copy the message to a writeable buffer anyway in
1563      * case it was a string constant.  We make a virtue of that necessity
1564      * here by supporting stdargs/varargs.
1565      */
1566 #if defined(HAVE_STDARG_H)
1567     va_start(ap, fmt) ;
1568 #else
1569     va_start(ap);
1570 #endif
1571     vsnprintf(buf, sizeof(buf) - 2, fmt, ap);
1572     va_end(ap);
1573
1574     snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), "\r\n");
1575
1576     /* guard against very long lines */
1577     buf[MSGBUFSIZE+1] = '\r';
1578     buf[MSGBUFSIZE+2] = '\n';
1579     buf[MSGBUFSIZE+3] = '\0';
1580
1581     stuffline(ctl, rfc2047charset != NULL ? rfc2047e(buf, rfc2047charset) : buf);
1582 }
1583
1584 void close_warning_by_mail(struct query *ctl, struct msgblk *msg)
1585 /* sign and send mailed warnings */
1586 {
1587     stuff_warning(NULL, ctl, GT_("-- \nThe Fetchmail Daemon"));
1588     close_sink(ctl, msg, TRUE);
1589 }
1590
1591 /* sink.c ends here */