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