]> Pileus Git - ~andy/fetchmail/blob - sink.c
Ready to ship.
[~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 #include  "fetchmail.h"
37 #include  "socket.h"
38 #include  "smtp.h"
39 #include  "i18n.h"
40
41 /* BSD portability hack...I know, this is an ugly place to put it */
42 #if !defined(SIGCHLD) && defined(SIGCLD)
43 #define SIGCHLD SIGCLD
44 #endif
45
46 /* makes the open_sink()/close_sink() pair non-reentrant */
47 static int lmtp_responses;
48
49 int smtp_open(struct query *ctl)
50 /* try to open a socket to the appropriate SMTP server for this query */ 
51 {
52     /* maybe it's time to close the socket in order to force delivery */
53     if (NUM_NONZERO(ctl->batchlimit) && (ctl->smtp_socket != -1) && ++batchcount == ctl->batchlimit)
54     {
55         SockClose(ctl->smtp_socket);
56         ctl->smtp_socket = -1;
57         batchcount = 0;
58     }
59
60     /* if no socket to any SMTP host is already set up, try to open one */
61     if (ctl->smtp_socket == -1) 
62     {
63         /* 
64          * RFC 1123 requires that the domain name in HELO address is a
65          * "valid principal domain name" for the client host. If we're
66          * running in invisible mode, violate this with malice
67          * aforethought in order to make the Received headers and
68          * logging look right.
69          *
70          * In fact this code relies on the RFC1123 requirement that the
71          * SMTP listener must accept messages even if verification of the
72          * HELO name fails (RFC1123 section 5.2.5, paragraph 2).
73          *
74          * How we compute the true mailhost name to pass to the
75          * listener doesn't affect behavior on RFC1123-violating
76          * listeners that check for name match; we're going to lose
77          * on those anyway because we can never give them a name
78          * that matches the local machine fetchmail is running on.
79          * What it will affect is the listener's logging.
80          */
81         struct idlist   *idp;
82         const char *id_me = run.invisible ? ctl->server.truename : fetchmailhost;
83         int oldphase = phase;
84
85         errno = 0;
86
87         /*
88          * Run down the SMTP hunt list looking for a server that's up.
89          * Use both explicit hunt entries (value TRUE) and implicit 
90          * (default) ones (value FALSE).
91          */
92         oldphase = phase;
93         phase = LISTENER_WAIT;
94
95         set_timeout(ctl->server.timeout);
96         for (idp = ctl->smtphunt; idp; idp = idp->next)
97         {
98             char        *cp, *parsed_host;
99 #ifdef INET6_ENABLE 
100             char        *portnum = SMTP_PORT;
101 #else
102             int         portnum = SMTP_PORT;
103 #endif /* INET6_ENABLE */
104
105             xalloca(parsed_host, char *, strlen(idp->id) + 1);
106
107             ctl->smtphost = idp->id;  /* remember last host tried. */
108             if(ctl->smtphost[0]=='/')
109                 ctl->listener = LMTP_MODE;
110
111             strcpy(parsed_host, idp->id);
112             if ((cp = strrchr(parsed_host, '/')))
113             {
114                 *cp++ = 0;
115 #ifdef INET6_ENABLE 
116                 portnum = cp;
117 #else
118                 portnum = atoi(cp);
119 #endif /* INET6_ENABLE */
120             }
121
122             if (ctl->smtphost[0]=='/'){
123                 if((ctl->smtp_socket = UnixOpen(ctl->smtphost))==-1)
124                     continue;
125             } else
126             if ((ctl->smtp_socket = SockOpen(parsed_host,portnum,NULL,
127                                              ctl->server.plugout)) == -1)
128                 continue;
129
130            /* return immediately for ODMR */
131            if (ctl->server.protocol == P_ODMR)
132                return(ctl->smtp_socket); /* success */
133
134             /* are we doing SMTP or LMTP? */
135             SMTP_setmode(ctl->listener);
136
137             /* first, probe for ESMTP */
138             if (SMTP_ok(ctl->smtp_socket) == SM_OK &&
139                     SMTP_ehlo(ctl->smtp_socket, id_me,
140                           &ctl->server.esmtp_options) == SM_OK)
141                break;  /* success */
142
143             /*
144              * RFC 1869 warns that some listeners hang up on a failed EHLO,
145              * so it's safest not to assume the socket will still be good.
146              */
147             SockClose(ctl->smtp_socket);
148             ctl->smtp_socket = -1;
149
150             /* if opening for ESMTP failed, try SMTP */
151             if ((ctl->smtp_socket = SockOpen(parsed_host,portnum,NULL,
152                                              ctl->server.plugout)) == -1)
153                 continue;
154
155             if (SMTP_ok(ctl->smtp_socket) == SM_OK && 
156                     SMTP_helo(ctl->smtp_socket, id_me) == SM_OK)
157                 break;  /* success */
158
159             SockClose(ctl->smtp_socket);
160             ctl->smtp_socket = -1;
161         }
162         set_timeout(0);
163         phase = oldphase;
164     }
165
166     /*
167      * RFC 1123 requires that the domain name part of the
168      * RCPT TO address be "canonicalized", that is a FQDN
169      * or MX but not a CNAME.  Some listeners (like exim)
170      * enforce this.  Now that we have the actual hostname,
171      * compute what we should canonicalize with.
172      */
173     ctl->destaddr = ctl->smtpaddress ? ctl->smtpaddress : ( ctl->smtphost && ctl->smtphost[0] != '/' ? ctl->smtphost : "localhost");
174
175     if (outlevel >= O_DEBUG && ctl->smtp_socket != -1)
176         report(stdout, _("forwarding to %s\n"), ctl->smtphost);
177
178     return(ctl->smtp_socket);
179 }
180
181 /* these are shared by open_sink and stuffline */
182 static FILE *sinkfp;
183 #ifndef HAVE_SIGACTION
184 static RETSIGTYPE (*sigchld)(int);
185 #else
186 static struct sigaction sa_old;
187 #endif /* HAVE_SIGACTION */
188
189 int stuffline(struct query *ctl, char *buf)
190 /* ship a line to the given control block's output sink (SMTP server or MDA) */
191 {
192     int n, oldphase;
193     char *last;
194
195     /* The line may contain NUL characters. Find the last char to use
196      * -- the real line termination is the sequence "\n\0".
197      */
198     last = buf;
199     while ((last += strlen(last)) && (last[-1] != '\n'))
200         last++;
201
202     /* fix message lines that have only \n termination (for qmail) */
203     if (ctl->forcecr)
204     {
205         if (last - 1 == buf || last[-2] != '\r')
206         {
207             last[-1] = '\r';
208             *last++  = '\n';
209             *last    = '\0';
210         }
211     }
212
213     oldphase = phase;
214     phase = FORWARDING_WAIT;
215
216     /*
217      * SMTP byte-stuffing.  We only do this if the protocol does *not*
218      * use .<CR><LF> as EOM.  If it does, the server will already have
219      * decorated any . lines it sends back up.
220      */
221     if (*buf == '.')
222     {
223         if (ctl->server.base_protocol->delimited)       /* server has already byte-stuffed */
224         {
225             if (ctl->mda)
226                 ++buf;
227             else
228                 /* writing to SMTP, leave the byte-stuffing in place */;
229         }
230         else /* if (!protocol->delimited)       -- not byte-stuffed already */
231         {
232             if (!ctl->mda)
233                 SockWrite(ctl->smtp_socket, buf, 1);    /* byte-stuff it */
234             else
235                 /* leave it alone */;
236         }
237     }
238
239     /* we may need to strip carriage returns */
240     if (ctl->stripcr)
241     {
242         char    *sp, *tp;
243
244         for (sp = tp = buf; sp < last; sp++)
245             if (*sp != '\r')
246                 *tp++ =  *sp;
247         *tp = '\0';
248         last = tp;
249     }
250
251     n = 0;
252     if (ctl->mda || ctl->bsmtp)
253         n = fwrite(buf, 1, last - buf, sinkfp);
254     else if (ctl->smtp_socket != -1)
255         n = SockWrite(ctl->smtp_socket, buf, last - buf);
256
257     phase = oldphase;
258
259     return(n);
260 }
261
262 static void sanitize(char *s)
263 /* replace unsafe shellchars by an _ */
264 {
265     const static char *ok_chars = " 1234567890!@%-_=+:,./abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
266     char *cp;
267
268     for (cp = s; *(cp += strspn(cp, ok_chars)); /* NO INCREMENT */)
269         *cp = '_';
270 }
271
272 static int send_bouncemail(struct query *ctl, struct msgblk *msg,
273                            int userclass, char *message,
274                            int nerrors, char *errors[])
275 /* bounce back an error report a la RFC 1892 */
276 {
277     char daemon_name[18 + HOSTLEN] = "FETCHMAIL-DAEMON@";
278     char boundary[BUFSIZ], *bounce_to;
279     int sock;
280
281     /* don't bounce  in reply to undeliverable bounces */
282     if (!msg->return_path[0] || strcmp(msg->return_path, "<>") == 0)
283         return(FALSE);
284
285     bounce_to = (run.bouncemail ? msg->return_path : run.postmaster);
286
287     SMTP_setmode(SMTP_MODE);
288
289     strcat(daemon_name, fetchmailhost);
290
291     /* we need only SMTP for this purpose */
292     if ((sock = SockOpen("localhost", SMTP_PORT, NULL, NULL)) == -1
293                 || SMTP_ok(sock) != SM_OK 
294                 || SMTP_helo(sock, "localhost") != SM_OK
295                 || SMTP_from(sock, daemon_name, (char *)NULL) != SM_OK
296                 || SMTP_rcpt(sock, bounce_to) != SM_OK
297                 || SMTP_data(sock) != SM_OK)
298         return(FALSE);
299
300     /* our first duty is to keep the sacred foo counters turning... */
301 #ifdef HAVE_SNPRINTF
302     snprintf(boundary, sizeof(boundary),
303 #else
304     sprintf(boundary,
305 #endif /* HAVE_SNPRINTF */
306             "foo-mani-padme-hum-%d-%d-%ld", 
307             (int)getpid(), (int)getppid(), time((time_t *)NULL));
308
309     if (outlevel >= O_VERBOSE)
310         report(stdout, _("SMTP: (bounce-message body)\n"));
311     else
312         /* this will usually go to sylog... */
313         report(stderr, _("mail from %s bounced to %s\n"),
314                daemon_name, bounce_to);
315
316     /* bouncemail headers */
317     SockPrintf(sock, "Return-Path: <>\r\n");
318     SockPrintf(sock, "From: %s\r\n", daemon_name);
319     SockPrintf(sock, "To: %s\r\n", bounce_to);
320     SockPrintf(sock, "MIME-Version: 1.0\r\n");
321     SockPrintf(sock, "Content-Type: multipart/report; report-type=delivery-status;\r\n\tboundary=\"%s\"\r\n", boundary);
322     SockPrintf(sock, "\r\n");
323
324     /* RFC1892 part 1 -- human-readable message */
325     SockPrintf(sock, "--%s\r\n", boundary); 
326     SockPrintf(sock,"Content-Type: text/plain\r\n");
327     SockPrintf(sock, "\r\n");
328     SockWrite(sock, message, strlen(message));
329     SockPrintf(sock, "\r\n");
330     SockPrintf(sock, "\r\n");
331
332     if (nerrors)
333     {
334         struct idlist   *idp;
335         int             nusers;
336         
337         /* RFC1892 part 2 -- machine-readable responses */
338         SockPrintf(sock, "--%s\r\n", boundary); 
339         SockPrintf(sock,"Content-Type: message/delivery-status\r\n");
340         SockPrintf(sock, "\r\n");
341         SockPrintf(sock, "Reporting-MTA: dns; %s\r\n", fetchmailhost);
342
343         nusers = 0;
344         for (idp = msg->recipients; idp; idp = idp->next)
345             if (idp->val.status.mark == userclass)
346             {
347                 char    *error;
348                 /* Minimum RFC1894 compliance + Diagnostic-Code field */
349                 SockPrintf(sock, "\r\n");
350                 SockPrintf(sock, "Final-Recipient: rfc822; %s\r\n", idp->id);
351                 SockPrintf(sock, "Last-Attempt-Date: %s\r\n", rfc822timestamp());
352                 SockPrintf(sock, "Action: failed\r\n");
353
354                 if (nerrors == 1)
355                     /* one error applies to all users */
356                     error = errors[0];
357                 else if (nerrors > nusers)
358                 {
359                     SockPrintf(sock, "Internal error: SMTP error count doesn't match number of recipients.\r\n");
360                     break;
361                 }
362                 else
363                     /* errors correspond 1-1 to selected users */
364                     error = errors[nusers++];
365                 
366                 if (strlen(error) > 9 && isdigit(error[4])
367                         && error[5] == '.' && isdigit(error[6])
368                         && error[7] == '.' && isdigit(error[8]))
369                     /* Enhanced status code available, use it */
370                     SockPrintf(sock, "Status: %5.5s\r\n", &(error[4]));
371                 else
372                     /* Enhanced status code not available, fake one */
373                     SockPrintf(sock, "Status: %c.0.0\r\n", error[0]);
374                 SockPrintf(sock, "Diagnostic-Code: %s\r\n", error);
375             }
376         SockPrintf(sock, "\r\n");
377     }
378
379     /* RFC1892 part 3 -- headers of undelivered message */
380     SockPrintf(sock, "--%s\r\n", boundary); 
381     SockPrintf(sock, "Content-Type: text/rfc822-headers\r\n");
382     SockPrintf(sock, "\r\n");
383     SockWrite(sock, msg->headers, strlen(msg->headers));
384     SockPrintf(sock, "\r\n");
385     SockPrintf(sock, "--%s--\r\n", boundary); 
386
387     if (SMTP_eom(sock) != SM_OK || SMTP_quit(sock))
388         return(FALSE);
389
390     SockClose(sock);
391
392     return(TRUE);
393 }
394
395 static int handle_smtp_report(struct query *ctl, struct msgblk *msg)
396 /* handle SMTP errors based on the content of SMTP_response */
397 /* return of PS_REFUSED deletes mail from the server; PS_TRANSIENT keeps it */
398 {
399     int smtperr = atoi(smtp_response);
400     char *responses[1];
401
402     xalloca(responses[0], char *, strlen(smtp_response)+1);
403     strcpy(responses[0], smtp_response);
404
405     SMTP_rset(ctl->smtp_socket);    /* stay on the safe side */
406
407     if (outlevel >= O_DEBUG)
408         report(stdout, _("Saved error is still %d\n"), smtperr);
409
410     /*
411      * Note: send_bouncemail message strings are not made subject
412      * to gettext translation because (a) they're going to be 
413      * embedded in a text/plain 7bit part, and (b) they're
414      * going to be associated with listener error-response
415      * messages, which are probably in English (none of the
416      * MTAs I know about are internationalized).
417      */
418     if (str_find(&ctl->antispam, smtperr))
419     {
420         /*
421          * SMTP listener explicitly refuses to deliver mail
422          * coming from this address, probably due to an
423          * anti-spam domain exclusion.  Respect this.  Don't
424          * try to ship the message, and don't prevent it from
425          * being deleted.  There's no point in bouncing the
426          * email either since most spammers don't put their
427          * real return email address anywhere in the headers
428          * (unless the user insists with the SET SPAMBOUNCE
429          * config option).
430          *
431          * Default values:
432          *
433          * 571 = sendmail's "unsolicited email refused"
434          * 550 = exim's new antispam response (temporary)
435          * 501 = exim's old antispam response
436          * 554 = Postfix antispam response.
437          *
438          */
439         if (run.spambounce)
440                 send_bouncemail(ctl, msg, XMIT_ACCEPT,
441                         "Our spam filter rejected this transaction.\r\n", 
442                         1, responses);
443         return(PS_REFUSED);
444     }
445
446     /*
447      * Suppress error message only if the response specifically 
448      * meant `excluded for policy reasons'.  We *should* see
449      * an error when the return code is less specific.
450      */
451     if (smtperr >= 400)
452         report(stderr, _("%cMTP error: %s\n"), 
453               ctl->listener,
454               responses[0]);
455
456     switch (smtperr)
457     {
458     case 552: /* message exceeds fixed maximum message size */
459         /*
460          * Permanent no-go condition on the
461          * ESMTP server.  Don't try to ship the message, 
462          * and allow it to be deleted.
463          */
464         send_bouncemail(ctl, msg, XMIT_ACCEPT,
465                         "This message was too large (SMTP error 552).\r\n", 
466                         1, responses);
467         return(run.bouncemail ? PS_REFUSED : PS_TRANSIENT);
468   
469     case 553: /* invalid sending domain */
470         /*
471          * These latter days 553 usually means a spammer is trying to
472          * cover his tracks.  We never bouncemail on these, because 
473          * (a) the return address is invalid by definition, and 
474          * (b) we wouldn't want spammers to get confirmation that
475          * this address is live, anyway.
476          */
477         send_bouncemail(ctl, msg, XMIT_ACCEPT,
478                         "Invalid address in MAIL FROM (SMTP error 553).\r\n", 
479                         1, responses);
480         return(PS_REFUSED);
481
482     default:
483         /* bounce non-transient errors back to the sender */
484         if (smtperr >= 500 && smtperr <= 599)
485             if (send_bouncemail(ctl, msg, XMIT_ACCEPT,
486                                 "General SMTP/ESMTP error.\r\n", 
487                                 1, responses))
488                 return(run.bouncemail ? PS_REFUSED : PS_TRANSIENT);
489         /*
490          * We're going to end up here on 4xx errors, like:
491          *
492          * 451: temporarily unable to identify sender (exim)
493          * 452: temporary out-of-queue-space condition on the ESMTP server.
494          *
495          * These are temporary errors.  Don't try to ship the message,
496          * and suppress deletion so it can be retried on a future
497          * retrieval cycle.
498          *
499          * Bouncemail *might* be appropriate here as a delay
500          * notification (note; if we ever add this, we must make
501          * sure the RFC1894 Action field is "delayed" rather thwn
502          * "failed").  But it's not really necessary because
503          * these are not actual failures, we're very likely to be
504          * able to recover on the next cycle.
505          */
506         return(PS_TRANSIENT);
507     }
508 }
509
510 int open_sink(struct query *ctl, struct msgblk *msg,
511               int *good_addresses, int *bad_addresses)
512 /* set up sinkfp to be an input sink we can ship a message to */
513 {
514     struct      idlist *idp;
515 #ifdef HAVE_SIGACTION
516     struct      sigaction sa_new;
517 #endif /* HAVE_SIGACTION */
518
519     *bad_addresses = *good_addresses = 0;
520
521     if (ctl->bsmtp)             /* dump to a BSMTP batch file */
522     {
523         if (strcmp(ctl->bsmtp, "-") == 0)
524             sinkfp = stdout;
525         else
526             sinkfp = fopen(ctl->bsmtp, "a");
527
528         /* see the ap computation under the SMTP branch */
529         fprintf(sinkfp, 
530                 "MAIL FROM: %s", (msg->return_path[0]) ? msg->return_path : user);
531
532         if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
533             fputs(" BODY=8BITMIME", sinkfp);
534         else if (ctl->mimemsg & MSG_IS_7BIT)
535             fputs(" BODY=7BIT", sinkfp);
536
537         /* exim's BSMTP processor does not handle SIZE */
538         /* fprintf(sinkfp, " SIZE=%d", msg->reallen); */
539
540         fprintf(sinkfp, "\r\n");
541
542         /*
543          * RFC 1123 requires that the domain name part of the
544          * RCPT TO address be "canonicalized", that is a FQDN
545          * or MX but not a CNAME.  Some listeners (like exim)
546          * enforce this.  Now that we have the actual hostname,
547          * compute what we should canonicalize with.
548          */
549         ctl->destaddr = ctl->smtpaddress ? ctl->smtpaddress : "localhost";
550
551         *bad_addresses = 0;
552         for (idp = msg->recipients; idp; idp = idp->next)
553             if (idp->val.status.mark == XMIT_ACCEPT)
554             {
555                 if (ctl->smtpname)
556                     fprintf(sinkfp, "RCPT TO: %s\r\n", ctl->smtpname);
557                 else if (strchr(idp->id, '@'))
558                     fprintf(sinkfp,
559                             "RCPT TO: %s\r\n", idp->id);
560                 else
561                     fprintf(sinkfp,
562                             "RCPT TO: %s@%s\r\n", idp->id, ctl->destaddr);
563                 *good_addresses = 0;
564             }
565
566         fputs("DATA\r\n", sinkfp);
567
568         if (ferror(sinkfp))
569         {
570             report(stderr, _("BSMTP file open or preamble write failed\n"));
571             return(PS_BSMTP);
572         }
573     }
574
575     /* 
576      * Try to forward to an SMTP or LMTP listener.  If the attempt to 
577      * open a socket fails, fall through to attempt delivery via
578      * local MDA.
579      */
580     else if (!ctl->mda && smtp_open(ctl) != -1)
581     {
582         const char      *ap;
583         char            options[MSGBUFSIZE]; 
584         char            addr[HOSTLEN+USERNAMELEN+1];
585         char            **from_responses;
586         int             total_addresses;
587
588         /*
589          * Compute ESMTP options.
590          */
591         options[0] = '\0';
592         if (ctl->server.esmtp_options & ESMTP_8BITMIME) {
593              if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT))
594                 strcpy(options, " BODY=8BITMIME");
595              else if (ctl->mimemsg & MSG_IS_7BIT)
596                 strcpy(options, " BODY=7BIT");
597         }
598
599         if ((ctl->server.esmtp_options & ESMTP_SIZE) && msg->reallen > 0)
600             sprintf(options + strlen(options), " SIZE=%d", msg->reallen);
601
602         /*
603          * Try to get the SMTP listener to take the Return-Path
604          * address as MAIL FROM.  If it won't, fall back on the
605          * remotename and mailserver host.  This won't affect replies,
606          * which use the header From address anyway; the MAIL FROM
607          * address is a place for the SMTP listener to send
608          * bouncemail.  The point is to guarantee a FQDN in the MAIL
609          * FROM line -- some SMTP listeners, like smail, become
610          * unhappy otherwise.
611          *
612          * RFC 1123 requires that the domain name part of the
613          * MAIL FROM address be "canonicalized", that is a
614          * FQDN or MX but not a CNAME.  We'll assume the Return-Path
615          * header is already in this form here (it certainly
616          * is if rewrite is on).  RFC 1123 is silent on whether
617          * a nonexistent hostname part is considered canonical.
618          *
619          * This is a potential problem if the MTAs further upstream
620          * didn't pass canonicalized From/Return-Path lines, *and* the
621          * local SMTP listener insists on them. 
622          */
623         if (!msg->return_path[0])
624         {
625 #ifdef HAVE_SNPRINTF
626             snprintf(addr, sizeof(addr),
627 #else
628             sprintf(addr,
629 #endif /* HAVE_SNPRINTF */
630                   "%s@%s", ctl->remotename, ctl->server.truename);
631             ap = addr;
632         }
633         else if (strchr(msg->return_path, '@'))
634             ap = msg->return_path;
635         else            /* in case Return-Path existed but was local */
636         {
637 #ifdef HAVE_SNPRINTF
638             snprintf(addr, sizeof(addr),
639 #else
640             sprintf(addr,
641 #endif /* HAVE_SNPRINTF */
642                     "%s@%s", msg->return_path, ctl->server.truename);
643             ap = addr;
644         }
645
646         if (SMTP_from(ctl->smtp_socket, ap, options) != SM_OK)
647             return(handle_smtp_report(ctl, msg));
648
649         /*
650          * Now list the recipient addressees
651          */
652         total_addresses = 0;
653         for (idp = msg->recipients; idp; idp = idp->next)
654             total_addresses++;
655         xalloca(from_responses, char **, sizeof(char *) * total_addresses);
656         for (idp = msg->recipients; idp; idp = idp->next)
657             if (idp->val.status.mark == XMIT_ACCEPT)
658             {
659                 if (strchr(idp->id, '@'))
660                     strcpy(addr, idp->id);
661                 else {
662                     if (ctl->smtpname) {
663 #ifdef HAVE_SNPRINTF
664                         snprintf(addr, sizeof(addr)-1, "%s", ctl->smtpname);
665 #else
666                         sprintf(addr, "%s", ctl->smtpname);
667 #endif /* HAVE_SNPRINTF */
668
669                     } else {
670 #ifdef HAVE_SNPRINTF
671                       snprintf(addr, sizeof(addr)-1, "%s@%s", idp->id, ctl->destaddr);
672 #else
673                       sprintf(addr, "%s@%s", idp->id, ctl->destaddr);
674 #endif /* HAVE_SNPRINTF */
675                     }
676                 }
677                 if (SMTP_rcpt(ctl->smtp_socket, addr) == SM_OK)
678                     (*good_addresses)++;
679                 else
680                 {
681                     char        errbuf[POPBUFSIZE];
682
683 #ifdef __UNUSED__
684                     /*
685                      * I don't remember how this got in here, but it doesn't
686                      * work.  The obvious symptom is that no bounce message
687                      * is sent for a nonexistent user.  Less obviously
688                      * Forwarding to postmaster also does not work. The body is
689                      * discarded.
690                      *
691                      * If a mail is sent to one valid and one invalid
692                      * user, the mail does not go to the valid user
693                      * also as the body is discarded after calling
694                      * RSET!
695                      */
696                     int res;
697                     if ((res = handle_smtp_report(ctl, msg))==PS_REFUSED)
698                         return(PS_REFUSED);
699 #endif /* __UNUSED__ */
700
701 #ifdef HAVE_SNPRINTF
702                     snprintf(errbuf, sizeof(errbuf), "%s: %s",
703                                     idp->id, smtp_response);
704 #else
705                     strncpy(errbuf, idp->id, sizeof(errbuf));
706                     strcat(errbuf, ": ");
707                     strcat(errbuf, smtp_response);
708 #endif /* HAVE_SNPRINTF */
709
710                     xalloca(from_responses[*bad_addresses], 
711                             char *, 
712                             strlen(errbuf)+1);
713                     strcpy(from_responses[*bad_addresses], errbuf);
714
715                     (*bad_addresses)++;
716                     idp->val.status.mark = XMIT_RCPTBAD;
717                     if (outlevel >= O_VERBOSE)
718                         report(stderr, 
719                               _("%cMTP listener doesn't like recipient address `%s'\n"),
720                               ctl->listener, addr);
721                 }
722             }
723         if (*bad_addresses)
724             send_bouncemail(ctl, msg, XMIT_RCPTBAD,
725                             "Some addresses were rejected by the MDA fetchmail forwards to.\r\n",
726                             *bad_addresses, from_responses);
727         /*
728          * It's tempting to do local notification only if bouncemail was
729          * insufficient -- that is, to add && total_addresses > *bad_addresses
730          * to the test here.  The problem with this theory is that it would
731          * make initial diagnosis of a broken multidrop configuration very
732          * hard -- most single-recipient messages would just invisibly bounce.
733          */
734         if (!(*good_addresses)) 
735         {
736             if (!run.postmaster[0])
737             {
738                 if (outlevel >= O_VERBOSE)
739                     report(stderr, _("no address matches; no postmaster set.\n"));
740                 SMTP_rset(ctl->smtp_socket);    /* required by RFC1870 */
741                 return(PS_REFUSED);
742             }
743             if (strchr(run.postmaster, '@'))
744                 strncpy(addr, run.postmaster, sizeof(addr));
745             else
746             {
747 #ifdef HAVE_SNPRINTF
748                 snprintf(addr, sizeof(addr)-1, "%s@%s", run.postmaster, ctl->destaddr);
749 #else
750                 sprintf(addr, "%s@%s", run.postmaster, ctl->destaddr);
751 #endif /* HAVE_SNPRINTF */
752             }
753
754             if (SMTP_rcpt(ctl->smtp_socket, addr) != SM_OK)
755             {
756                 report(stderr, _("can't even send to %s!\n"), run.postmaster);
757                 SMTP_rset(ctl->smtp_socket);    /* required by RFC1870 */
758                 return(PS_SMTP);
759             }
760
761             if (outlevel >= O_VERBOSE)
762                 report(stderr, _("no address matches; forwarding to %s.\n"), run.postmaster);
763         }
764
765         /* 
766          * Tell the listener we're ready to send data.
767          * Some listeners (like zmailer) may return antispam errors here.
768          */
769         if (SMTP_data(ctl->smtp_socket) != SM_OK)
770             return(handle_smtp_report(ctl, msg));
771     }
772
773     /*
774      * Awkward case.  User didn't specify an MDA.  Our attempt to get a
775      * listener socket failed.  Try to cope anyway -- initial configuration
776      * may have found procmail.
777      */
778     else if (!ctl->mda)
779     {
780         report(stderr, _("%cMTP connect to %s failed\n"),
781                ctl->listener,
782                ctl->smtphost ? ctl->smtphost : "localhost");
783
784 #ifndef FALLBACK_MDA
785         /* No fallback MDA declared.  Bail out. */
786         return(PS_SMTP);
787 #else
788         /*
789          * If user had things set up to forward offsite, no way
790          * we want to deliver locally!
791          */
792         if (ctl->smtphost && strcmp(ctl->smtphost, "localhost"))
793             return(PS_SMTP);
794
795         /* 
796          * User was delivering locally.  We have a fallback MDA.
797          * Latch it in place, logging the error, and fall through.
798          */
799         ctl->mda = FALLBACK_MDA;
800
801         report(stderr, _("can't raise the listener; falling back to %s"),
802                          FALLBACK_MDA);
803 #endif
804     }
805
806     if (ctl->mda)               /* must deliver through an MDA */
807     {
808         int     length = 0, fromlen = 0, nameslen = 0;
809         char    *names = NULL, *before, *after, *from = NULL;
810
811         ctl->destaddr = "localhost";
812
813         for (idp = msg->recipients; idp; idp = idp->next)
814             if (idp->val.status.mark == XMIT_ACCEPT)
815                 (*good_addresses)++;
816
817         length = strlen(ctl->mda);
818         before = xstrdup(ctl->mda);
819
820         /* get user addresses for %T (or %s for backward compatibility) */
821         if (strstr(before, "%s") || strstr(before, "%T"))
822         {
823             /*
824              * We go through this in order to be able to handle very
825              * long lists of users and (re)implement %s.
826              */
827             nameslen = 0;
828             for (idp = msg->recipients; idp; idp = idp->next)
829                 if ((idp->val.status.mark == XMIT_ACCEPT))
830                     nameslen += (strlen(idp->id) + 1);  /* string + ' ' */
831             if ((*good_addresses == 0))
832                 nameslen = strlen(run.postmaster);
833
834             names = (char *)xmalloc(nameslen + 1);      /* account for '\0' */
835             if (*good_addresses == 0)
836                 strcpy(names, run.postmaster);
837             else
838             {
839                 names[0] = '\0';
840                 for (idp = msg->recipients; idp; idp = idp->next)
841                     if (idp->val.status.mark == XMIT_ACCEPT)
842                     {
843                         strcat(names, idp->id);
844                         strcat(names, " ");
845                     }
846                 names[--nameslen] = '\0';       /* chop trailing space */
847             }
848
849             /* sanitize names in order to contain only harmless shell chars */
850             sanitize(names);
851         }
852
853         /* get From address for %F */
854         if (strstr(before, "%F"))
855         {
856             from = xstrdup(msg->return_path);
857
858             /* sanitize from in order to contain *only* harmless shell chars */
859             sanitize(from);
860
861             fromlen = strlen(from);
862         }
863
864         /* do we have to build an mda string? */
865         if (names || from) 
866         {               
867             char        *sp, *dp;
868
869             /* find length of resulting mda string */
870             sp = before;
871             while ((sp = strstr(sp, "%s"))) {
872                 length += nameslen - 2; /* subtract %s */
873                 sp += 2;
874             }
875             sp = before;
876             while ((sp = strstr(sp, "%T"))) {
877                 length += nameslen - 2; /* subtract %T */
878                 sp += 2;
879             }
880             sp = before;
881             while ((sp = strstr(sp, "%F"))) {
882                 length += fromlen - 2;  /* subtract %F */
883                 sp += 2;
884             }
885                 
886             after = xmalloc(length + 1);
887
888             /* copy mda source string to after, while expanding %[sTF] */
889             for (dp = after, sp = before; (*dp = *sp); dp++, sp++) {
890                 if (sp[0] != '%')       continue;
891
892                 /* need to expand? BTW, no here overflow, because in
893                 ** the worst case (end of string) sp[1] == '\0' */
894                 if (sp[1] == 's' || sp[1] == 'T') {
895                     strcpy(dp, names);
896                     dp += nameslen;
897                     sp++;       /* position sp over [sT] */
898                     dp--;       /* adjust dp */
899                 } else if (sp[1] == 'F') {
900                     strcpy(dp, from);
901                     dp += fromlen;
902                     sp++;       /* position sp over F */
903                     dp--;       /* adjust dp */
904                 }
905             }
906
907             if (names) {
908                 free(names);
909                 names = NULL;
910             }
911             if (from) {
912                 free(from);
913                 from = NULL;
914             }
915
916             free(before);
917
918             before = after;
919         }
920
921
922         if (outlevel >= O_DEBUG)
923             report(stdout, _("about to deliver with: %s\n"), before);
924
925 #ifdef HAVE_SETEUID
926         /*
927          * Arrange to run with user's permissions if we're root.
928          * This will initialize the ownership of any files the
929          * MDA creates properly.  (The seteuid call is available
930          * under all BSDs and Linux)
931          */
932         seteuid(ctl->uid);
933 #endif /* HAVE_SETEUID */
934
935         sinkfp = popen(before, "w");
936         free(before);
937         before = NULL;
938
939 #ifdef HAVE_SETEUID
940         /* this will fail quietly if we didn't start as root */
941         seteuid(0);
942 #endif /* HAVE_SETEUID */
943
944         if (!sinkfp)
945         {
946             report(stderr, _("MDA open failed\n"));
947             return(PS_IOERR);
948         }
949
950         /*
951          * We need to disable the normal SIGCHLD handling here because 
952          * sigchld_handler() would reap away the error status, returning
953          * error status instead of 0 for successful completion.
954          */
955 #ifndef HAVE_SIGACTION
956         sigchld = signal(SIGCHLD, SIG_DFL);
957 #else
958         memset (&sa_new, 0, sizeof sa_new);
959         sigemptyset (&sa_new.sa_mask);
960         sa_new.sa_handler = SIG_DFL;
961         sigaction (SIGCHLD, &sa_new, &sa_old);
962 #endif /* HAVE_SIGACTION */
963     }
964
965     /*
966      * We need to stash this away in order to know how many
967      * response lines to expect after the LMTP end-of-message.
968      */
969     lmtp_responses = *good_addresses;
970
971     return(PS_SUCCESS);
972 }
973
974 void release_sink(struct query *ctl)
975 /* release the per-message output sink, whether it's a pipe or SMTP socket */
976 {
977     if (ctl->bsmtp && sinkfp)
978         fclose(sinkfp);
979     else if (ctl->mda)
980     {
981         if (sinkfp)
982         {
983             pclose(sinkfp);
984             sinkfp = (FILE *)NULL;
985         }
986 #ifndef HAVE_SIGACTION
987         signal(SIGCHLD, sigchld);
988 #else
989         sigaction (SIGCHLD, &sa_old, NULL);
990 #endif /* HAVE_SIGACTION */
991         deal_with_sigchld();
992     }
993 }
994
995 int close_sink(struct query *ctl, struct msgblk *msg, flag forward)
996 /* perform end-of-message actions on the current output sink */
997 {
998     if (ctl->mda)
999     {
1000         int rc;
1001
1002         /* close the delivery pipe, we'll reopen before next message */
1003         if (sinkfp)
1004         {
1005             rc = pclose(sinkfp);
1006             sinkfp = (FILE *)NULL;
1007         }
1008         else
1009             rc = 0;
1010 #ifndef HAVE_SIGACTION
1011         signal(SIGCHLD, sigchld);
1012 #else
1013         sigaction (SIGCHLD, &sa_old, NULL);
1014 #endif /* HAVE_SIGACTION */
1015         deal_with_sigchld();
1016         if (rc)
1017         {
1018             report(stderr, 
1019                    _("MDA returned nonzero status %d\n"), rc);
1020             return(FALSE);
1021         }
1022     }
1023     else if (ctl->bsmtp && sinkfp)
1024     {
1025         int error;
1026
1027         /* implicit disk-full check here... */
1028         fputs(".\r\n", sinkfp);
1029         error = ferror(sinkfp);
1030         if (strcmp(ctl->bsmtp, "-"))
1031             if (fclose(sinkfp) == EOF) error = 1;
1032         if (error)
1033         {
1034             report(stderr, 
1035                    _("Message termination or close of BSMTP file failed\n"));
1036             return(FALSE);
1037         }
1038     }
1039     else if (forward)
1040     {
1041         /* write message terminator */
1042         if (SMTP_eom(ctl->smtp_socket) != SM_OK)
1043         {
1044             if (handle_smtp_report(ctl, msg) != PS_REFUSED)
1045                 return(FALSE);
1046             else
1047             {
1048                 report(stderr, _("SMTP listener refused delivery\n"));
1049                 return(TRUE);
1050             }
1051         }
1052
1053         /*
1054          * If this is an SMTP connection, SMTP_eom() ate the response.
1055          * But could be this is an LMTP connection, in which case we have to
1056          * interpret either (a) a single 503 response meaning there
1057          * were no successful RCPT TOs, or (b) a variable number of
1058          * responses, one for each successful RCPT TO.  We need to send
1059          * bouncemail on each failed response and then return TRUE anyway,
1060          * otherwise the message will get left in the queue and resent
1061          * to people who got it the first time.
1062          */
1063         if (ctl->listener == LMTP_MODE)
1064         {
1065             if (lmtp_responses == 0)
1066             {
1067                 SMTP_ok(ctl->smtp_socket); 
1068
1069                 /*
1070                  * According to RFC2033, 503 is the only legal response
1071                  * if no RCPT TO commands succeeded.  No error recovery
1072                  * is really possible here, as we have no idea what
1073                  * insane thing the listener might be doing if it doesn't
1074                  * comply.
1075                  */
1076                 if (atoi(smtp_response) == 503)
1077                     report(stderr, _("LMTP delivery error on EOM\n"));
1078                 else
1079                     report(stderr,
1080                           _("Unexpected non-503 response to LMTP EOM: %s\n"),
1081                           smtp_response);
1082
1083                 /*
1084                  * It's not completely clear what to do here.  We choose to
1085                  * interpret delivery failure here as a transient error, 
1086                  * the same way SMTP delivery failure is handled.  If we're
1087                  * wrong, an undead message will get stuck in the queue.
1088                  */
1089                 return(FALSE);
1090             }
1091             else
1092             {
1093                 int     i, errors;
1094                 char    **responses;
1095
1096                 /* eat the RFC2033-required responses, saving errors */ 
1097                 xalloca(responses, char **, sizeof(char *) * lmtp_responses);
1098                 for (errors = i = 0; i < lmtp_responses; i++)
1099                 {
1100                     if (SMTP_ok(ctl->smtp_socket) == SM_OK)
1101                         responses[i] = (char *)NULL;
1102                     else
1103                     {
1104                         xalloca(responses[errors], 
1105                                 char *, 
1106                                 strlen(smtp_response)+1);
1107                         strcpy(responses[errors], smtp_response);
1108                         errors++;
1109                     }
1110                 }
1111
1112                 if (errors == 0)
1113                     return(TRUE);       /* all deliveries succeeded */
1114                 else
1115                     /*
1116                      * One or more deliveries failed.
1117                      * If we can bounce a failures list back to the
1118                      * sender, and the postmaster does not want to
1119                      * deal with the bounces return TRUE, deleting the
1120                      * message from the server so it won't be
1121                      * re-forwarded on subsequent poll cycles.
1122                      */
1123                   return(send_bouncemail(ctl, msg, XMIT_ACCEPT,
1124                                          "LSMTP partial delivery failure.\r\n",
1125                                          errors, responses));
1126             }
1127         }
1128     }
1129
1130     return(TRUE);
1131 }
1132
1133 int open_warning_by_mail(struct query *ctl, struct msgblk *msg)
1134 /* set up output sink for a mailed warning to calling user */
1135 {
1136     int good, bad;
1137
1138     /*
1139      * Dispatching warning email is a little complicated.  The problem is
1140      * that we have to deal with three distinct cases:
1141      *
1142      * 1. Single-drop running from user account.  Warning mail should
1143      * go to the local name for which we're collecting (coincides
1144      * with calling user).
1145      *
1146      * 2. Single-drop running from root or other privileged ID, with rc
1147      * file generated on the fly (Ken Estes's weird setup...)  Mail
1148      * should go to the local name for which we're collecting (does not 
1149      * coincide with calling user).
1150      * 
1151      * 3. Multidrop.  Mail must go to postmaster.  We leave the recipients
1152      * member null so this message will fall through to run.postmaster.
1153      *
1154      * The zero in the reallen element means we won't pass a SIZE
1155      * option to ESMTP; the message length would be more trouble than
1156      * it's worth to compute.
1157      */
1158     struct msgblk reply = {NULL, NULL, "FETCHMAIL-DAEMON@", 0};
1159
1160     strcat(reply.return_path, fetchmailhost);
1161
1162     if (!MULTIDROP(ctl))                /* send to calling user */
1163     {
1164         int status;
1165
1166         save_str(&reply.recipients, ctl->localnames->id, XMIT_ACCEPT);
1167         status = open_sink(ctl, &reply, &good, &bad);
1168         free_str_list(&reply.recipients);
1169         return(status);
1170     }
1171     else                                /* send to postmaster  */
1172         return(open_sink(ctl, &reply, &good, &bad));
1173 }
1174
1175 #if defined(HAVE_STDARG_H)
1176 void stuff_warning(struct query *ctl, const char *fmt, ... )
1177 #else
1178 void stuff_warning(struct query *ctl, fmt, va_alist)
1179 struct query *ctl;
1180 const char *fmt;        /* printf-style format */
1181 va_dcl
1182 #endif
1183 /* format and ship a warning message line by mail */
1184 {
1185     char        buf[POPBUFSIZE];
1186     va_list ap;
1187
1188     /*
1189      * stuffline() requires its input to be writeable (for CR stripping),
1190      * so we needed to copy the message to a writeable buffer anyway in
1191      * case it was a string constant.  We make a virtue of that necessity
1192      * here by supporting stdargs/varargs.
1193      */
1194 #if defined(HAVE_STDARG_H)
1195     va_start(ap, fmt) ;
1196 #else
1197     va_start(ap);
1198 #endif
1199 #ifdef HAVE_VSNPRINTF
1200     vsnprintf(buf, sizeof(buf), fmt, ap);
1201 #else
1202     vsprintf(buf, fmt, ap);
1203 #endif
1204     va_end(ap);
1205
1206 #ifdef HAVE_SNPRINTF
1207     snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), "\r\n");
1208 #else
1209     strcat(buf, "\r\n");
1210 #endif /* HAVE_SNPRINTF */
1211
1212     stuffline(ctl, buf);
1213 }
1214
1215 void close_warning_by_mail(struct query *ctl, struct msgblk *msg)
1216 /* sign and send mailed warnings */
1217 {
1218     stuff_warning(ctl, _("--\r\n\t\t\t\tThe Fetchmail Daemon\r\n"));
1219     close_sink(ctl, msg, TRUE);
1220 }
1221
1222 /* sink.c ends here */