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