]> Pileus Git - ~andy/fetchmail/blob - transact.c
Make CompUserResp/CheckUserAuth fwd decls true prototypes.
[~andy/fetchmail] / transact.c
1 /*
2  * transact.c -- transaction primitives for the fetchmail driver loop
3  *
4  * Copyright 2001 by Eric S. Raymond
5  * For license terms, see the file COPYING in this directory.
6  */
7
8 #include  "config.h"
9 #include  <stdio.h>
10 #include  <string.h>
11 #include  <ctype.h>
12 #ifdef HAVE_MEMORY_H
13 #include  <memory.h>
14 #endif /* HAVE_MEMORY_H */
15 #if defined(STDC_HEADERS)
16 #include  <stdlib.h>
17 #endif
18 #if defined(HAVE_UNISTD_H)
19 #include <unistd.h>
20 #endif
21 #if defined(HAVE_STDARG_H)
22 #include  <stdarg.h>
23 #else
24 #include  <varargs.h>
25 #endif
26
27 #ifdef HAVE_NET_SOCKET_H
28 #include <net/socket.h>
29 #endif
30 #include <sys/socket.h>
31 #include <netdb.h>
32 #include "fm_md5.h"
33
34 #include "i18n.h"
35 #include "socket.h"
36 #include "fetchmail.h"
37
38 /* global variables: please reinitialize them explicitly for proper
39  * working in daemon mode */
40
41 /* session variables initialized in init_transact() */
42 int suppress_tags = FALSE;      /* emit tags? */
43 char tag[TAGLEN];
44 static int tagnum;
45 #define GENSYM  (sprintf(tag, "A%04d", ++tagnum % TAGMOD), tag)
46 static const struct method *protocol;
47 char shroud[PASSWORDLEN*2+3];   /* string to shroud in debug output */
48
49 /* session variables initialized in do_session() */
50 int mytimeout;          /* value of nonreponse timeout */
51
52 /* mail variables initialized in readheaders() */
53 struct msgblk msgblk;
54 static int accept_count, reject_count;
55
56 /** add given address to xmit_names if it exactly matches a full address
57  * \returns nonzero if matched */
58 static int map_address(const char *addr, struct query *ctl, struct idlist **xmit_names)
59 {
60     const char  *lname;
61
62     lname = idpair_find(&ctl->localnames, addr);
63     if (lname) {
64         if (outlevel >= O_DEBUG)
65             report(stdout, GT_("mapped address %s to local %s\n"), addr, lname);
66         save_str(xmit_names, lname, XMIT_ACCEPT);
67         accept_count++;
68     }
69     return lname != NULL;
70 }
71
72 /** add given name to xmit_names if it matches declared localnames */
73 static void map_name(const char *name, struct query *ctl, struct idlist **xmit_names)
74 /*   name:       name to map */
75 /*   ctl:        list of permissible aliases */
76 /*   xmit_names: list of recipient names parsed out */
77 {
78     const char  *lname;
79
80     lname = idpair_find(&ctl->localnames, name);
81     if (!lname && ctl->wildcard)
82         lname = name;
83
84     if (lname != (char *)NULL)
85     {
86         if (outlevel >= O_DEBUG)
87             report(stdout, GT_("mapped %s to local %s\n"), name, lname);
88         save_str(xmit_names, lname, XMIT_ACCEPT);
89         accept_count++;
90     }
91 }
92
93 static void find_server_names(const char *hdr,
94                               struct query *ctl,
95                               struct idlist **xmit_names)
96 /* parse names out of a RFC822 header into an ID list */
97 /*   hdr:               RFC822 header in question */
98 /*   ctl:               list of permissible aliases */
99 /*   xmit_names:        list of recipient names parsed out */
100 {
101     if (hdr == (char *)NULL)
102         return;
103     else
104     {
105         char    *cp;
106
107         for (cp = nxtaddr(hdr); cp != NULL; cp = nxtaddr(NULL))
108         {
109             char        *atsign;
110
111             /* 
112              * Handle empty address from a To: header containing only 
113              * a comment.
114              */
115             if (!*cp)
116                 continue;
117
118             /*
119              * If the name of the user begins with a qmail virtual
120              * domain prefix, ignore the prefix.  Doing this here
121              * means qvirtual will work either with ordinary name
122              * mapping or with a localdomains option.
123              */
124             if (ctl->server.qvirtual)
125             {
126                 int sl = strlen(ctl->server.qvirtual);
127  
128                 if (!strncasecmp((char *)cp, ctl->server.qvirtual, sl))
129                     cp += sl;
130             }
131
132             if ((atsign = strchr((char *)cp, '@'))) {
133                 struct idlist   *idp;
134
135                 /* try to match full address first, this takes
136                  * precedence over localdomains and alias mappings */
137                 if (map_address(cp, ctl, xmit_names))
138                     goto nomap;
139
140                 /*
141                  * Does a trailing segment of the hostname match something
142                  * on the localdomains list?  If so, save the whole name
143                  * and keep going.
144                  */
145                 for (idp = ctl->server.localdomains; idp; idp = idp->next) {
146                     char        *rhs;
147
148                     rhs = atsign + (strlen(atsign) - strlen(idp->id));
149                     if (rhs > atsign &&
150                         (rhs[-1] == '.' || rhs[-1] == '@') &&
151                         strcasecmp(rhs, idp->id) == 0)
152                     {
153                         if (outlevel >= O_DEBUG)
154                             report(stdout, GT_("passed through %s matching %s\n"), 
155                                   cp, idp->id);
156                         save_str(xmit_names, (const char *)cp, XMIT_ACCEPT);
157                         accept_count++;
158                         goto nomap;
159                     }
160                 }
161
162                 /* if we matched a local domain, idp != NULL */
163                 if (!idp)
164                 {
165                     /*
166                      * Check to see if the right-hand part is an alias
167                      * or MX equivalent of the mailserver.  If it's
168                      * not, skip this name.  If it is, we'll keep
169                      * going and try to find a mapping to a client name.
170                      */
171                     if (!is_host_alias(atsign+1, ctl, &ai0))
172                     {
173                         save_str(xmit_names, cp, XMIT_REJECT);
174                         reject_count++;
175                         continue;
176                     }
177                 }
178                 atsign[0] = '\0';
179                 map_name(cp, ctl, xmit_names);
180             nomap:;
181             }
182         }
183     }
184 }
185
186 /*
187  * Return zero on a syntactically invalid address, nz on a valid one.
188  *
189  * This used to be strchr(a, '.'), but it turns out that lines like this
190  *
191  * Received: from punt-1.mail.demon.net by mailstore for markb@ordern.com
192  *          id 938765929:10:27223:2; Fri, 01 Oct 99 08:18:49 GMT
193  *
194  * are not uncommon.  So now we just check that the following token is
195  * not itself an email address.
196  */
197 #define VALID_ADDRESS(a)        !strchr(a, '@')
198
199 static char *parse_received(struct query *ctl, char *bufp)
200 /* try to extract real address from the Received line */
201 /* If a valid Received: line is found, we return the full address in
202  * a buffer which can be parsed from nxtaddr().  This is to ansure that
203  * the local domain part of the address can be passed along in 
204  * find_server_names() if it contains one.
205  * Note: We should return a dummy header containing the address 
206  * which makes nxtaddr() behave correctly. 
207  */
208 {
209     char *base, *ok = (char *)NULL;
210     static char rbuf[HOSTLEN + USERNAMELEN + 4]; 
211     struct addrinfo *ai0;
212
213 #define RBUF_WRITE(value) if (tp < rbuf+sizeof(rbuf)-1) *tp++=value
214
215     /*
216      * Try to extract the real envelope addressee.  We look here
217      * specifically for the mailserver's Received line.
218      * Note: this will only work for sendmail, or an MTA that
219      * shares sendmail's convention for embedding the envelope
220      * address in the Received line.  Sendmail itself only
221      * does this when the mail has a single recipient.
222      */
223     if (outlevel >= O_DEBUG)
224         report(stdout, GT_("analyzing Received line:\n%s"), bufp);
225
226     /* search for whitepace-surrounded "by" followed by valid address */
227     for (base = bufp;  ; base = ok + 2)
228     {
229         if (!(ok = strstr(base, "by")))
230             break;
231         else if (!isspace((unsigned char)ok[-1]) || !isspace((unsigned char)ok[2]))
232             continue;
233         else
234         {
235             char        *sp, *tp;
236
237             /* extract space-delimited token after "by" */
238             for (sp = ok + 2; isspace((unsigned char)*sp); sp++)
239                 continue;
240             tp = rbuf;
241             for (; *sp && !isspace((unsigned char)*sp); sp++)
242                 RBUF_WRITE(*sp);
243             *tp = '\0';
244
245             /* look for valid address */
246             if (VALID_ADDRESS(rbuf))
247                 break;
248             else
249                 ok = sp - 1;    /* arrange to skip this token */
250         }
251     }
252     if (ok)
253     {
254         /*
255          * If it's a DNS name of the mail server, look for the
256          * recipient name after a following "for".  Otherwise
257          * punt.
258          */
259         if (is_host_alias(rbuf, ctl, &ai0))
260         {
261             if (outlevel >= O_DEBUG)
262                 report(stdout, 
263                       GT_("line accepted, %s is an alias of the mailserver\n"), rbuf);
264         }
265         else
266         {
267             if (outlevel >= O_DEBUG)
268                 report(stdout, 
269                       GT_("line rejected, %s is not an alias of the mailserver\n"), 
270                       rbuf);
271             return(NULL);
272         }
273
274         /* search for whitepace-surrounded "for" followed by xxxx@yyyy */
275         for (base = ok + 4 + strlen(rbuf);  ; base = ok + 2)
276         {
277             if (!(ok = strstr(base, "for")))
278                 break;
279             else if (!isspace((unsigned char)ok[-1]) || !isspace((unsigned char)ok[3]))
280                 continue;
281             else
282             {
283                 char    *sp, *tp;
284
285                 /* extract space-delimited token after "for" */
286                 for (sp = ok + 3; isspace((unsigned char)*sp); sp++)
287                     continue;
288                 tp = rbuf;
289                 for (; !isspace((unsigned char)*sp); sp++)
290                     RBUF_WRITE(*sp);
291                 *tp = '\0';
292
293                 if (strchr(rbuf, '@'))
294                     break;
295                 else
296                     ok = sp - 1;        /* arrange to skip this token */
297             }
298         }
299         if (ok)
300         {
301             flag        want_gt = FALSE;
302             char        *sp, *tp;
303
304             /* char after "for" could be space or a continuation newline */
305             for (sp = ok + 4; isspace((unsigned char)*sp); sp++)
306                 continue;
307             tp = rbuf;
308             RBUF_WRITE(':');    /* Here is the hack.  This is to be friends */
309             RBUF_WRITE(' ');    /* with nxtaddr()... */
310             if (*sp == '<')
311             {
312                 want_gt = TRUE;
313                 sp++;
314             }
315             while (*sp == '@')          /* skip routes */
316                 while (*sp && *sp++ != ':')
317                     continue;
318             while (*sp
319                    && (want_gt ? (*sp != '>') : !isspace((unsigned char)*sp))
320                    && *sp != ';')
321                 if (!isspace((unsigned char)*sp))
322                 {
323                     RBUF_WRITE(*sp);
324                     sp++;
325                 }    
326                 else
327                 {
328                     /* uh oh -- whitespace here can't be right! */
329                     ok = (char *)NULL;
330                     break;
331                 }
332             RBUF_WRITE('\n');
333             *tp = '\0';
334             if (strlen(rbuf) <= 3)      /* apparently nothing has been found */
335                 ok = NULL;
336         } else
337             ok = (char *)NULL;
338     }
339
340     if (!ok)
341     {
342         if (outlevel >= O_DEBUG)
343             report(stdout, GT_("no Received address found\n"));
344         return(NULL);
345     }
346     else
347     {
348         if (outlevel >= O_DEBUG) {
349             char *lf = rbuf + strlen(rbuf)-1;
350             *lf = '\0';
351             if (outlevel >= O_DEBUG)
352                 report(stdout, GT_("found Received address `%s'\n"), rbuf+2);
353             *lf = '\n';
354         }
355         return(rbuf);
356     }
357 }
358
359 /* shared by readheaders and readbody */
360 static int sizeticker;
361
362 /** Print ticker based on a amount of data transferred of \a bytes.
363  * Increments \a *tickervar by \a bytes, and if it exceeds
364  * \a SIZETICKER, print a dot and reduce *tickervar by \a SIZETICKER. */
365 static void print_ticker(int *tickervar, int bytes)
366 {
367     *tickervar += bytes;
368     while (*tickervar >= SIZETICKER)
369     {
370         if (want_progress())
371         {
372             fputc('.', stdout);
373             fflush(stdout);
374         }
375         *tickervar -= SIZETICKER;
376     }
377 }
378
379 #define EMPTYLINE(s)   (((s)[0] == '\r' && (s)[1] == '\n' && (s)[2] == '\0') \
380                        || ((s)[0] == '\n' && (s)[1] == '\0'))
381
382 static int end_of_header (const char *s)
383 /* accept "\r*\n" as EOH in order to be bulletproof against broken survers */
384 {
385     while (s[0] == '\r')
386         s++;
387     return (s[0] == '\n' && s[1] == '\0');
388 }
389
390 int readheaders(int sock,
391                        long fetchlen,
392                        long reallen,
393                        struct query *ctl,
394                        int num,
395                        flag *suppress_readbody)
396 /* read message headers and ship to SMTP or MDA */
397 /*   sock:              to which the server is connected */
398 /*   fetchlen:          length of message according to fetch response */
399 /*   reallen:           length of message according to getsizes */
400 /*   ctl:               query control record */
401 /*   num:               index of message */
402 /*   suppress_readbody: whether call to readbody() should be supressed */
403 {
404     struct addrblk
405     {
406         int             offset;
407         struct addrblk  *next;
408     };
409     struct addrblk      *to_addrchain = NULL;
410     struct addrblk      **to_chainptr = &to_addrchain;
411     struct addrblk      *resent_to_addrchain = NULL;
412     struct addrblk      **resent_to_chainptr = &resent_to_addrchain;
413
414     char                buf[MSGBUFSIZE+1];
415     int                 from_offs, reply_to_offs, resent_from_offs;
416     int                 app_from_offs, sender_offs, resent_sender_offs;
417     int                 env_offs;
418     char                *received_for, *rcv, *cp;
419     static char         *delivered_to = NULL;
420     int                 n, oldlen, ch, remaining, skipcount;
421     size_t              linelen;
422     int                 delivered_to_count;
423     struct idlist       *idp;
424     flag                no_local_matches = FALSE;
425     flag                has_nuls;
426     int                 olderrs, good_addresses, bad_addresses;
427     int                 retain_mail = 0, refuse_mail = 0;
428     flag                already_has_return_path = FALSE;
429
430     sizeticker = 0;
431     has_nuls = FALSE;
432     msgblk.return_path[0] = '\0';
433     olderrs = ctl->errcount;
434
435     /* read message headers */
436     msgblk.reallen = reallen;
437
438     /*
439      * We used to free the header block unconditionally at the end of 
440      * readheaders, but it turns out that if close_sink() hits an error
441      * condition the code for sending bouncemail will actually look
442      * at the freed storage and coredump...
443      */
444     xfree(msgblk.headers);
445     free_str_list(&msgblk.recipients);
446     xfree(delivered_to);
447
448     /* initially, no message digest */
449     memset(ctl->digest, '\0', sizeof(ctl->digest));
450
451     received_for = NULL;
452     from_offs = reply_to_offs = resent_from_offs = app_from_offs = 
453         sender_offs = resent_sender_offs = env_offs = -1;
454     oldlen = 0;
455     msgblk.msglen = 0;
456     skipcount = 0;
457     delivered_to_count = 0;
458     ctl->mimemsg = 0;
459
460     for (remaining = fetchlen; remaining > 0 || protocol->delimited; )
461     {
462         char *line, *rline;
463
464         line = (char *)xmalloc(sizeof(buf));
465         linelen = 0;
466         line[0] = '\0';
467         do {
468             do {
469                 char    *sp, *tp;
470
471                 set_timeout(mytimeout);
472                 if ((n = SockRead(sock, buf, sizeof(buf)-1)) == -1) {
473                     set_timeout(0);
474                     free(line);
475                     return(PS_SOCKET);
476                 }
477                 set_timeout(0);
478
479                 /*
480                  * Smash out any NULs, they could wreak havoc later on.
481                  * Some network stacks seem to generate these at random,
482                  * especially (according to reports) at the beginning of the
483                  * first read.  NULs are illegal in RFC822 format.
484                  */
485                 for (sp = tp = buf; sp < buf + n; sp++)
486                     if (*sp)
487                         *tp++ = *sp;
488                 *tp = '\0';
489                 n = tp - buf;
490             } while
491                   (n == 0);
492
493             remaining -= n;
494             linelen += n;
495             msgblk.msglen += n;
496
497             /*
498              * Try to gracefully handle the case where the length of a
499              * line exceeds MSGBUFSIZE.
500              */
501             if (n && buf[n-1] != '\n') 
502             {
503                 rline = (char *) realloc(line, linelen + 1);
504                 if (rline == NULL)
505                 {
506                     free (line);
507                     return(PS_IOERR);
508                 }
509                 line = rline;
510                 memcpy(line + linelen - n, buf, n);
511                 line[linelen] = '\0';
512                 ch = ' '; /* So the next iteration starts */
513                 continue;
514             }
515
516             /* lines may not be properly CRLF terminated; fix this for qmail */
517             /* we don't want to overflow the buffer here */
518             if (ctl->forcecr && buf[n-1]=='\n' && (n==1 || buf[n-2]!='\r'))
519             {
520                 char * tcp;
521                 rline = (char *) realloc(line, linelen + 2);
522                 if (rline == NULL)
523                 {
524                     free (line);
525                     return(PS_IOERR);
526                 }
527                 line = rline;
528                 memcpy(line + linelen - n, buf, n - 1);
529                 tcp = line + linelen - 1;
530                 *tcp++ = '\r';
531                 *tcp++ = '\n';
532                 *tcp = '\0';
533                 /* n++; - not used later on */
534                 linelen++;
535             }
536             else
537             {
538                 rline = (char *) realloc(line, linelen + 1);
539                 if (rline == NULL)
540                 {
541                     free (line);
542                     return(PS_IOERR);
543                 }
544                 line = rline;
545                 memcpy(line + linelen - n, buf, n + 1);
546             }
547
548             /* check for end of headers */
549             if (end_of_header(line))
550             {
551 eoh:
552                 if (linelen != strlen (line))
553                     has_nuls = TRUE;
554                 free(line);
555                 goto process_headers;
556             }
557
558             /*
559              * Check for end of message immediately.  If one of your folders
560              * has been mangled, the delimiter may occur directly after the
561              * header.
562              */
563             if (protocol->delimited && line[0] == '.' && EMPTYLINE(line+1))
564             {
565                 if (suppress_readbody)
566                     *suppress_readbody = TRUE;
567                 goto eoh; /* above */
568             }
569
570             /*
571              * At least one brain-dead website (netmind.com) is known to
572              * send out robotmail that's missing the RFC822 delimiter blank
573              * line before the body! Without this check fetchmail segfaults.
574              * With it, we treat such messages as spam and refuse them.
575              *
576              * Frederic Marchal reported in February 2006 that hotmail
577              * or something improperly wrapped a very long TO header
578              * (wrapped without inserting whitespace in the continuation
579              * line) and found that this code thus refused a message
580              * that should have been delivered.
581              *
582              * XXX FIXME: we should probably wrap the message up as
583              * message/rfc822 attachment and forward to postmaster (Rob
584              * MacGregor)
585              */
586             if (!refuse_mail
587                 && !ctl->server.badheader == BHACCEPT
588                 && !isspace((unsigned char)line[0])
589                 && !strchr(line, ':'))
590             {
591                 if (linelen != strlen (line))
592                     has_nuls = TRUE;
593                 if (outlevel > O_SILENT)
594                     report(stdout,
595                            GT_("incorrect header line found - see manpage for bad-header option\n"));
596                 if (outlevel >= O_VERBOSE)
597                     report (stdout, GT_("line: %s"), line);
598                 refuse_mail = 1;
599             }
600
601             /* check for RFC822 continuations */
602             set_timeout(mytimeout);
603             ch = SockPeek(sock);
604             set_timeout(0);
605         } while
606             (ch == ' ' || ch == '\t');  /* continuation to next line? */
607
608         /* write the message size dots */
609         if ((outlevel > O_SILENT && outlevel < O_VERBOSE) && linelen > 0)
610         {
611             print_ticker(&sizeticker, linelen);
612         }
613
614         /*
615          * Decode MIME encoded headers. We MUST do this before
616          * looking at the Content-Type / Content-Transfer-Encoding
617          * headers (RFC 2046).
618          */
619         if ( ctl->mimedecode )
620         {
621             char *tcp;
622             UnMimeHeader(line);
623             /* the line is now shorter. So we retrace back till we find
624              * our terminating combination \n\0, we move backwards to
625              * make sure that we don't catch some \n\0 stored in the
626              * decoded part of the message */
627             for (tcp = line + linelen - 1; tcp > line && (*tcp != 0 || tcp[-1] != '\n'); tcp--);
628             if  (tcp > line) linelen = tcp - line;
629         }
630
631
632         /* skip processing if we are going to retain or refuse this mail */
633         if (retain_mail || refuse_mail)
634         {
635             free(line);
636             continue;
637         }
638
639         /* we see an ordinary (non-header, non-message-delimiter) line */
640         if (linelen != strlen (line))
641             has_nuls = TRUE;
642
643         /*
644          * The University of Washington IMAP server (the reference
645          * implementation of IMAP4 written by Mark Crispin) relies
646          * on being able to keep base-UID information in a special
647          * message at the head of the mailbox.  This message should
648          * neither be deleted nor forwarded.
649          *
650          * An example for such a message is (keep this in so people
651          * find it when looking where the special code is to handle the
652          * data):
653          *
654          *   From MAILER-DAEMON Wed Nov 23 11:38:42 2005
655          *   Date: 23 Nov 2005 11:38:42 +0100
656          *   From: Mail System Internal Data <MAILER-DAEMON@mail.example.org>
657          *   Subject: DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA
658          *   Message-ID: <1132742322@mail.example.org>
659          *   X-IMAP: 1132742306 0000000001
660          *   Status: RO
661          *
662          *   This text is part of the internal format of your mail folder, and is not
663          *   a real message.  It is created automatically by the mail system software.
664          *   If deleted, important folder data will be lost, and it will be re-created
665          *   with the data reset to initial values.
666          *
667          * This message is only visible if a POP3 server that is unaware
668          * of these UWIMAP messages is used besides UWIMAP or PINE.
669          *
670          * We will just check if the first message in the mailbox has an
671          * X-IMAP: header.
672          */
673 #ifdef POP2_ENABLE
674         /*
675          * We disable this check under POP2 because there's no way to
676          * prevent deletion of the message.  So at least we ought to
677          * forward it to the user so he or she will have some clue
678          * that things have gone awry.
679          */
680         if (servport("pop2") != servport(protocol->service))
681 #endif /* POP2_ENABLE */
682             if (num == 1 && !strncasecmp(line, "X-IMAP:", 7)) {
683                 free(line);
684                 retain_mail = 1;
685                 continue;
686             }
687
688         /*
689          * This code prevents fetchmail from becoming an accessory after
690          * the fact to upstream sendmails with the `E' option on.  It also
691          * copes with certain brain-dead POP servers (like NT's) that pass
692          * through Unix from_ lines.
693          *
694          * Either of these bugs can result in a non-RFC822 line at the
695          * beginning of the headers.  If fetchmail just passes it
696          * through, the client listener may think the message has *no*
697          * headers (since the first) line it sees doesn't look
698          * RFC822-conformant) and fake up a set.
699          *
700          * What the user would see in this case is bogus (synthesized)
701          * headers, followed by a blank line, followed by the >From, 
702          * followed by the real headers, followed by a blank line,
703          * followed by text.
704          *
705          * We forestall this lossage by tossing anything that looks
706          * like an escaped or passed-through From_ line in headers.
707          * These aren't RFC822 so our conscience is clear...
708          */
709         if (!strncasecmp(line, ">From ", 6) || !strncasecmp(line, "From ", 5))
710         {
711             free(line);
712             continue;
713         }
714
715         /*
716          * We remove all Delivered-To: headers if dropdelivered is set
717          * - special care must be taken if Delivered-To: is also used
718          * as envelope at the same time.
719          *
720          * This is to avoid false mail loops errors when delivering
721          * local messages to and from a Postfix or qmail mailserver.
722          */
723         if (ctl->dropdelivered && !strncasecmp(line, "Delivered-To:", 13)) 
724         {
725             if (delivered_to ||
726                 ctl->server.envelope == STRING_DISABLED ||
727                 !ctl->server.envelope ||
728                 strcasecmp(ctl->server.envelope, "Delivered-To") ||
729                 delivered_to_count != ctl->server.envskip)
730                 free(line);
731             else 
732                 delivered_to = line;
733             delivered_to_count++;
734             continue;
735         }
736
737         /*
738          * If we see a Status line, it may have been inserted by an MUA
739          * on the mail host, or it may have been inserted by the server
740          * program after the headers in the transaction stream.  This
741          * can actually hose some new-mail notifiers such as xbuffy,
742          * which assumes any Status line came from a *local* MDA and
743          * therefore indicates that the message has been seen.
744          *
745          * Some buggy POP servers (including at least the 3.3(20)
746          * version of the one distributed with IMAP) insert empty
747          * Status lines in the transaction stream; we'll chuck those
748          * unconditionally.  Nonempty ones get chucked if the user
749          * turns on the dropstatus flag.
750          */
751         {
752             char        *tcp;
753
754             if (!strncasecmp(line, "Status:", 7))
755                 tcp = line + 7;
756             else if (!strncasecmp(line, "X-Mozilla-Status:", 17))
757                 tcp = line + 17;
758             else
759                 tcp = NULL;
760             if (tcp) {
761                 while (*tcp && isspace((unsigned char)*tcp)) tcp++;
762                 if (!*tcp || ctl->dropstatus)
763                 {
764                     free(line);
765                     continue;
766                 }
767             }
768         }
769
770         if (ctl->rewrite)
771             line = reply_hack(line, ctl->server.truename, &linelen);
772
773         /*
774          * OK, this is messy.  If we're forwarding by SMTP, it's the
775          * SMTP-receiver's job (according to RFC821, page 22, section
776          * 4.1.1) to generate a Return-Path line on final delivery.
777          * The trouble is, we've already got one because the
778          * mailserver's SMTP thought *it* was responsible for final
779          * delivery.
780          *
781          * Stash away the contents of Return-Path (as modified by reply_hack)
782          * for use in generating MAIL FROM later on, then prevent the header
783          * from being saved with the others.  In effect, we strip it off here.
784          *
785          * If the SMTP server conforms to the standards, and fetchmail gets the
786          * envelope sender from the Return-Path, the new Return-Path should be
787          * exactly the same as the original one.
788          *
789          * We do *not* want to ignore empty Return-Path headers.  These should
790          * be passed through as a way of indicating that a message should
791          * not trigger bounces if delivery fails.  What we *do* need to do is
792          * make sure we never try to rewrite such a blank Return-Path.  We
793          * handle this with a check for <> in the rewrite logic above.
794          *
795          * Also, if an email has multiple Return-Path: headers, we only
796          * read the first occurance, as some spam email has more than one
797          * Return-Path.
798          *
799          */
800         if ((already_has_return_path==FALSE) && !strncasecmp("Return-Path:", line, 12) && (cp = nxtaddr(line)))
801         {
802             char nulladdr[] = "<>";
803             already_has_return_path = TRUE;
804             if (cp[0]=='\0')    /* nxtaddr() strips the brackets... */
805                 cp=nulladdr;
806             strncpy(msgblk.return_path, cp, sizeof(msgblk.return_path));
807             msgblk.return_path[sizeof(msgblk.return_path)-1] = '\0';
808             if (!ctl->mda) {
809                 free(line);
810                 continue;
811             }
812         }
813
814         if (!msgblk.headers)
815         {
816             oldlen = linelen;
817             msgblk.headers = (char *)xmalloc(oldlen + 1);
818             (void) memcpy(msgblk.headers, line, linelen);
819             msgblk.headers[oldlen] = '\0';
820             free(line);
821             line = msgblk.headers;
822         }
823         else
824         {
825             char *newhdrs;
826             int newlen;
827
828             newlen = oldlen + linelen;
829             newhdrs = (char *) realloc(msgblk.headers, newlen + 1);
830             if (newhdrs == NULL) {
831                 free(line);
832                 return(PS_IOERR);
833             }
834             msgblk.headers = newhdrs;
835             memcpy(msgblk.headers + oldlen, line, linelen);
836             msgblk.headers[newlen] = '\0';
837             free(line);
838             line = msgblk.headers + oldlen;
839             oldlen = newlen;
840         }
841
842         /* find offsets of various special headers */
843         if (!strncasecmp("From:", line, 5))
844             from_offs = (line - msgblk.headers);
845         else if (!strncasecmp("Reply-To:", line, 9))
846             reply_to_offs = (line - msgblk.headers);
847         else if (!strncasecmp("Resent-From:", line, 12))
848             resent_from_offs = (line - msgblk.headers);
849         else if (!strncasecmp("Apparently-From:", line, 16))
850             app_from_offs = (line - msgblk.headers);
851         /*
852          * Netscape 4.7 puts "Sender: zap" in mail headers.  Perverse...
853          *
854          * But a literal reading of RFC822 sec. 4.4.2 supports the idea
855          * that Sender: *doesn't* have to be a working email address.
856          *
857          * The definition of the Sender header in RFC822 says, in
858          * part, "The Sender mailbox specification includes a word
859          * sequence which must correspond to a specific agent (i.e., a
860          * human user or a computer program) rather than a standard
861          * address."  That implies that the contents of the Sender
862          * field don't need to be a legal email address at all So
863          * ignore any Sender or Resent-Sender lines unless they
864          * contain @.
865          *
866          * (RFC2822 says the contents of Sender must be a valid mailbox
867          * address, which is also what RFC822 4.4.4 implies.)
868          */
869         else if (!strncasecmp("Sender:", line, 7) && (strchr(line, '@') || strchr(line, '!')))
870             sender_offs = (line - msgblk.headers);
871         else if (!strncasecmp("Resent-Sender:", line, 14) && (strchr(line, '@') || strchr(line, '!')))
872             resent_sender_offs = (line - msgblk.headers);
873
874 #ifdef __UNUSED__
875         else if (!strncasecmp("Message-Id:", line, 11))
876         {
877             if (ctl->server.uidl)
878             {
879                 char id[IDLEN+1];
880
881                 line[IDLEN+12] = 0;             /* prevent stack overflow */
882                 sscanf(line+12, "%s", id);
883                 if (!str_find( &ctl->newsaved, num))
884                 {
885                     struct idlist *newl = save_str(&ctl->newsaved,id,UID_SEEN);
886                     newl->val.status.num = num;
887                 }
888             }
889         }
890 #endif /* __UNUSED__ */
891
892         /* if multidrop is on, gather addressee headers */
893         if (MULTIDROP(ctl))
894         {
895             if (!strncasecmp("To:", line, 3)
896                 || !strncasecmp("Cc:", line, 3)
897                 || !strncasecmp("Bcc:", line, 4)
898                 || !strncasecmp("Apparently-To:", line, 14))
899             {
900                 *to_chainptr = (struct addrblk *)xmalloc(sizeof(struct addrblk));
901                 (*to_chainptr)->offset = (line - msgblk.headers);
902                 to_chainptr = &(*to_chainptr)->next; 
903                 *to_chainptr = NULL;
904             }
905
906             else if (!strncasecmp("Resent-To:", line, 10)
907                      || !strncasecmp("Resent-Cc:", line, 10)
908                      || !strncasecmp("Resent-Bcc:", line, 11))
909             {
910                 *resent_to_chainptr = (struct addrblk *)xmalloc(sizeof(struct addrblk));
911                 (*resent_to_chainptr)->offset = (line - msgblk.headers);
912                 resent_to_chainptr = &(*resent_to_chainptr)->next; 
913                 *resent_to_chainptr = NULL;
914             }
915
916             else if (ctl->server.envelope != STRING_DISABLED)
917             {
918                 if (ctl->server.envelope 
919                     && strcasecmp(ctl->server.envelope, "Received"))
920                 {
921                     if (env_offs == -1 && !strncasecmp(ctl->server.envelope,
922                                                        line,
923                                                        strlen(ctl->server.envelope)))
924                     {                           
925                         if (skipcount++ < ctl->server.envskip)
926                             continue;
927                         env_offs = (line - msgblk.headers);
928                     }    
929                 }
930                 else if (!received_for && !strncasecmp("Received:", line, 9))
931                 {
932                     if (skipcount++ < ctl->server.envskip)
933                         continue;
934                     received_for = parse_received(ctl, line);
935                 }
936             }
937         }
938     }
939
940 process_headers:
941
942     if (retain_mail) {
943         return(PS_RETAINED);
944     }
945
946     if (refuse_mail)
947         return(PS_REFUSED);
948     /*
949      * This is the duplicate-message killer code.
950      *
951      * When mail delivered to a multidrop mailbox on the server is
952      * addressed to multiple people on the client machine, there will
953      * be one copy left in the box for each recipient.  This is not a
954      * problem if we have the actual recipient address to dispatch on
955      * (e.g. because we've mined it out of sendmail trace headers, or
956      * a qmail Delivered-To line, or a declared sender envelope line).
957      *
958      * But if we're mining addressees out of the To/Cc/Bcc fields, and
959      * if the mail is addressed to N people, each recipient will
960      * get N copies.  This is bad when N > 1.
961      *
962      * Foil this by suppressing all but one copy of a message with a
963      * given set of headers.
964      *
965      * Note: This implementation only catches runs of successive
966      * messages with the same ID, but that should be good
967      * enough. A more general implementation would have to store
968      * ever-growing lists of seen message-IDs; in a long-running
969      * daemon this would turn into a memory leak even if the 
970      * implementation were perfect.
971      * 
972      * Don't mess with this code casually.  It would be way too easy
973      * to break it in a way that blackholed mail.  Better to pass
974      * the occasional duplicate than to do that...
975      *
976      * Matthias Andree:
977      * The real fix however is to insist on Delivered-To: or similar
978      * headers and require that one copy per recipient be dropped.
979      * Everything else breaks sooner or later.
980      */
981     if (MULTIDROP(ctl) && msgblk.headers)
982     {
983         MD5_CTX context;
984
985         MD5Init(&context);
986         MD5Update(&context, (unsigned char *)msgblk.headers, strlen(msgblk.headers));
987         MD5Final(ctl->digest, &context);
988
989         if (!received_for && env_offs == -1 && !delivered_to)
990         {
991             /*
992              * Hmmm...can MD5 ever yield all zeroes as a hash value?
993              * If so there is a one in 18-quadrillion chance this 
994              * code will incorrectly nuke the first message.
995              */
996             if (!memcmp(ctl->lastdigest, ctl->digest, DIGESTLEN))
997                 return(PS_REFUSED);
998         }
999         memcpy(ctl->lastdigest, ctl->digest, DIGESTLEN);
1000     }
1001
1002     /*
1003      * Hack time.  If the first line of the message was blank, with no headers
1004      * (this happens occasionally due to bad gatewaying software) cons up
1005      * a set of fake headers.  
1006      *
1007      * If you modify the fake header template below, be sure you don't
1008      * make either From or To address @-less, otherwise the reply_hack
1009      * logic will do bad things.
1010      */
1011     if (msgblk.headers == (char *)NULL)
1012     {
1013         snprintf(buf, sizeof(buf),
1014                 "From: FETCHMAIL-DAEMON\r\n"
1015                 "To: %s@%s\r\n"
1016                 "Subject: Headerless mail from %s's mailbox on %s\r\n",
1017                 user, fetchmailhost, ctl->remotename, ctl->server.truename);
1018         msgblk.headers = xstrdup(buf);
1019     }
1020
1021     /*
1022      * We can now process message headers before reading the text.
1023      * In fact we have to, as this will tell us where to forward to.
1024      */
1025
1026     /* Check for MIME headers indicating possible 8-bit data */
1027     ctl->mimemsg = MimeBodyType(msgblk.headers, ctl->mimedecode);
1028
1029 #ifdef SDPS_ENABLE
1030     if (ctl->server.sdps && sdps_envfrom)
1031     {
1032         /* We have the real envelope return-path, stored out of band by
1033          * SDPS - that's more accurate than any header is going to be.
1034          */
1035         strlcpy(msgblk.return_path, sdps_envfrom, sizeof(msgblk.return_path));
1036         free(sdps_envfrom);
1037     } else
1038 #endif /* SDPS_ENABLE */
1039     /*
1040      * If there is a Return-Path address on the message, this was
1041      * almost certainly the MAIL FROM address given the originating
1042      * sendmail.  This is the best thing to use for logging the
1043      * message origin (it sets up the right behavior for bounces and
1044      * mailing lists).  Otherwise, fall down to the next available 
1045      * envelope address (which is the most probable real sender).
1046      * *** The order is important! ***
1047      * This is especially useful when receiving mailing list
1048      * messages in multidrop mode.  if a local address doesn't
1049      * exist, the bounce message won't be returned blindly to the 
1050      * author or to the list itself but rather to the list manager
1051      * (ex: specified by "Sender:") which is much less annoying.  This 
1052      * is true for most mailing list packages.
1053      */
1054     if( !msgblk.return_path[0] ){
1055         char *ap = NULL;
1056         if (resent_sender_offs >= 0 && (ap = nxtaddr(msgblk.headers + resent_sender_offs)));
1057         else if (sender_offs >= 0 && (ap = nxtaddr(msgblk.headers + sender_offs)));
1058         else if (resent_from_offs >= 0 && (ap = nxtaddr(msgblk.headers + resent_from_offs)));
1059         else if (from_offs >= 0 && (ap = nxtaddr(msgblk.headers + from_offs)));
1060         else if (reply_to_offs >= 0 && (ap = nxtaddr(msgblk.headers + reply_to_offs)));
1061         else if (app_from_offs >= 0 && (ap = nxtaddr(msgblk.headers + app_from_offs))) {}
1062         /* multi-line MAIL FROM addresses confuse SMTP terribly */
1063         if (ap && !strchr(ap, '\n')) {
1064             strncpy(msgblk.return_path, ap, sizeof(msgblk.return_path));
1065             msgblk.return_path[sizeof(msgblk.return_path)-1] = '\0';
1066         }
1067     }
1068
1069     /* cons up a list of local recipients */
1070     msgblk.recipients = (struct idlist *)NULL;
1071     accept_count = reject_count = 0;
1072     /* is this a multidrop box? */
1073     if (MULTIDROP(ctl))
1074     {
1075 #ifdef SDPS_ENABLE
1076         if (ctl->server.sdps && sdps_envto)
1077         {
1078             /* We have the real envelope recipient, stored out of band by
1079              * SDPS - that's more accurate than any header is going to be.
1080              */
1081             find_server_names(sdps_envto, ctl, &msgblk.recipients);
1082             free(sdps_envto);
1083         } else
1084 #endif /* SDPS_ENABLE */ 
1085         if (env_offs > -1)          /* We have the actual envelope addressee */
1086             find_server_names(msgblk.headers + env_offs, ctl, &msgblk.recipients);
1087         else if (delivered_to && ctl->server.envelope != STRING_DISABLED &&
1088       ctl->server.envelope && !strcasecmp(ctl->server.envelope, "Delivered-To"))
1089    {
1090             find_server_names(delivered_to, ctl, &msgblk.recipients);
1091             xfree(delivered_to);
1092    }
1093         else if (received_for)
1094             /*
1095              * We have the Received for addressee.  
1096              * It has to be a mailserver address, or we
1097              * wouldn't have got here.
1098              * We use find_server_names() to let local 
1099              * hostnames go through.
1100              */
1101             find_server_names(received_for, ctl, &msgblk.recipients);
1102         else
1103         {
1104             /*
1105              * We haven't extracted the envelope address.
1106              * So check all the "Resent-To" header addresses if 
1107              * they exist.  If and only if they don't, consider
1108              * the "To" addresses.
1109              */
1110             register struct addrblk *nextptr;
1111             if (resent_to_addrchain) {
1112                 /* delete the "To" chain and substitute it 
1113                  * with the "Resent-To" list 
1114                  */
1115                 while (to_addrchain) {
1116                     nextptr = to_addrchain->next;
1117                     free(to_addrchain);
1118                     to_addrchain = nextptr;
1119                 }
1120                 to_addrchain = resent_to_addrchain;
1121                 resent_to_addrchain = NULL;
1122             }
1123             /* now look for remaining adresses */
1124             while (to_addrchain) {
1125                 find_server_names(msgblk.headers+to_addrchain->offset, ctl, &msgblk.recipients);
1126                 nextptr = to_addrchain->next;
1127                 free(to_addrchain);
1128                 to_addrchain = nextptr;
1129             }
1130         }
1131         if (!accept_count)
1132         {
1133             no_local_matches = TRUE;
1134             save_str(&msgblk.recipients, run.postmaster, XMIT_ACCEPT);
1135             if (outlevel >= O_DEBUG)
1136                 report(stdout,
1137                       GT_("no local matches, forwarding to %s\n"),
1138                       run.postmaster);
1139         }
1140     }
1141     else        /* it's a single-drop box, use first localname */
1142         save_str(&msgblk.recipients, ctl->localnames->id, XMIT_ACCEPT);
1143
1144
1145     /*
1146      * Time to either address the message or decide we can't deliver it yet.
1147      */
1148     if (ctl->errcount > olderrs)        /* there were DNS errors above */
1149     {
1150         if (outlevel >= O_DEBUG)
1151             report(stdout,
1152                    GT_("forwarding and deletion suppressed due to DNS errors\n"));
1153         return(PS_TRANSIENT);
1154     }
1155     else
1156     {
1157         /* set up stuffline() so we can deliver the message body through it */ 
1158         if ((n = open_sink(ctl, &msgblk,
1159                            &good_addresses, &bad_addresses)) != PS_SUCCESS)
1160         {
1161             return(n);
1162         }
1163     }
1164
1165     n = 0;
1166     /*
1167      * Some server/sendmail combinations cause problems when our
1168      * synthetic Received line is before the From header.  Cope
1169      * with this...
1170      */
1171     if ((rcv = strstr(msgblk.headers, "Received:")) == (char *)NULL)
1172         rcv = msgblk.headers;
1173     /* handle ">Received:" lines too */
1174     while (rcv > msgblk.headers && rcv[-1] != '\n')
1175         rcv--;
1176     if (rcv > msgblk.headers)
1177     {
1178         char    c = *rcv;
1179
1180         *rcv = '\0';
1181         n = stuffline(ctl, msgblk.headers);
1182         *rcv = c;
1183     }
1184     if (!run.invisible && n != -1)
1185     {
1186         /* utter any per-message Received information we need here */
1187         if (ctl->server.trueaddr) {
1188             char saddr[50];
1189             int e;
1190
1191             e = getnameinfo(ctl->server.trueaddr, ctl->server.trueaddr_len,
1192                     saddr, sizeof(saddr), NULL, 0,
1193                     NI_NUMERICHOST);
1194             if (e)
1195                 snprintf(saddr, sizeof(saddr), "(%-.*s)", (int)(sizeof(saddr) - 3), gai_strerror(e));
1196             snprintf(buf, sizeof(buf),
1197                     "Received: from %s [%s]\r\n", 
1198                     ctl->server.truename, saddr);
1199         } else {
1200             snprintf(buf, sizeof(buf),
1201                   "Received: from %s\r\n", ctl->server.truename);
1202         }
1203         n = stuffline(ctl, buf);
1204         if (n != -1)
1205         {
1206             /*
1207              * We SHOULD (RFC-2821 sec. 4.4/p. 53) make sure to only use
1208              * IANA registered protocol names here.
1209              */
1210             snprintf(buf, sizeof(buf),
1211                     "\tby %s with %s (fetchmail-%s",
1212                     fetchmailhost,
1213                     protocol->name,
1214                     VERSION);
1215             if (ctl->server.tracepolls)
1216             {
1217                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1218                         " polling %s account %s",
1219                         ctl->server.pollname,
1220                         ctl->remotename);
1221                 if (ctl->folder)
1222                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1223                             " folder %s",
1224                             ctl->folder);
1225             }
1226             snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), ")\r\n");
1227             n = stuffline(ctl, buf);
1228             if (n != -1)
1229             {
1230                 buf[0] = '\t';
1231                 if (good_addresses == 0)
1232                 {
1233                     snprintf(buf+1, sizeof(buf)-1, "for <%s> (by default); ",
1234                             rcpt_address (ctl, run.postmaster, 0));
1235                 }
1236                 else if (good_addresses == 1)
1237                 {
1238                     for (idp = msgblk.recipients; idp; idp = idp->next)
1239                         if (idp->val.status.mark == XMIT_ACCEPT)
1240                             break;      /* only report first address */
1241                     if (idp)
1242                         snprintf(buf+1, sizeof(buf)-1,
1243                                 "for <%s>", rcpt_address (ctl, idp->id, 1));
1244                     snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf)-1,
1245                             " (%s); ",
1246                             MULTIDROP(ctl) ? "multi-drop" : "single-drop");
1247                 }
1248                 else
1249                     buf[1] = '\0';
1250
1251                 snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), "%s\r\n",
1252                         rfc822timestamp());
1253                 n = stuffline(ctl, buf);
1254             }
1255         }
1256     }
1257
1258     if (n != -1)
1259         n = stuffline(ctl, rcv);        /* ship out rest of msgblk.headers */
1260
1261     if (n == -1)
1262     {
1263         report(stdout, GT_("writing RFC822 msgblk.headers\n"));
1264         release_sink(ctl);
1265         return(PS_IOERR);
1266     }
1267     
1268     if (want_progress())
1269         fputc('#', stdout);
1270
1271     /* write error notifications */
1272     if (no_local_matches || has_nuls || bad_addresses)
1273     {
1274         int     errlen = 0;
1275         char    errhd[USERNAMELEN + POPBUFSIZE], *errmsg;
1276
1277         errmsg = errhd;
1278         strlcpy(errhd, "X-Fetchmail-Warning: ", sizeof(errhd));
1279         if (no_local_matches)
1280         {
1281             if (reject_count != 1)
1282                 strlcat(errhd, GT_("no recipient addresses matched declared local names"), sizeof(errhd));
1283             else
1284             {
1285                 for (idp = msgblk.recipients; idp; idp = idp->next)
1286                     if (idp->val.status.mark == XMIT_REJECT)
1287                         break;
1288                 snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd),
1289                         GT_("recipient address %s didn't match any local name"), idp->id);
1290             }
1291         }
1292
1293         if (has_nuls)
1294         {
1295             if (errhd[sizeof("X-Fetchmail-Warning: ")])
1296                 snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd), "; ");
1297             snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd),
1298                         GT_("message has embedded NULs"));
1299         }
1300
1301         if (bad_addresses)
1302         {
1303             if (errhd[sizeof("X-Fetchmail-Warning: ")])
1304                 snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd), "; ");
1305             snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd),
1306                         GT_("SMTP listener rejected local recipient addresses: "));
1307             errlen = strlen(errhd);
1308             for (idp = msgblk.recipients; idp; idp = idp->next)
1309                 if (idp->val.status.mark == XMIT_RCPTBAD)
1310                     errlen += strlen(idp->id) + 2;
1311
1312             errmsg = (char *)xmalloc(errlen + 3);
1313             strcpy(errmsg, errhd);
1314             for (idp = msgblk.recipients; idp; idp = idp->next)
1315                 if (idp->val.status.mark == XMIT_RCPTBAD)
1316                 {
1317                     strcat(errmsg, idp->id);
1318                     if (idp->next)
1319                         strcat(errmsg, ", ");
1320                 }
1321
1322         }
1323
1324         strcat(errmsg, "\r\n");
1325
1326         /* ship out the error line */
1327         stuffline(ctl, errmsg);
1328
1329         if (errmsg != errhd)
1330             free(errmsg);
1331     }
1332
1333     /* issue the delimiter line */
1334     cp = buf;
1335     *cp++ = '\r';
1336     *cp++ = '\n';
1337     *cp = '\0';
1338     n = stuffline(ctl, buf);
1339
1340     if ((size_t)n == strlen(buf))
1341         return PS_SUCCESS;
1342     else
1343         return PS_SOCKET;
1344 }
1345
1346 int readbody(int sock, struct query *ctl, flag forward, int len)
1347 /* read and dispose of a message body presented on sock */
1348 /*   ctl:               query control record */
1349 /*   sock:              to which the server is connected */
1350 /*   len:               length of message */
1351 /*   forward:           TRUE to forward */
1352 {
1353     int linelen;
1354     char buf[MSGBUFSIZE+4];
1355     char *inbufp = buf;
1356     flag issoftline = FALSE;
1357
1358     /*
1359      * Pass through the text lines in the body.
1360      *
1361      * Yes, this wants to be ||, not &&.  The problem is that in the most
1362      * important delimited protocol, POP3, the length is not reliable.
1363      * As usual, the problem is Microsoft brain damage; see FAQ item S2.
1364      * So, for delimited protocols we need to ignore the length here and
1365      * instead drop out of the loop with a break statement when we see
1366      * the message delimiter.
1367      */
1368     while (protocol->delimited || len > 0)
1369     {
1370         set_timeout(mytimeout);
1371         /* XXX FIXME: for undelimited protocols that ship the size, such
1372          * as IMAP, we might want to use the count of remaining characters
1373          * instead of the buffer size -- not for fetchmail 6.3.X though */
1374         if ((linelen = SockRead(sock, inbufp, sizeof(buf)-4-(inbufp-buf)))==-1)
1375         {
1376             set_timeout(0);
1377             release_sink(ctl);
1378             return(PS_SOCKET);
1379         }
1380         set_timeout(0);
1381
1382         /* write the message size dots */
1383         if (linelen > 0)
1384         {
1385             print_ticker(&sizeticker, linelen);
1386         }
1387
1388         /* Mike Jones, Manchester University, 2006:
1389          * "To fix IMAP MIME Messages in which fetchmail adds the remainder of
1390          * the IMAP packet including the ')' character (part of the IMAP)
1391          * Protocol causing the addition of an extra MIME boundary locally."
1392          *
1393          * However, we shouldn't do this for delimited protocols:
1394          * many POP3 servers (Microsoft, qmail) goof up message sizes
1395          * so we might end truncating messages prematurely.
1396          */
1397         if (!protocol->delimited && linelen > len) {
1398             inbufp[len] = '\0';
1399         }
1400
1401         len -= linelen;
1402
1403         /* check for end of message */
1404         if (protocol->delimited && *inbufp == '.')
1405         {
1406             if (EMPTYLINE(inbufp+1))
1407                 break;
1408             else
1409                 msgblk.msglen--;        /* subtract the size of the dot escape */
1410         }
1411
1412         msgblk.msglen += linelen;
1413
1414         if (ctl->mimedecode && (ctl->mimemsg & MSG_NEEDS_DECODE)) {
1415             issoftline = UnMimeBodyline(&inbufp, protocol->delimited, issoftline);
1416             if (issoftline && (sizeof(buf)-1-(inbufp-buf) < 200))
1417             {
1418                 /*
1419                  * Soft linebreak, but less than 200 bytes left in
1420                  * input buffer. Rather than doing a buffer overrun,
1421                  * ignore the soft linebreak, NL-terminate data and
1422                  * deliver what we have now.
1423                  * (Who writes lines longer than 2K anyway?)
1424                  */
1425                 *inbufp = '\n'; *(inbufp+1) = '\0';
1426                 issoftline = 0;
1427             }
1428         }
1429
1430         /* ship out the text line */
1431         if (forward && (!issoftline))
1432         {
1433             int n;
1434             inbufp = buf;
1435
1436             /* guard against very long lines */
1437             buf[MSGBUFSIZE+1] = '\r';
1438             buf[MSGBUFSIZE+2] = '\n';
1439             buf[MSGBUFSIZE+3] = '\0';
1440
1441             n = stuffline(ctl, buf);
1442
1443             if (n < 0)
1444             {
1445                 report(stdout, GT_("error writing message text\n"));
1446                 release_sink(ctl);
1447                 return(PS_IOERR);
1448             }
1449             else if (want_progress())
1450             {
1451                 fputc('*', stdout);
1452                 fflush(stdout);
1453             }
1454         }
1455     }
1456
1457     return(PS_SUCCESS);
1458 }
1459
1460 void init_transact(const struct method *proto)
1461 /* initialize state for the send and receive functions */
1462 {
1463     suppress_tags = FALSE;
1464     tagnum = 0;
1465     tag[0] = '\0';      /* nuke any tag hanging out from previous query */
1466     protocol = proto;
1467     shroud[0] = '\0';
1468 }
1469
1470 static void enshroud(char *buf)
1471 /* shroud a password in the given buffer */
1472 {
1473     char *cp;
1474
1475     if (shroud[0] && (cp = strstr(buf, shroud)))
1476     {
1477        char    *sp;
1478
1479        sp = cp + strlen(shroud);
1480        *cp++ = '*';
1481        while (*sp)
1482            *cp++ = *sp++;
1483        *cp = '\0';
1484     }
1485 }
1486
1487 #if defined(HAVE_STDARG_H)
1488 void gen_send(int sock, const char *fmt, ... )
1489 #else
1490 void gen_send(sock, fmt, va_alist)
1491 int sock;               /* socket to which server is connected */
1492 const char *fmt;        /* printf-style format */
1493 va_dcl
1494 #endif
1495 /* assemble command in printf(3) style and send to the server */
1496 {
1497     char buf [MSGBUFSIZE+1];
1498     va_list ap;
1499
1500     if (protocol->tagged && !suppress_tags)
1501         snprintf(buf, sizeof(buf) - 2, "%s ", GENSYM);
1502     else
1503         buf[0] = '\0';
1504
1505 #if defined(HAVE_STDARG_H)
1506     va_start(ap, fmt);
1507 #else
1508     va_start(ap);
1509 #endif
1510     vsnprintf(buf + strlen(buf), sizeof(buf)-2-strlen(buf), fmt, ap);
1511     va_end(ap);
1512
1513     snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), "\r\n");
1514     SockWrite(sock, buf, strlen(buf));
1515
1516     if (outlevel >= O_MONITOR)
1517     {
1518         enshroud(buf);
1519         buf[strlen(buf)-2] = '\0';
1520         report(stdout, "%s> %s\n", protocol->name, buf);
1521     }
1522 }
1523
1524 /** get one line of input from the server */
1525 int gen_recv(int sock  /** socket to which server is connected */,
1526              char *buf /* buffer to receive input */,
1527              int size  /* length of buffer */)
1528 {
1529     int oldphase = phase;       /* we don't have to be re-entrant */
1530
1531     phase = SERVER_WAIT;
1532     set_timeout(mytimeout);
1533     if (SockRead(sock, buf, size) == -1)
1534     {
1535         set_timeout(0);
1536         phase = oldphase;
1537         if(is_idletimeout())
1538         {
1539           resetidletimeout();
1540           return(PS_IDLETIMEOUT);
1541         }
1542         else
1543           return(PS_SOCKET);
1544     }
1545     else
1546     {
1547         set_timeout(0);
1548         if (buf[strlen(buf)-1] == '\n')
1549             buf[strlen(buf)-1] = '\0';
1550         if (buf[strlen(buf)-1] == '\r')
1551             buf[strlen(buf)-1] = '\0';
1552         if (outlevel >= O_MONITOR)
1553             report(stdout, "%s< %s\n", protocol->name, buf);
1554         phase = oldphase;
1555         return(PS_SUCCESS);
1556     }
1557 }
1558
1559 #if defined(HAVE_STDARG_H)
1560 int gen_transact(int sock, const char *fmt, ... )
1561 #else
1562 int gen_transact(int sock, fmt, va_alist)
1563 int sock;               /* socket to which server is connected */
1564 const char *fmt;        /* printf-style format */
1565 va_dcl
1566 #endif
1567 /* assemble command in printf(3) style, send to server, accept a response */
1568 {
1569     int ok;
1570     char buf [MSGBUFSIZE+1];
1571     va_list ap;
1572     int oldphase = phase;       /* we don't have to be re-entrant */
1573
1574     phase = SERVER_WAIT;
1575
1576     if (protocol->tagged && !suppress_tags)
1577         snprintf(buf, sizeof(buf) - 2, "%s ", GENSYM);
1578     else
1579         buf[0] = '\0';
1580
1581 #if defined(HAVE_STDARG_H)
1582     va_start(ap, fmt) ;
1583 #else
1584     va_start(ap);
1585 #endif
1586     vsnprintf(buf + strlen(buf), sizeof(buf)-2-strlen(buf), fmt, ap);
1587     va_end(ap);
1588
1589     snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), "\r\n");
1590     ok = SockWrite(sock, buf, strlen(buf));
1591     if (ok == -1 || (size_t)ok != strlen(buf)) {
1592         /* short write, bail out */
1593         return PS_SOCKET;
1594     }
1595
1596     if (outlevel >= O_MONITOR)
1597     {
1598         enshroud(buf);
1599         buf[strlen(buf)-2] = '\0';
1600         report(stdout, "%s> %s\n", protocol->name, buf);
1601     }
1602
1603     /* we presume this does its own response echoing */
1604     ok = (protocol->parse_response)(sock, buf);
1605
1606     phase = oldphase;
1607     return(ok);
1608 }
1609
1610 /* transact.c ends here */