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