]> Pileus Git - ~andy/fetchmail/blob - transact.c
c6ea7e354b7f2ed5d8f565f842e8aab5c12e4870
[~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 "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 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++;
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 && !isspace((unsigned char)line[0]) && !strchr(line, ':'))
587             {
588                 if (linelen != strlen (line))
589                     has_nuls = TRUE;
590                 if (outlevel > O_SILENT)
591                     report(stdout,
592                            GT_("incorrect header line found while scanning headers\n"));
593                 if (outlevel >= O_VERBOSE)
594                     report (stdout, GT_("line: %s"), line);
595                 refuse_mail = 1;
596             }
597
598             /* check for RFC822 continuations */
599             set_timeout(mytimeout);
600             ch = SockPeek(sock);
601             set_timeout(0);
602         } while
603             (ch == ' ' || ch == '\t');  /* continuation to next line? */
604
605         /* write the message size dots */
606         if ((outlevel > O_SILENT && outlevel < O_VERBOSE) && linelen > 0)
607         {
608             print_ticker(&sizeticker, linelen);
609         }
610
611         /*
612          * Decode MIME encoded headers. We MUST do this before
613          * looking at the Content-Type / Content-Transfer-Encoding
614          * headers (RFC 2046).
615          */
616         if ( ctl->mimedecode )
617         {
618             char *tcp;
619             UnMimeHeader(line);
620             /* the line is now shorter. So we retrace back till we find
621              * our terminating combination \n\0, we move backwards to
622              * make sure that we don't catch some \n\0 stored in the
623              * decoded part of the message */
624             for (tcp = line + linelen - 1; tcp > line && (*tcp != 0 || tcp[-1] != '\n'); tcp--);
625             if  (tcp > line) linelen = tcp - line;
626         }
627
628
629         /* skip processing if we are going to retain or refuse this mail */
630         if (retain_mail || refuse_mail)
631         {
632             free(line);
633             continue;
634         }
635
636         /* we see an ordinary (non-header, non-message-delimiter) line */
637         if (linelen != strlen (line))
638             has_nuls = TRUE;
639
640         /*
641          * The University of Washington IMAP server (the reference
642          * implementation of IMAP4 written by Mark Crispin) relies
643          * on being able to keep base-UID information in a special
644          * message at the head of the mailbox.  This message should
645          * neither be deleted nor forwarded.
646          *
647          * An example for such a message is (keep this in so people
648          * find it when looking where the special code is to handle the
649          * data):
650          *
651          *   From MAILER-DAEMON Wed Nov 23 11:38:42 2005
652          *   Date: 23 Nov 2005 11:38:42 +0100
653          *   From: Mail System Internal Data <MAILER-DAEMON@mail.example.org>
654          *   Subject: DON'T DELETE THIS MESSAGE -- FOLDER INTERNAL DATA
655          *   Message-ID: <1132742322@mail.example.org>
656          *   X-IMAP: 1132742306 0000000001
657          *   Status: RO
658          *
659          *   This text is part of the internal format of your mail folder, and is not
660          *   a real message.  It is created automatically by the mail system software.
661          *   If deleted, important folder data will be lost, and it will be re-created
662          *   with the data reset to initial values.
663          *
664          * This message is only visible if a POP3 server that is unaware
665          * of these UWIMAP messages is used besides UWIMAP or PINE.
666          *
667          * We will just check if the first message in the mailbox has an
668          * X-IMAP: header.
669          */
670 #ifdef POP2_ENABLE
671         /*
672          * We disable this check under POP2 because there's no way to
673          * prevent deletion of the message.  So at least we ought to
674          * forward it to the user so he or she will have some clue
675          * that things have gone awry.
676          */
677         if (servport("pop2") != servport(protocol->service))
678 #endif /* POP2_ENABLE */
679             if (num == 1 && !strncasecmp(line, "X-IMAP:", 7)) {
680                 free(line);
681                 retain_mail = 1;
682                 continue;
683             }
684
685         /*
686          * This code prevents fetchmail from becoming an accessory after
687          * the fact to upstream sendmails with the `E' option on.  It also
688          * copes with certain brain-dead POP servers (like NT's) that pass
689          * through Unix from_ lines.
690          *
691          * Either of these bugs can result in a non-RFC822 line at the
692          * beginning of the headers.  If fetchmail just passes it
693          * through, the client listener may think the message has *no*
694          * headers (since the first) line it sees doesn't look
695          * RFC822-conformant) and fake up a set.
696          *
697          * What the user would see in this case is bogus (synthesized)
698          * headers, followed by a blank line, followed by the >From, 
699          * followed by the real headers, followed by a blank line,
700          * followed by text.
701          *
702          * We forestall this lossage by tossing anything that looks
703          * like an escaped or passed-through From_ line in headers.
704          * These aren't RFC822 so our conscience is clear...
705          */
706         if (!strncasecmp(line, ">From ", 6) || !strncasecmp(line, "From ", 5))
707         {
708             free(line);
709             continue;
710         }
711
712         /*
713          * We remove all Delivered-To: headers if dropdelivered is set
714          * - special care must be taken if Delivered-To: is also used
715          * as envelope at the same time.
716          *
717          * This is to avoid false mail loops errors when delivering
718          * local messages to and from a Postfix or qmail mailserver.
719          */
720         if (ctl->dropdelivered && !strncasecmp(line, "Delivered-To:", 13)) 
721         {
722             if (delivered_to ||
723                 ctl->server.envelope == STRING_DISABLED ||
724                 !ctl->server.envelope ||
725                 strcasecmp(ctl->server.envelope, "Delivered-To") ||
726                 delivered_to_count != ctl->server.envskip)
727                 free(line);
728             else 
729                 delivered_to = line;
730             delivered_to_count++;
731             continue;
732         }
733
734         /*
735          * If we see a Status line, it may have been inserted by an MUA
736          * on the mail host, or it may have been inserted by the server
737          * program after the headers in the transaction stream.  This
738          * can actually hose some new-mail notifiers such as xbuffy,
739          * which assumes any Status line came from a *local* MDA and
740          * therefore indicates that the message has been seen.
741          *
742          * Some buggy POP servers (including at least the 3.3(20)
743          * version of the one distributed with IMAP) insert empty
744          * Status lines in the transaction stream; we'll chuck those
745          * unconditionally.  Nonempty ones get chucked if the user
746          * turns on the dropstatus flag.
747          */
748         {
749             char        *cp;
750
751             if (!strncasecmp(line, "Status:", 7))
752                 cp = line + 7;
753             else if (!strncasecmp(line, "X-Mozilla-Status:", 17))
754                 cp = line + 17;
755             else
756                 cp = NULL;
757             if (cp) {
758                 while (*cp && isspace((unsigned char)*cp)) cp++;
759                 if (!*cp || ctl->dropstatus)
760                 {
761                     free(line);
762                     continue;
763                 }
764             }
765         }
766
767         if (ctl->rewrite)
768             line = reply_hack(line, ctl->server.truename, &linelen);
769
770         /*
771          * OK, this is messy.  If we're forwarding by SMTP, it's the
772          * SMTP-receiver's job (according to RFC821, page 22, section
773          * 4.1.1) to generate a Return-Path line on final delivery.
774          * The trouble is, we've already got one because the
775          * mailserver's SMTP thought *it* was responsible for final
776          * delivery.
777          *
778          * Stash away the contents of Return-Path (as modified by reply_hack)
779          * for use in generating MAIL FROM later on, then prevent the header
780          * from being saved with the others.  In effect, we strip it off here.
781          *
782          * If the SMTP server conforms to the standards, and fetchmail gets the
783          * envelope sender from the Return-Path, the new Return-Path should be
784          * exactly the same as the original one.
785          *
786          * We do *not* want to ignore empty Return-Path headers.  These should
787          * be passed through as a way of indicating that a message should
788          * not trigger bounces if delivery fails.  What we *do* need to do is
789          * make sure we never try to rewrite such a blank Return-Path.  We
790          * handle this with a check for <> in the rewrite logic above.
791          *
792          * Also, if an email has multiple Return-Path: headers, we only
793          * read the first occurance, as some spam email has more than one
794          * Return-Path.
795          *
796          */
797         if ((already_has_return_path==FALSE) && !strncasecmp("Return-Path:", line, 12) && (cp = nxtaddr(line)))
798         {
799             already_has_return_path = TRUE;
800             if (cp[0]=='\0')    /* nxtaddr() strips the brackets... */
801                 cp="<>";
802             strncpy(msgblk.return_path, cp, sizeof(msgblk.return_path));
803             msgblk.return_path[sizeof(msgblk.return_path)-1] = '\0';
804             if (!ctl->mda) {
805                 free(line);
806                 continue;
807             }
808         }
809
810         if (!msgblk.headers)
811         {
812             oldlen = linelen;
813             msgblk.headers = (char *)xmalloc(oldlen + 1);
814             (void) memcpy(msgblk.headers, line, linelen);
815             msgblk.headers[oldlen] = '\0';
816             free(line);
817             line = msgblk.headers;
818         }
819         else
820         {
821             char *newhdrs;
822             int newlen;
823
824             newlen = oldlen + linelen;
825             newhdrs = (char *) realloc(msgblk.headers, newlen + 1);
826             if (newhdrs == NULL) {
827                 free(line);
828                 return(PS_IOERR);
829             }
830             msgblk.headers = newhdrs;
831             memcpy(msgblk.headers + oldlen, line, linelen);
832             msgblk.headers[newlen] = '\0';
833             free(line);
834             line = msgblk.headers + oldlen;
835             oldlen = newlen;
836         }
837
838         /* find offsets of various special headers */
839         if (!strncasecmp("From:", line, 5))
840             from_offs = (line - msgblk.headers);
841         else if (!strncasecmp("Reply-To:", line, 9))
842             reply_to_offs = (line - msgblk.headers);
843         else if (!strncasecmp("Resent-From:", line, 12))
844             resent_from_offs = (line - msgblk.headers);
845         else if (!strncasecmp("Apparently-From:", line, 16))
846             app_from_offs = (line - msgblk.headers);
847         /*
848          * Netscape 4.7 puts "Sender: zap" in mail headers.  Perverse...
849          *
850          * But a literal reading of RFC822 sec. 4.4.2 supports the idea
851          * that Sender: *doesn't* have to be a working email address.
852          *
853          * The definition of the Sender header in RFC822 says, in
854          * part, "The Sender mailbox specification includes a word
855          * sequence which must correspond to a specific agent (i.e., a
856          * human user or a computer program) rather than a standard
857          * address."  That implies that the contents of the Sender
858          * field don't need to be a legal email address at all So
859          * ignore any Sender or Resent-Sender lines unless they
860          * contain @.
861          *
862          * (RFC2822 says the contents of Sender must be a valid mailbox
863          * address, which is also what RFC822 4.4.4 implies.)
864          */
865         else if (!strncasecmp("Sender:", line, 7) && (strchr(line, '@') || strchr(line, '!')))
866             sender_offs = (line - msgblk.headers);
867         else if (!strncasecmp("Resent-Sender:", line, 14) && (strchr(line, '@') || strchr(line, '!')))
868             resent_sender_offs = (line - msgblk.headers);
869
870 #ifdef __UNUSED__
871         else if (!strncasecmp("Message-Id:", line, 11))
872         {
873             if (ctl->server.uidl)
874             {
875                 char id[IDLEN+1];
876
877                 line[IDLEN+12] = 0;             /* prevent stack overflow */
878                 sscanf(line+12, "%s", id);
879                 if (!str_find( &ctl->newsaved, num))
880                 {
881                     struct idlist *newl = save_str(&ctl->newsaved,id,UID_SEEN);
882                     newl->val.status.num = num;
883                 }
884             }
885         }
886 #endif /* __UNUSED__ */
887
888         /* if multidrop is on, gather addressee headers */
889         if (MULTIDROP(ctl))
890         {
891             if (!strncasecmp("To:", line, 3)
892                 || !strncasecmp("Cc:", line, 3)
893                 || !strncasecmp("Bcc:", line, 4)
894                 || !strncasecmp("Apparently-To:", line, 14))
895             {
896                 *to_chainptr = (struct addrblk *)xmalloc(sizeof(struct addrblk));
897                 (*to_chainptr)->offset = (line - msgblk.headers);
898                 to_chainptr = &(*to_chainptr)->next; 
899                 *to_chainptr = NULL;
900             }
901
902             else if (!strncasecmp("Resent-To:", line, 10)
903                      || !strncasecmp("Resent-Cc:", line, 10)
904                      || !strncasecmp("Resent-Bcc:", line, 11))
905             {
906                 *resent_to_chainptr = (struct addrblk *)xmalloc(sizeof(struct addrblk));
907                 (*resent_to_chainptr)->offset = (line - msgblk.headers);
908                 resent_to_chainptr = &(*resent_to_chainptr)->next; 
909                 *resent_to_chainptr = NULL;
910             }
911
912             else if (ctl->server.envelope != STRING_DISABLED)
913             {
914                 if (ctl->server.envelope 
915                     && strcasecmp(ctl->server.envelope, "Received"))
916                 {
917                     if (env_offs == -1 && !strncasecmp(ctl->server.envelope,
918                                                        line,
919                                                        strlen(ctl->server.envelope)))
920                     {                           
921                         if (skipcount++ < ctl->server.envskip)
922                             continue;
923                         env_offs = (line - msgblk.headers);
924                     }    
925                 }
926                 else if (!received_for && !strncasecmp("Received:", line, 9))
927                 {
928                     if (skipcount++ < ctl->server.envskip)
929                         continue;
930                     received_for = parse_received(ctl, line);
931                 }
932             }
933         }
934     }
935
936 process_headers:
937
938     if (retain_mail) {
939         return(PS_RETAINED);
940     }
941
942     if (refuse_mail)
943         return(PS_REFUSED);
944     /*
945      * This is the duplicate-message killer code.
946      *
947      * When mail delivered to a multidrop mailbox on the server is
948      * addressed to multiple people on the client machine, there will
949      * be one copy left in the box for each recipient.  This is not a
950      * problem if we have the actual recipient address to dispatch on
951      * (e.g. because we've mined it out of sendmail trace headers, or
952      * a qmail Delivered-To line, or a declared sender envelope line).
953      *
954      * But if we're mining addressees out of the To/Cc/Bcc fields, and
955      * if the mail is addressed to N people, each recipient will
956      * get N copies.  This is bad when N > 1.
957      *
958      * Foil this by suppressing all but one copy of a message with a
959      * given set of headers.
960      *
961      * Note: This implementation only catches runs of successive
962      * messages with the same ID, but that should be good
963      * enough. A more general implementation would have to store
964      * ever-growing lists of seen message-IDs; in a long-running
965      * daemon this would turn into a memory leak even if the 
966      * implementation were perfect.
967      * 
968      * Don't mess with this code casually.  It would be way too easy
969      * to break it in a way that blackholed mail.  Better to pass
970      * the occasional duplicate than to do that...
971      *
972      * Matthias Andree:
973      * The real fix however is to insist on Delivered-To: or similar
974      * headers and require that one copy per recipient be dropped.
975      * Everything else breaks sooner or later.
976      */
977     if (MULTIDROP(ctl) && msgblk.headers)
978     {
979         MD5_CTX context;
980
981         MD5Init(&context);
982         MD5Update(&context, msgblk.headers, strlen(msgblk.headers));
983         MD5Final(ctl->digest, &context);
984
985         if (!received_for && env_offs == -1 && !delivered_to)
986         {
987             /*
988              * Hmmm...can MD5 ever yield all zeroes as a hash value?
989              * If so there is a one in 18-quadrillion chance this 
990              * code will incorrectly nuke the first message.
991              */
992             if (!memcmp(ctl->lastdigest, ctl->digest, DIGESTLEN))
993                 return(PS_REFUSED);
994         }
995         memcpy(ctl->lastdigest, ctl->digest, DIGESTLEN);
996     }
997
998     /*
999      * Hack time.  If the first line of the message was blank, with no headers
1000      * (this happens occasionally due to bad gatewaying software) cons up
1001      * a set of fake headers.  
1002      *
1003      * If you modify the fake header template below, be sure you don't
1004      * make either From or To address @-less, otherwise the reply_hack
1005      * logic will do bad things.
1006      */
1007     if (msgblk.headers == (char *)NULL)
1008     {
1009         snprintf(buf, sizeof(buf),
1010                 "From: FETCHMAIL-DAEMON\r\n"
1011                 "To: %s@%s\r\n"
1012                 "Subject: Headerless mail from %s's mailbox on %s\r\n",
1013                 user, fetchmailhost, ctl->remotename, ctl->server.truename);
1014         msgblk.headers = xstrdup(buf);
1015     }
1016
1017     /*
1018      * We can now process message headers before reading the text.
1019      * In fact we have to, as this will tell us where to forward to.
1020      */
1021
1022     /* Check for MIME headers indicating possible 8-bit data */
1023     ctl->mimemsg = MimeBodyType(msgblk.headers, ctl->mimedecode);
1024
1025 #ifdef SDPS_ENABLE
1026     if (ctl->server.sdps && sdps_envfrom)
1027     {
1028         /* We have the real envelope return-path, stored out of band by
1029          * SDPS - that's more accurate than any header is going to be.
1030          */
1031         strlcpy(msgblk.return_path, sdps_envfrom, sizeof(msgblk.return_path));
1032         free(sdps_envfrom);
1033     } else
1034 #endif /* SDPS_ENABLE */
1035     /*
1036      * If there is a Return-Path address on the message, this was
1037      * almost certainly the MAIL FROM address given the originating
1038      * sendmail.  This is the best thing to use for logging the
1039      * message origin (it sets up the right behavior for bounces and
1040      * mailing lists).  Otherwise, fall down to the next available 
1041      * envelope address (which is the most probable real sender).
1042      * *** The order is important! ***
1043      * This is especially useful when receiving mailing list
1044      * messages in multidrop mode.  if a local address doesn't
1045      * exist, the bounce message won't be returned blindly to the 
1046      * author or to the list itself but rather to the list manager
1047      * (ex: specified by "Sender:") which is much less annoying.  This 
1048      * is true for most mailing list packages.
1049      */
1050     if( !msgblk.return_path[0] ){
1051         char *ap = NULL;
1052         if (resent_sender_offs >= 0 && (ap = nxtaddr(msgblk.headers + resent_sender_offs)));
1053         else if (sender_offs >= 0 && (ap = nxtaddr(msgblk.headers + sender_offs)));
1054         else if (resent_from_offs >= 0 && (ap = nxtaddr(msgblk.headers + resent_from_offs)));
1055         else if (from_offs >= 0 && (ap = nxtaddr(msgblk.headers + from_offs)));
1056         else if (reply_to_offs >= 0 && (ap = nxtaddr(msgblk.headers + reply_to_offs)));
1057         else if (app_from_offs >= 0 && (ap = nxtaddr(msgblk.headers + app_from_offs))) {}
1058         /* multi-line MAIL FROM addresses confuse SMTP terribly */
1059         if (ap && !strchr(ap, '\n')) {
1060             strncpy(msgblk.return_path, ap, sizeof(msgblk.return_path));
1061             msgblk.return_path[sizeof(msgblk.return_path)-1] = '\0';
1062         }
1063     }
1064
1065     /* cons up a list of local recipients */
1066     msgblk.recipients = (struct idlist *)NULL;
1067     accept_count = reject_count = 0;
1068     /* is this a multidrop box? */
1069     if (MULTIDROP(ctl))
1070     {
1071 #ifdef SDPS_ENABLE
1072         if (ctl->server.sdps && sdps_envto)
1073         {
1074             /* We have the real envelope recipient, stored out of band by
1075              * SDPS - that's more accurate than any header is going to be.
1076              */
1077             find_server_names(sdps_envto, ctl, &msgblk.recipients);
1078             free(sdps_envto);
1079         } else
1080 #endif /* SDPS_ENABLE */ 
1081         if (env_offs > -1)          /* We have the actual envelope addressee */
1082             find_server_names(msgblk.headers + env_offs, ctl, &msgblk.recipients);
1083         else if (delivered_to && ctl->server.envelope != STRING_DISABLED &&
1084       ctl->server.envelope && !strcasecmp(ctl->server.envelope, "Delivered-To"))
1085    {
1086             find_server_names(delivered_to, ctl, &msgblk.recipients);
1087             xfree(delivered_to);
1088    }
1089         else if (received_for)
1090             /*
1091              * We have the Received for addressee.  
1092              * It has to be a mailserver address, or we
1093              * wouldn't have got here.
1094              * We use find_server_names() to let local 
1095              * hostnames go through.
1096              */
1097             find_server_names(received_for, ctl, &msgblk.recipients);
1098         else
1099         {
1100             /*
1101              * We haven't extracted the envelope address.
1102              * So check all the "Resent-To" header addresses if 
1103              * they exist.  If and only if they don't, consider
1104              * the "To" addresses.
1105              */
1106             register struct addrblk *nextptr;
1107             if (resent_to_addrchain) {
1108                 /* delete the "To" chain and substitute it 
1109                  * with the "Resent-To" list 
1110                  */
1111                 while (to_addrchain) {
1112                     nextptr = to_addrchain->next;
1113                     free(to_addrchain);
1114                     to_addrchain = nextptr;
1115                 }
1116                 to_addrchain = resent_to_addrchain;
1117                 resent_to_addrchain = NULL;
1118             }
1119             /* now look for remaining adresses */
1120             while (to_addrchain) {
1121                 find_server_names(msgblk.headers+to_addrchain->offset, ctl, &msgblk.recipients);
1122                 nextptr = to_addrchain->next;
1123                 free(to_addrchain);
1124                 to_addrchain = nextptr;
1125             }
1126         }
1127         if (!accept_count)
1128         {
1129             no_local_matches = TRUE;
1130             save_str(&msgblk.recipients, run.postmaster, XMIT_ACCEPT);
1131             if (outlevel >= O_DEBUG)
1132                 report(stdout,
1133                       GT_("no local matches, forwarding to %s\n"),
1134                       run.postmaster);
1135         }
1136     }
1137     else        /* it's a single-drop box, use first localname */
1138         save_str(&msgblk.recipients, ctl->localnames->id, XMIT_ACCEPT);
1139
1140
1141     /*
1142      * Time to either address the message or decide we can't deliver it yet.
1143      */
1144     if (ctl->errcount > olderrs)        /* there were DNS errors above */
1145     {
1146         if (outlevel >= O_DEBUG)
1147             report(stdout,
1148                    GT_("forwarding and deletion suppressed due to DNS errors\n"));
1149         return(PS_TRANSIENT);
1150     }
1151     else
1152     {
1153         /* set up stuffline() so we can deliver the message body through it */ 
1154         if ((n = open_sink(ctl, &msgblk,
1155                            &good_addresses, &bad_addresses)) != PS_SUCCESS)
1156         {
1157             return(n);
1158         }
1159     }
1160
1161     n = 0;
1162     /*
1163      * Some server/sendmail combinations cause problems when our
1164      * synthetic Received line is before the From header.  Cope
1165      * with this...
1166      */
1167     if ((rcv = strstr(msgblk.headers, "Received:")) == (char *)NULL)
1168         rcv = msgblk.headers;
1169     /* handle ">Received:" lines too */
1170     while (rcv > msgblk.headers && rcv[-1] != '\n')
1171         rcv--;
1172     if (rcv > msgblk.headers)
1173     {
1174         char    c = *rcv;
1175
1176         *rcv = '\0';
1177         n = stuffline(ctl, msgblk.headers);
1178         *rcv = c;
1179     }
1180     if (!run.invisible && n != -1)
1181     {
1182         /* utter any per-message Received information we need here */
1183         if (ctl->server.trueaddr) {
1184             char saddr[50];
1185             int e;
1186
1187             e = getnameinfo(ctl->server.trueaddr, ctl->server.trueaddr_len,
1188                     saddr, sizeof(saddr), NULL, 0,
1189                     NI_NUMERICHOST);
1190             if (e)
1191                 snprintf(saddr, sizeof(saddr), "(%-.*s)", (int)(sizeof(saddr) - 3), gai_strerror(e));
1192             snprintf(buf, sizeof(buf),
1193                     "Received: from %s [%s]\r\n", 
1194                     ctl->server.truename, saddr);
1195         } else {
1196             snprintf(buf, sizeof(buf),
1197                   "Received: from %s\r\n", ctl->server.truename);
1198         }
1199         n = stuffline(ctl, buf);
1200         if (n != -1)
1201         {
1202             /*
1203              * We SHOULD (RFC-2821 sec. 4.4/p. 53) make sure to only use
1204              * IANA registered protocol names here.
1205              */
1206             snprintf(buf, sizeof(buf),
1207                     "\tby %s with %s (fetchmail-%s",
1208                     fetchmailhost,
1209                     protocol->name,
1210                     VERSION);
1211             if (ctl->server.tracepolls)
1212             {
1213                 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1214                         " polling %s account %s",
1215                         ctl->server.pollname,
1216                         ctl->remotename);
1217                 if (ctl->folder)
1218                     snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
1219                             " folder %s",
1220                             ctl->folder);
1221             }
1222             snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), ")\r\n");
1223             n = stuffline(ctl, buf);
1224             if (n != -1)
1225             {
1226                 buf[0] = '\t';
1227                 if (good_addresses == 0)
1228                 {
1229                     snprintf(buf+1, sizeof(buf)-1, "for <%s> (by default); ",
1230                             rcpt_address (ctl, run.postmaster, 0));
1231                 }
1232                 else if (good_addresses == 1)
1233                 {
1234                     for (idp = msgblk.recipients; idp; idp = idp->next)
1235                         if (idp->val.status.mark == XMIT_ACCEPT)
1236                             break;      /* only report first address */
1237                     snprintf(buf+1, sizeof(buf)-1,
1238                             "for <%s>", rcpt_address (ctl, idp->id, 1));
1239                     snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf)-1,
1240                             " (%s); ",
1241                             MULTIDROP(ctl) ? "multi-drop" : "single-drop");
1242                 }
1243                 else
1244                     buf[1] = '\0';
1245
1246                 snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), "%s\r\n",
1247                         rfc822timestamp());
1248                 n = stuffline(ctl, buf);
1249             }
1250         }
1251     }
1252
1253     if (n != -1)
1254         n = stuffline(ctl, rcv);        /* ship out rest of msgblk.headers */
1255
1256     if (n == -1)
1257     {
1258         report(stdout, GT_("writing RFC822 msgblk.headers\n"));
1259         release_sink(ctl);
1260         return(PS_IOERR);
1261     }
1262     
1263     if (want_progress())
1264         fputc('#', stdout);
1265
1266     /* write error notifications */
1267     if (no_local_matches || has_nuls || bad_addresses)
1268     {
1269         int     errlen = 0;
1270         char    errhd[USERNAMELEN + POPBUFSIZE], *errmsg;
1271
1272         errmsg = errhd;
1273         strlcpy(errhd, "X-Fetchmail-Warning: ", sizeof(errhd));
1274         if (no_local_matches)
1275         {
1276             if (reject_count != 1)
1277                 strlcat(errhd, GT_("no recipient addresses matched declared local names"), sizeof(errhd));
1278             else
1279             {
1280                 for (idp = msgblk.recipients; idp; idp = idp->next)
1281                     if (idp->val.status.mark == XMIT_REJECT)
1282                         break;
1283                 snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd),
1284                         GT_("recipient address %s didn't match any local name"), idp->id);
1285             }
1286         }
1287
1288         if (has_nuls)
1289         {
1290             if (errhd[sizeof("X-Fetchmail-Warning: ")])
1291                 snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd), "; ");
1292             snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd),
1293                         GT_("message has embedded NULs"));
1294         }
1295
1296         if (bad_addresses)
1297         {
1298             if (errhd[sizeof("X-Fetchmail-Warning: ")])
1299                 snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd), "; ");
1300             snprintf(errhd+strlen(errhd), sizeof(errhd)-strlen(errhd),
1301                         GT_("SMTP listener rejected local recipient addresses: "));
1302             errlen = strlen(errhd);
1303             for (idp = msgblk.recipients; idp; idp = idp->next)
1304                 if (idp->val.status.mark == XMIT_RCPTBAD)
1305                     errlen += strlen(idp->id) + 2;
1306
1307             errmsg = (char *)xmalloc(errlen + 3);
1308             strcpy(errmsg, errhd);
1309             for (idp = msgblk.recipients; idp; idp = idp->next)
1310                 if (idp->val.status.mark == XMIT_RCPTBAD)
1311                 {
1312                     strcat(errmsg, idp->id);
1313                     if (idp->next)
1314                         strcat(errmsg, ", ");
1315                 }
1316
1317         }
1318
1319         strcat(errmsg, "\r\n");
1320
1321         /* ship out the error line */
1322         stuffline(ctl, errmsg);
1323
1324         if (errmsg != errhd)
1325             free(errmsg);
1326     }
1327
1328     /* issue the delimiter line */
1329     cp = buf;
1330     *cp++ = '\r';
1331     *cp++ = '\n';
1332     *cp++ = '\0';
1333     n = stuffline(ctl, buf);
1334
1335     if ((size_t)n == strlen(buf))
1336         return PS_SUCCESS;
1337     else
1338         return PS_SOCKET;
1339 }
1340
1341 int readbody(int sock, struct query *ctl, flag forward, int len)
1342 /* read and dispose of a message body presented on sock */
1343 /*   ctl:               query control record */
1344 /*   sock:              to which the server is connected */
1345 /*   len:               length of message */
1346 /*   forward:           TRUE to forward */
1347 {
1348     int linelen;
1349     char buf[MSGBUFSIZE+4];
1350     char *inbufp = buf;
1351     flag issoftline = FALSE;
1352
1353     /*
1354      * Pass through the text lines in the body.
1355      *
1356      * Yes, this wants to be ||, not &&.  The problem is that in the most
1357      * important delimited protocol, POP3, the length is not reliable.
1358      * As usual, the problem is Microsoft brain damage; see FAQ item S2.
1359      * So, for delimited protocols we need to ignore the length here and
1360      * instead drop out of the loop with a break statement when we see
1361      * the message delimiter.
1362      */
1363     while (protocol->delimited || len > 0)
1364     {
1365         set_timeout(mytimeout);
1366         /* XXX FIXME: for undelimited protocols that ship the size, such
1367          * as IMAP, we might want to use the count of remaining characters
1368          * instead of the buffer size -- not for fetchmail 6.3.X though */
1369         if ((linelen = SockRead(sock, inbufp, sizeof(buf)-4-(inbufp-buf)))==-1)
1370         {
1371             set_timeout(0);
1372             release_sink(ctl);
1373             return(PS_SOCKET);
1374         }
1375         set_timeout(0);
1376
1377         /* write the message size dots */
1378         if (linelen > 0)
1379         {
1380             print_ticker(&sizeticker, linelen);
1381         }
1382
1383         /* Mike Jones, Manchester University, 2006:
1384          * "To fix IMAP MIME Messages in which fetchmail adds the remainder of
1385          * the IMAP packet including the ')' character (part of the IMAP)
1386          * Protocol causing the addition of an extra MIME boundary locally."
1387          *
1388          * However, we shouldn't do this for delimited protocols:
1389          * many POP3 servers (Microsoft, qmail) goof up message sizes
1390          * so we might end truncating messages prematurely.
1391          */
1392         if (!protocol->delimited && linelen > len) {
1393             inbufp[len] = '\0';
1394         }
1395
1396         len -= linelen;
1397
1398         /* check for end of message */
1399         if (protocol->delimited && *inbufp == '.')
1400         {
1401             if (EMPTYLINE(inbufp+1))
1402                 break;
1403             else
1404                 msgblk.msglen--;        /* subtract the size of the dot escape */
1405         }
1406
1407         msgblk.msglen += linelen;
1408
1409         if (ctl->mimedecode && (ctl->mimemsg & MSG_NEEDS_DECODE)) {
1410             issoftline = UnMimeBodyline(&inbufp, protocol->delimited, issoftline);
1411             if (issoftline && (sizeof(buf)-1-(inbufp-buf) < 200))
1412             {
1413                 /*
1414                  * Soft linebreak, but less than 200 bytes left in
1415                  * input buffer. Rather than doing a buffer overrun,
1416                  * ignore the soft linebreak, NL-terminate data and
1417                  * deliver what we have now.
1418                  * (Who writes lines longer than 2K anyway?)
1419                  */
1420                 *inbufp = '\n'; *(inbufp+1) = '\0';
1421                 issoftline = 0;
1422             }
1423         }
1424
1425         /* ship out the text line */
1426         if (forward && (!issoftline))
1427         {
1428             int n;
1429             inbufp = buf;
1430
1431             /* guard against very long lines */
1432             buf[MSGBUFSIZE+1] = '\r';
1433             buf[MSGBUFSIZE+2] = '\n';
1434             buf[MSGBUFSIZE+3] = '\0';
1435
1436             n = stuffline(ctl, buf);
1437
1438             if (n < 0)
1439             {
1440                 report(stdout, GT_("error writing message text\n"));
1441                 release_sink(ctl);
1442                 return(PS_IOERR);
1443             }
1444             else if (want_progress())
1445             {
1446                 fputc('*', stdout);
1447                 fflush(stdout);
1448             }
1449         }
1450     }
1451
1452     return(PS_SUCCESS);
1453 }
1454
1455 void init_transact(const struct method *proto)
1456 /* initialize state for the send and receive functions */
1457 {
1458     suppress_tags = FALSE;
1459     tagnum = 0;
1460     tag[0] = '\0';      /* nuke any tag hanging out from previous query */
1461     protocol = (struct method *)proto;
1462     shroud[0] = '\0';
1463 }
1464
1465 static void enshroud(char *buf)
1466 /* shroud a password in the given buffer */
1467 {
1468     char *cp;
1469
1470     if (shroud[0] && (cp = strstr(buf, shroud)))
1471     {
1472        char    *sp;
1473
1474        sp = cp + strlen(shroud);
1475        *cp++ = '*';
1476        while (*sp)
1477            *cp++ = *sp++;
1478        *cp = '\0';
1479     }
1480 }
1481
1482 #if defined(HAVE_STDARG_H)
1483 void gen_send(int sock, const char *fmt, ... )
1484 #else
1485 void gen_send(sock, fmt, va_alist)
1486 int sock;               /* socket to which server is connected */
1487 const char *fmt;        /* printf-style format */
1488 va_dcl
1489 #endif
1490 /* assemble command in printf(3) style and send to the server */
1491 {
1492     char buf [MSGBUFSIZE+1];
1493     va_list ap;
1494
1495     if (protocol->tagged && !suppress_tags)
1496         snprintf(buf, sizeof(buf) - 2, "%s ", GENSYM);
1497     else
1498         buf[0] = '\0';
1499
1500 #if defined(HAVE_STDARG_H)
1501     va_start(ap, fmt);
1502 #else
1503     va_start(ap);
1504 #endif
1505     vsnprintf(buf + strlen(buf), sizeof(buf)-2-strlen(buf), fmt, ap);
1506     va_end(ap);
1507
1508     snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), "\r\n");
1509     SockWrite(sock, buf, strlen(buf));
1510
1511     if (outlevel >= O_MONITOR)
1512     {
1513         enshroud(buf);
1514         buf[strlen(buf)-2] = '\0';
1515         report(stdout, "%s> %s\n", protocol->name, buf);
1516     }
1517 }
1518
1519 /** get one line of input from the server */
1520 int gen_recv(int sock  /** socket to which server is connected */,
1521              char *buf /* buffer to receive input */,
1522              int size  /* length of buffer */)
1523 {
1524     int oldphase = phase;       /* we don't have to be re-entrant */
1525
1526     phase = SERVER_WAIT;
1527     set_timeout(mytimeout);
1528     if (SockRead(sock, buf, size) == -1)
1529     {
1530         set_timeout(0);
1531         phase = oldphase;
1532         if(is_idletimeout())
1533         {
1534           resetidletimeout();
1535           return(PS_IDLETIMEOUT);
1536         }
1537         else
1538           return(PS_SOCKET);
1539     }
1540     else
1541     {
1542         set_timeout(0);
1543         if (buf[strlen(buf)-1] == '\n')
1544             buf[strlen(buf)-1] = '\0';
1545         if (buf[strlen(buf)-1] == '\r')
1546             buf[strlen(buf)-1] = '\0';
1547         if (outlevel >= O_MONITOR)
1548             report(stdout, "%s< %s\n", protocol->name, buf);
1549         phase = oldphase;
1550         return(PS_SUCCESS);
1551     }
1552 }
1553
1554 #if defined(HAVE_STDARG_H)
1555 int gen_transact(int sock, const char *fmt, ... )
1556 #else
1557 int gen_transact(int sock, fmt, va_alist)
1558 int sock;               /* socket to which server is connected */
1559 const char *fmt;        /* printf-style format */
1560 va_dcl
1561 #endif
1562 /* assemble command in printf(3) style, send to server, accept a response */
1563 {
1564     int ok;
1565     char buf [MSGBUFSIZE+1];
1566     va_list ap;
1567     int oldphase = phase;       /* we don't have to be re-entrant */
1568
1569     phase = SERVER_WAIT;
1570
1571     if (protocol->tagged && !suppress_tags)
1572         snprintf(buf, sizeof(buf) - 2, "%s ", GENSYM);
1573     else
1574         buf[0] = '\0';
1575
1576 #if defined(HAVE_STDARG_H)
1577     va_start(ap, fmt) ;
1578 #else
1579     va_start(ap);
1580 #endif
1581     vsnprintf(buf + strlen(buf), sizeof(buf)-2-strlen(buf), fmt, ap);
1582     va_end(ap);
1583
1584     snprintf(buf+strlen(buf), sizeof(buf)-strlen(buf), "\r\n");
1585     ok = SockWrite(sock, buf, strlen(buf));
1586     if (ok == -1 || (size_t)ok != strlen(buf)) {
1587         /* short write, bail out */
1588         return PS_SOCKET;
1589     }
1590
1591     if (outlevel >= O_MONITOR)
1592     {
1593         enshroud(buf);
1594         buf[strlen(buf)-2] = '\0';
1595         report(stdout, "%s> %s\n", protocol->name, buf);
1596     }
1597
1598     /* we presume this does its own response echoing */
1599     ok = (protocol->parse_response)(sock, buf);
1600
1601     phase = oldphase;
1602     return(ok);
1603 }
1604
1605 /* transact.c ends here */