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