]> Pileus Git - ~andy/fetchmail/blob - driver.c
Ready to ship.
[~andy/fetchmail] / driver.c
1 /*
2  * driver.c -- generic driver for mail fetch method protocols
3  *
4  * Copyright 1997 by Eric S. Raymond
5  * For license terms, see the file COPYING in this directory.
6  */
7
8 #include  "config.h"
9 #include  <stdio.h>
10 #include  <setjmp.h>
11 #include  <errno.h>
12 #include  <ctype.h>
13 #include  <string.h>
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 #if defined(HAVE_SYS_ITIMER_H)
29 #include <sys/itimer.h>
30 #endif
31 #include  <sys/time.h>
32 #include  <signal.h>
33
34 #ifdef HAVE_NET_SOCKET_H
35 #include <net/socket.h>
36 #endif
37
38 #ifdef HAVE_RES_SEARCH
39 #include <netdb.h>
40 #include "mx.h"
41 #endif /* HAVE_RES_SEARCH */
42
43 #ifdef KERBEROS_V4
44 #ifdef KERBEROS_V5
45 #include <kerberosIV/des.h>
46 #include <kerberosIV/krb.h>
47 #else
48 #if defined (__bsdi__)
49 #include <des.h> /* order of includes matters */
50 #include <krb.h>
51 #define krb_get_err_text(e) (krb_err_txt[e])
52 #else
53 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__linux__)
54 #define krb_get_err_text(e) (krb_err_txt[e])
55 #include <krb.h>
56 #include <des.h>
57 #else
58 #include <krb.h>
59 #include <des.h>
60 #endif /* ! defined (__FreeBSD__) */
61 #endif /* ! defined (__bsdi__) */
62 #endif /* KERBEROS_V5 */
63 #include <netinet/in.h>
64 #include <netdb.h>
65 #endif /* KERBEROS_V4 */
66 #ifdef KERBEROS_V5
67 #include <krb5.h>
68 #include <com_err.h>
69 #endif /* KERBEROS_V5 */
70 #include "i18n.h"
71
72 #include "socket.h"
73 #include "fetchmail.h"
74 #include "tunable.h"
75
76 /* throw types for runtime errors */
77 #define THROW_TIMEOUT   1               /* server timed out */
78 #define THROW_SIGPIPE   2               /* SIGPIPE on stream socket */
79
80 #ifndef strstr          /* glibc-2.1 declares this as a macro */
81 extern char *strstr();  /* needed on sysV68 R3V7.1. */
82 #endif /* strstr */
83
84 int batchcount;         /* count of messages sent in current batch */
85 flag peek_capable;      /* can we peek for better error recovery? */
86 int pass;               /* how many times have we re-polled? */
87 int stage;              /* where are we? */
88 int phase;              /* where are we, for error-logging purposes? */
89 int mytimeout;          /* value of nonreponse timeout */
90
91 static const struct method *protocol;
92 static jmp_buf  restart;
93
94 char tag[TAGLEN];
95 static int tagnum;
96 #define GENSYM  (sprintf(tag, "A%04d", ++tagnum % TAGMOD), tag)
97
98 static char shroud[PASSWORDLEN];        /* string to shroud in debug output */
99 static int timeoutcount;                /* count consecutive timeouts */
100 static int msglen;                      /* actual message length */
101
102 void set_timeout(int timeleft)
103 /* reset the nonresponse-timeout */
104 {
105 #if !defined(__EMX__) && !defined(__BEOS__) 
106     struct itimerval ntimeout;
107
108     if (timeleft == 0)
109         timeoutcount = 0;
110
111     ntimeout.it_interval.tv_sec = ntimeout.it_interval.tv_usec = 0;
112     ntimeout.it_value.tv_sec  = timeleft;
113     ntimeout.it_value.tv_usec = 0;
114     setitimer(ITIMER_REAL, &ntimeout, (struct itimerval *)NULL);
115 #endif
116 }
117
118 static void timeout_handler (int signal)
119 /* handle SIGALRM signal indicating a server timeout */
120 {
121     timeoutcount++;
122     longjmp(restart, THROW_TIMEOUT);
123 }
124
125 static void sigpipe_handler (int signal)
126 /* handle SIGPIPE signal indicating a broken stream socket */
127 {
128     longjmp(restart, THROW_SIGPIPE);
129 }
130
131 static int accept_count, reject_count;
132
133 static void map_name(const char *name, struct query *ctl, struct idlist **xmit_names)
134 /* add given name to xmit_names if it matches declared localnames */
135 /*   name:       name to map */
136 /*   ctl:        list of permissible aliases */
137 /*   xmit_names: list of recipient names parsed out */
138 {
139     const char  *lname;
140     int off = 0;
141     
142     lname = idpair_find(&ctl->localnames, name+off);
143     if (!lname && ctl->wildcard)
144         lname = name+off;
145
146     if (lname != (char *)NULL)
147     {
148         if (outlevel >= O_DEBUG)
149             report(stdout, _("mapped %s to local %s\n"), name, lname);
150         save_str(xmit_names, lname, XMIT_ACCEPT);
151         accept_count++;
152     }
153 }
154
155 static void find_server_names(const char *hdr,
156                               struct query *ctl,
157                               struct idlist **xmit_names)
158 /* parse names out of a RFC822 header into an ID list */
159 /*   hdr:               RFC822 header in question */
160 /*   ctl:               list of permissible aliases */
161 /*   xmit_names:        list of recipient names parsed out */
162 {
163     if (hdr == (char *)NULL)
164         return;
165     else
166     {
167         char    *cp;
168
169         for (cp = nxtaddr(hdr);
170              cp != NULL;
171              cp = nxtaddr(NULL))
172         {
173             char        *atsign;
174
175             /*
176              * If the name of the user begins with a qmail virtual
177              * domain prefix, ignore the prefix.  Doing this here
178              * means qvirtual will work either with ordinary name
179              * mapping or with a localdomains option.
180              */
181             if (ctl->server.qvirtual)
182             {
183                 int sl = strlen(ctl->server.qvirtual);
184  
185                 if (!strncasecmp(cp, ctl->server.qvirtual, sl))
186                     cp += sl;
187             }
188
189             if ((atsign = strchr(cp, '@'))) {
190                 struct idlist   *idp;
191
192                 /*
193                  * Does a trailing segment of the hostname match something
194                  * on the localdomains list?  If so, save the whole name
195                  * and keep going.
196                  */
197                 for (idp = ctl->server.localdomains; idp; idp = idp->next) {
198                     char        *rhs;
199
200                     rhs = atsign + (strlen(atsign) - strlen(idp->id));
201                     if (rhs > atsign &&
202                         (rhs[-1] == '.' || rhs[-1] == '@') &&
203                         strcasecmp(rhs, idp->id) == 0)
204                     {
205                         if (outlevel >= O_DEBUG)
206                             report(stdout, _("passed through %s matching %s\n"), 
207                                   cp, idp->id);
208                         save_str(xmit_names, cp, XMIT_ACCEPT);
209                         accept_count++;
210                         goto nomap;
211                     }
212                 }
213
214                 /* if we matched a local domain, idp != NULL */
215                 if (!idp)
216                 {
217                     /*
218                      * Check to see if the right-hand part is an alias
219                      * or MX equivalent of the mailserver.  If it's
220                      * not, skip this name.  If it is, we'll keep
221                      * going and try to find a mapping to a client name.
222                      */
223                     if (!is_host_alias(atsign+1, ctl))
224                     {
225                         save_str(xmit_names, cp, XMIT_REJECT);
226                         reject_count++;
227                         continue;
228                     }
229                 }
230                 atsign[0] = '\0';
231                 map_name(cp, ctl, xmit_names);
232             nomap:;
233             }
234         }
235     }
236 }
237
238 /*
239  * Return zero on a syntactically invalid address, nz on a valid one.
240  *
241  * This used to be strchr(a, '.'), but it turns out that lines like this
242  *
243  * Received: from punt-1.mail.demon.net by mailstore for markb@ordern.com
244  *          id 938765929:10:27223:2; Fri, 01 Oct 99 08:18:49 GMT
245  *
246  * are not uncommon.  So now we just check that the following token is
247  * not itself an email address.
248  */
249 #define VALID_ADDRESS(a)        !strchr(a, '@')
250
251 static char *parse_received(struct query *ctl, char *bufp)
252 /* try to extract real address from the Received line */
253 /* If a valid Received: line is found, we return the full address in
254  * a buffer which can be parsed from nxtaddr().  This is to ansure that
255  * the local domain part of the address can be passed along in 
256  * find_server_names() if it contains one.
257  * Note: We should return a dummy header containing the address 
258  * which makes nxtaddr() behave correctly. 
259  */
260 {
261     char *base, *ok = (char *)NULL;
262     static char rbuf[HOSTLEN + USERNAMELEN + 4]; 
263
264     /*
265      * Try to extract the real envelope addressee.  We look here
266      * specifically for the mailserver's Received line.
267      * Note: this will only work for sendmail, or an MTA that
268      * shares sendmail's convention for embedding the envelope
269      * address in the Received line.  Sendmail itself only
270      * does this when the mail has a single recipient.
271      */
272     if (outlevel >= O_DEBUG)
273         report(stdout, _("analyzing Received line:\n%s"), bufp);
274
275     /* search for whitepace-surrounded "by" followed by valid address */
276     for (base = bufp;  ; base = ok + 2)
277     {
278         if (!(ok = strstr(base, "by")))
279             break;
280         else if (!isspace(ok[-1]) || !isspace(ok[2]))
281             continue;
282         else
283         {
284             char        *sp, *tp;
285
286             /* extract space-delimited token after "by" */
287             for (sp = ok + 2; isspace(*sp); sp++)
288                 continue;
289             tp = rbuf;
290             for (; !isspace(*sp); sp++)
291                 *tp++ = *sp;
292             *tp = '\0';
293
294             /* look for valid address */
295             if (VALID_ADDRESS(rbuf))
296                 break;
297             else
298                 ok = sp - 1;    /* arrange to skip this token */
299         }
300     }
301     if (ok)
302     {
303         /*
304          * If it's a DNS name of the mail server, look for the
305          * recipient name after a following "for".  Otherwise
306          * punt.
307          */
308         if (is_host_alias(rbuf, ctl))
309         {
310             if (outlevel >= O_DEBUG)
311                 report(stdout, 
312                       _("line accepted, %s is an alias of the mailserver\n"), rbuf);
313         }
314         else
315         {
316             if (outlevel >= O_DEBUG)
317                 report(stdout, 
318                       _("line rejected, %s is not an alias of the mailserver\n"), 
319                       rbuf);
320             return(NULL);
321         }
322
323         /* search for whitepace-surrounded "for" followed by xxxx@yyyy */
324         for (base = ok + 4 + strlen(rbuf);  ; base = ok + 2)
325         {
326             if (!(ok = strstr(base, "for")))
327                 break;
328             else if (!isspace(ok[-1]) || !isspace(ok[3]))
329                 continue;
330             else
331             {
332                 char    *sp, *tp;
333
334                 /* extract space-delimited token after "for" */
335                 for (sp = ok + 3; isspace(*sp); sp++)
336                     continue;
337                 tp = rbuf;
338                 for (; !isspace(*sp); sp++)
339                     *tp++ = *sp;
340                 *tp = '\0';
341
342                 if (strchr(rbuf, '@'))
343                     break;
344                 else
345                     ok = sp - 1;        /* arrange to skip this token */
346             }
347         }
348         if (ok)
349         {
350             flag        want_gt = FALSE;
351             char        *sp, *tp;
352
353             /* char after "for" could be space or a continuation newline */
354             for (sp = ok + 4; isspace(*sp); sp++)
355                 continue;
356             tp = rbuf;
357             *tp++ = ':';        /* Here is the hack.  This is to be friends */
358             *tp++ = ' ';        /* with nxtaddr()... */
359             if (*sp == '<')
360             {
361                 want_gt = TRUE;
362                 sp++;
363             }
364             while (*sp == '@')          /* skip routes */
365                 while (*sp && *sp++ != ':')
366                     continue;
367             while (*sp
368                    && (want_gt ? (*sp != '>') : !isspace(*sp))
369                    && *sp != ';')
370                 if (!isspace(*sp))
371                     *tp++ = *sp++;
372                 else
373                 {
374                     /* uh oh -- whitespace here can't be right! */
375                     ok = (char *)NULL;
376                     break;
377                 }
378             *tp++ = '\n';
379             *tp = '\0';
380             if (strlen(rbuf) <= 3)      /* apparently nothing has been found */
381                 ok = NULL;
382         } else
383             ok = (char *)NULL;
384     }
385
386     if (!ok)
387     {
388         if (outlevel >= O_DEBUG)
389             report(stdout, _("no Received address found\n"));
390         return(NULL);
391     }
392     else
393     {
394         if (outlevel >= O_DEBUG) {
395             char *lf = rbuf + strlen(rbuf)-1;
396             *lf = '\0';
397             if (outlevel >= O_DEBUG)
398                 report(stdout, _("found Received address `%s'\n"), rbuf+2);
399             *lf = '\n';
400         }
401         return(rbuf);
402     }
403 }
404
405 /* shared by readheaders and readbody */
406 static int sizeticker;
407 static struct msgblk msgblk;
408
409 #define EMPTYLINE(s)    ((s)[0] == '\r' && (s)[1] == '\n' && (s)[2] == '\0')
410
411 static int readheaders(int sock,
412                        long fetchlen,
413                        long reallen,
414                        struct query *ctl,
415                        int num)
416 /* read message headers and ship to SMTP or MDA */
417 /*   sock:              to which the server is connected */
418 /*   fetchlen:          length of message according to fetch response */
419 /*   reallen:           length of message according to getsizes */
420 /*   ctl:               query control record */
421 /*   num:               index of message */
422 {
423     struct addrblk
424     {
425         int             offset;
426         struct addrblk  *next;
427     };
428     struct addrblk      *to_addrchain = NULL;
429     struct addrblk      **to_chainptr = &to_addrchain;
430     struct addrblk      *resent_to_addrchain = NULL;
431     struct addrblk      **resent_to_chainptr = &resent_to_addrchain;
432
433     char                buf[MSGBUFSIZE+1];
434     int                 from_offs, reply_to_offs, resent_from_offs;
435     int                 app_from_offs, sender_offs, resent_sender_offs;
436     int                 env_offs;
437     char                *received_for, *rcv, *cp, *delivered_to;
438     int                 n, linelen, oldlen, ch, remaining, skipcount;
439     struct idlist       *idp;
440     flag                no_local_matches = FALSE;
441     flag                headers_ok, has_nuls;
442     int                 olderrs, good_addresses, bad_addresses;
443
444     sizeticker = 0;
445     has_nuls = headers_ok = FALSE;
446     msgblk.return_path[0] = '\0';
447     olderrs = ctl->errcount;
448
449     /* read message headers */
450     msgblk.reallen = reallen;
451
452     /*
453      * We used to free the header block unconditionally at the end of 
454      * readheaders, but it turns out that if close_sink() hits an error
455      * condition the code for sending bouncemail will actually look
456      * at the freed storage and coredump...
457      */
458     if (msgblk.headers)
459        free(msgblk.headers);
460
461     msgblk.headers = received_for = delivered_to = NULL;
462     from_offs = reply_to_offs = resent_from_offs = app_from_offs = 
463         sender_offs = resent_sender_offs = env_offs = -1;
464     oldlen = 0;
465     msglen = 0;
466     skipcount = 0;
467     ctl->mimemsg = 0;
468
469     for (remaining = fetchlen; remaining > 0 || protocol->delimited; remaining -= linelen)
470     {
471         char *line;
472
473         line = xmalloc(sizeof(buf));
474         linelen = 0;
475         line[0] = '\0';
476         do {
477             set_timeout(mytimeout);
478             if ((n = SockRead(sock, buf, sizeof(buf)-1)) == -1) {
479                 set_timeout(0);
480                 free(line);
481                 free(msgblk.headers);
482                 msgblk.headers = NULL;
483                 return(PS_SOCKET);
484             }
485             set_timeout(0);
486             linelen += n;
487             msglen += n;
488
489             /* lines may not be properly CRLF terminated; fix this for qmail */
490             if (ctl->forcecr)
491             {
492                 cp = buf + strlen(buf) - 1;
493                 if (*cp == '\n' && (cp == buf || cp[-1] != '\r'))
494                 {
495                     *cp++ = '\r';
496                     *cp++ = '\n';
497                     *cp++ = '\0';
498                 }
499             }
500
501             /*
502              * Decode MIME encoded headers. We MUST do this before
503              * looking at the Content-Type / Content-Transfer-Encoding
504              * headers (RFC 2046).
505              */
506             if (ctl->mimedecode)
507                 UnMimeHeader(buf);
508
509             line = (char *) realloc(line, strlen(line) + strlen(buf) +1);
510
511             strcat(line, buf);
512
513             /* check for end of headers */
514             if (EMPTYLINE(line))
515             {
516                 headers_ok = TRUE;
517                 has_nuls = (linelen != strlen(line));
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                 free(line);
530                 has_nuls = (linelen != strlen(line));
531                 goto process_headers;
532             }
533
534             /* check for RFC822 continuations */
535             set_timeout(mytimeout);
536             ch = SockPeek(sock);
537             set_timeout(0);
538         } while
539             (ch == ' ' || ch == '\t');  /* continuation to next line? */
540
541         /* write the message size dots */
542         if ((outlevel > O_SILENT && outlevel < O_VERBOSE) && linelen > 0)
543         {
544             sizeticker += linelen;
545             while (sizeticker >= SIZETICKER)
546             {
547                 if ((!run.use_syslog && !isafile(1)) || run.showdots)
548                 {
549                     fputc('.', stdout);
550                     fflush(stdout);
551                 }
552                 sizeticker -= SIZETICKER;
553             }
554         }
555
556         /* we see an ordinary (non-header, non-message-delimiter line */
557         has_nuls = (linelen != strlen(line));
558
559         /*
560          * When mail delivered to a multidrop mailbox on the server is
561          * addressed to multiple people on the client machine, there
562          * will be one copy left in the box for each recipient.  Thus,
563          * if the mail is addressed to N people, each recipient will
564          * get N copies.  This is bad when N > 1.
565          *
566          * Foil this by suppressing all but one copy of a message with
567          * a given Message-ID.  The accept_count test ensures that
568          * multiple pieces of email with the same Message-ID, each
569          * with a *single* addressee (the N == 1 case), won't be 
570          * suppressed.
571          *
572          * Note: This implementation only catches runs of successive
573          * messages with the same ID, but that should be good
574          * enough. A more general implementation would have to store
575          * ever-growing lists of seen message-IDs; in a long-running
576          * daemon this would turn into a memory leak even if the 
577          * implementation were perfect.
578          * 
579          * Don't mess with this code casually.  It would be way too easy
580          * to break it in a way that blackholed mail.  Better to pass
581          * the occasional duplicate than to do that...
582          */
583         if (MULTIDROP(ctl) && !strncasecmp(line, "Message-ID:", 11))
584         {
585             if (ctl->lastid && !strcasecmp(ctl->lastid, line))
586             {
587                 if (accept_count > 1)
588                     return(PS_REFUSED);
589             }
590             else
591             {
592                 if (ctl->lastid)
593                     free(ctl->lastid);
594                 ctl->lastid = strdup(line);
595             }
596         }
597
598         /*
599          * The University of Washington IMAP server (the reference
600          * implementation of IMAP4 written by Mark Crispin) relies
601          * on being able to keep base-UID information in a special
602          * message at the head of the mailbox.  This message should
603          * neither be deleted nor forwarded.
604          */
605 #ifdef POP2_ENABLE
606         /*
607          * We disable this check under POP2 because there's no way to
608          * prevent deletion of the message.  So at least we ought to 
609          * forward it to the user so he or she will have some clue
610          * that things have gone awry.
611          */
612 #if INET6_ENABLE
613         if (strncmp(protocol->service, "pop2", 4))
614 #else /* INET6_ENABLE */
615         if (protocol->port != 109)
616 #endif /* INET6_ENABLE */
617 #endif /* POP2_ENABLE */
618             if (num == 1 && !strncasecmp(line, "X-IMAP:", 7)) {
619                 free(line);
620                 free(msgblk.headers);
621                 msgblk.headers = NULL;
622                 return(PS_RETAINED);
623             }
624
625         /*
626          * This code prevents fetchmail from becoming an accessory after
627          * the fact to upstream sendmails with the `E' option on.  It also
628          * copes with certain brain-dead POP servers (like NT's) that pass
629          * through Unix from_ lines.
630          *
631          * Either of these bugs can result in a non-RFC822 line at the
632          * beginning of the headers.  If fetchmail just passes it
633          * through, the client listener may think the message has *no*
634          * headers (since the first) line it sees doesn't look
635          * RFC822-conformant) and fake up a set.
636          *
637          * What the user would see in this case is bogus (synthesized)
638          * headers, followed by a blank line, followed by the >From, 
639          * followed by the real headers, followed by a blank line,
640          * followed by text.
641          *
642          * We forestall this lossage by tossing anything that looks
643          * like an escaped or passed-through From_ line in headers.
644          * These aren't RFC822 so our conscience is clear...
645          */
646         if (!strncasecmp(line, ">From ", 6) || !strncasecmp(line, "From ", 5))
647         {
648             free(line);
649             continue;
650         }
651
652         /*
653          * We remove all Delivered-To: headers.
654          * 
655          * This is to avoid false mail loops messages when delivering
656          * local messages to and from a Postfix/qmail mailserver. 
657          * 
658          * Should be controlled by an option
659          */
660         if (ctl->dropdelivered && !strncasecmp(line, "Delivered-To:", 13)) {
661       if (delivered_to) free(line);
662       else delivered_to = line;
663           continue;
664         }
665
666         /*
667          * If we see a Status line, it may have been inserted by an MUA
668          * on the mail host, or it may have been inserted by the server
669          * program after the headers in the transaction stream.  This
670          * can actually hose some new-mail notifiers such as xbuffy,
671          * which assumes any Status line came from a *local* MDA and
672          * therefore indicates that the message has been seen.
673          *
674          * Some buggy POP servers (including at least the 3.3(20)
675          * version of the one distributed with IMAP) insert empty
676          * Status lines in the transaction stream; we'll chuck those
677          * unconditionally.  Nonempty ones get chucked if the user
678          * turns on the dropstatus flag.
679          */
680         {
681             char        *cp;
682
683             if (!strncasecmp(line, "Status:", 7))
684                 cp = line + 7;
685             else if (!strncasecmp(line, "X-Mozilla-Status:", 17))
686                 cp = line + 17;
687             else
688                 cp = NULL;
689             if (cp) {
690                 while (*cp && isspace(*cp)) cp++;
691                 if (!*cp || ctl->dropstatus)
692                 {
693                     free(line);
694                     continue;
695                 }
696             }
697         }
698
699         if (ctl->rewrite)
700             line = reply_hack(line, ctl->server.truename);
701
702         /*
703          * OK, this is messy.  If we're forwarding by SMTP, it's the
704          * SMTP-receiver's job (according to RFC821, page 22, section
705          * 4.1.1) to generate a Return-Path line on final delivery.
706          * The trouble is, we've already got one because the
707          * mailserver's SMTP thought *it* was responsible for final
708          * delivery.
709          *
710          * Stash away the contents of Return-Path (as modified by reply_hack)
711          * for use in generating MAIL FROM later on, then prevent the header
712          * from being saved with the others.  In effect, we strip it off here.
713          *
714          * If the SMTP server conforms to the standards, and fetchmail gets the
715          * envelope sender from the Return-Path, the new Return-Path should be
716          * exactly the same as the original one.
717          *
718          * We do *not* want to ignore empty Return-Path headers.  These should
719          * be passed through as a way of indicating that a message should
720          * not trigger bounces if delivery fails.  What we *do* need to do is
721          * make sure we never try to rewrite such a blank Return-Path.  We
722          * handle this with a check for <> in the rewrite logic above.
723          */
724         if (!strncasecmp("Return-Path:", line, 12) && (cp = nxtaddr(line)))
725         {
726             strcpy(msgblk.return_path, cp);
727             if (!ctl->mda) {
728                 free(line);
729                 continue;
730             }
731         }
732
733         if (!msgblk.headers)
734         {
735             oldlen = strlen(line);
736             msgblk.headers = xmalloc(oldlen + 1);
737             (void) strcpy(msgblk.headers, line);
738             free(line);
739             line = msgblk.headers;
740         }
741         else
742         {
743             int newlen;
744
745             newlen = oldlen + strlen(line);
746             msgblk.headers = (char *) realloc(msgblk.headers, newlen + 1);
747             if (msgblk.headers == NULL) {
748                 free(line);
749                 return(PS_IOERR);
750             }
751             strcpy(msgblk.headers + oldlen, line);
752             free(line);
753             line = msgblk.headers + oldlen;
754             oldlen = newlen;
755         }
756
757         if (!strncasecmp("From:", line, 5))
758             from_offs = (line - msgblk.headers);
759         else if (!strncasecmp("Reply-To:", line, 9))
760             reply_to_offs = (line - msgblk.headers);
761         else if (!strncasecmp("Resent-From:", line, 12))
762             resent_from_offs = (line - msgblk.headers);
763         else if (!strncasecmp("Apparently-From:", line, 16))
764             app_from_offs = (line - msgblk.headers);
765         else if (!strncasecmp("Sender:", line, 7))
766             sender_offs = (line - msgblk.headers);
767         else if (!strncasecmp("Resent-Sender:", line, 14))
768             resent_sender_offs = (line - msgblk.headers);
769
770 #ifdef __UNUSED__
771         else if (!strncasecmp("Message-Id:", line, 11))
772         {
773             if (ctl->server.uidl)
774             {
775                 char id[IDLEN+1];
776
777                 line[IDLEN+12] = 0;             /* prevent stack overflow */
778                 sscanf(line+12, "%s", id);
779                 if (!str_find( &ctl->newsaved, num))
780                 {
781                     struct idlist *new = save_str(&ctl->newsaved,id,UID_SEEN);
782                     new->val.status.num = num;
783                 }
784             }
785         }
786 #endif /* __UNUSED__ */
787
788         else if (!MULTIDROP(ctl))
789             continue;
790
791         else if (!strncasecmp("To:", line, 3)
792                         || !strncasecmp("Cc:", line, 3)
793                         || !strncasecmp("Bcc:", line, 4)
794                         || !strncasecmp("Apparently-To:", line, 14))
795         {
796             *to_chainptr = xmalloc(sizeof(struct addrblk));
797             (*to_chainptr)->offset = (line - msgblk.headers);
798             to_chainptr = &(*to_chainptr)->next; 
799             *to_chainptr = NULL;
800         }
801
802         else if (!strncasecmp("Resent-To:", line, 10)
803                         || !strncasecmp("Resent-Cc:", line, 10)
804                         || !strncasecmp("Resent-Bcc:", line, 11))
805         {
806             *resent_to_chainptr = xmalloc(sizeof(struct addrblk));
807             (*resent_to_chainptr)->offset = (line - msgblk.headers);
808             resent_to_chainptr = &(*resent_to_chainptr)->next; 
809             *resent_to_chainptr = NULL;
810         }
811
812         else if (ctl->server.envelope != STRING_DISABLED)
813         {
814             if (ctl->server.envelope 
815                         && strcasecmp(ctl->server.envelope, "Received"))
816             {
817                 if (env_offs == -1 && !strncasecmp(ctl->server.envelope,
818                                                 line,
819                                                 strlen(ctl->server.envelope)))
820                 {                               
821                     if (skipcount++ != ctl->server.envskip)
822                         continue;
823                     env_offs = (line - msgblk.headers);
824                 }    
825             }
826             else if (!received_for && !strncasecmp("Received:", line, 9))
827             {
828                 if (skipcount++ != ctl->server.envskip)
829                     continue;
830                 received_for = parse_received(ctl, line);
831             }
832         }
833     }
834
835  process_headers:
836     /*
837      * We want to detect this early in case there are so few headers that the
838      * dispatch logic barfs.
839      */
840     if (!headers_ok)
841     {
842         if (outlevel > O_SILENT)
843             report(stdout,
844                    _("message delimiter found while scanning headers\n"));
845     }
846
847     /*
848      * Hack time.  If the first line of the message was blank, with no headers
849      * (this happens occasionally due to bad gatewaying software) cons up
850      * a set of fake headers.  
851      *
852      * If you modify the fake header template below, be sure you don't
853      * make either From or To address @-less, otherwise the reply_hack
854      * logic will do bad things.
855      */
856     if (msgblk.headers == (char *)NULL)
857     {
858 #ifdef HAVE_SNPRINTF
859         snprintf(buf, sizeof(buf),
860 #else
861         sprintf(buf, 
862 #endif /* HAVE_SNPRINTF */
863         "From: FETCHMAIL-DAEMON\r\nTo: %s@%s\r\nSubject: Headerless mail from %s's mailbox on %s\r\n",
864                 user, fetchmailhost, ctl->remotename, ctl->server.truename);
865         msgblk.headers = xstrdup(buf);
866     }
867
868     /*
869      * We can now process message headers before reading the text.
870      * In fact we have to, as this will tell us where to forward to.
871      */
872
873     /* Check for MIME headers indicating possible 8-bit data */
874     ctl->mimemsg = MimeBodyType(msgblk.headers, ctl->mimedecode);
875
876 #ifdef SDPS_ENABLE
877     if (ctl->server.sdps && sdps_envfrom)
878     {
879         /* We have the real envelope return-path, stored out of band by
880          * SDPS - that's more accurate than any header is going to be.
881          */
882         strcpy(msgblk.return_path, sdps_envfrom);
883         free(sdps_envfrom);
884     } else
885 #endif /* SDPS_ENABLE */
886     /*
887      * If there is a Return-Path address on the message, this was
888      * almost certainly the MAIL FROM address given the originating
889      * sendmail.  This is the best thing to use for logging the
890      * message origin (it sets up the right behavior for bounces and
891      * mailing lists).  Otherwise, fall down to the next available 
892      * envelope address (which is the most probable real sender).
893      * *** The order is important! ***
894      * This is especially useful when receiving mailing list
895      * messages in multidrop mode.  if a local address doesn't
896      * exist, the bounce message won't be returned blindly to the 
897      * author or to the list itself but rather to the list manager
898      * (ex: specified by "Sender:") which is much less annoying.  This 
899      * is true for most mailing list packages.
900      */
901     if( !msgblk.return_path[0] ){
902         char *ap = NULL;
903         if (resent_sender_offs >= 0 && (ap = nxtaddr(msgblk.headers + resent_sender_offs)));
904         else if (sender_offs >= 0 && (ap = nxtaddr(msgblk.headers + sender_offs)));
905         else if (resent_from_offs >= 0 && (ap = nxtaddr(msgblk.headers + resent_from_offs)));
906         else if (from_offs >= 0 && (ap = nxtaddr(msgblk.headers + from_offs)));
907         else if (reply_to_offs >= 0 && (ap = nxtaddr(msgblk.headers + reply_to_offs)));
908         else if (app_from_offs >= 0 && (ap = nxtaddr(msgblk.headers + app_from_offs)));
909         if (ap) strcpy( msgblk.return_path, ap );
910     }
911
912     /* cons up a list of local recipients */
913     msgblk.recipients = (struct idlist *)NULL;
914     accept_count = reject_count = 0;
915     /* is this a multidrop box? */
916     if (MULTIDROP(ctl))
917     {
918 #ifdef SDPS_ENABLE
919         if (ctl->server.sdps && sdps_envto)
920         {
921             /* We have the real envelope recipient, stored out of band by
922              * SDPS - that's more accurate than any header is going to be.
923              */
924             find_server_names(sdps_envto, ctl, &msgblk.recipients);
925             free(sdps_envto);
926         } else
927 #endif /* SDPS_ENABLE */ 
928         if (env_offs > -1)          /* We have the actual envelope addressee */
929             find_server_names(msgblk.headers + env_offs, ctl, &msgblk.recipients);
930         else if (delivered_to && ctl->server.envelope != STRING_DISABLED &&
931       ctl->server.envelope && !strcasecmp(ctl->server.envelope, "Delivered-To"))
932    {
933             find_server_names(delivered_to, ctl, &msgblk.recipients);
934        free(delivered_to);
935    }
936         else if (received_for)
937             /*
938              * We have the Received for addressee.  
939              * It has to be a mailserver address, or we
940              * wouldn't have got here.
941              * We use find_server_names() to let local 
942              * hostnames go through.
943              */
944             find_server_names(received_for, ctl, &msgblk.recipients);
945         else
946         {
947             /*
948              * We haven't extracted the envelope address.
949              * So check all the "Resent-To" header addresses if 
950              * they exist.  If and only if they don't, consider
951              * the "To" addresses.
952              */
953             register struct addrblk *nextptr;
954             if (resent_to_addrchain) {
955                 /* delete the "To" chain and substitute it 
956                  * with the "Resent-To" list 
957                  */
958                 while (to_addrchain) {
959                     nextptr = to_addrchain->next;
960                     free(to_addrchain);
961                     to_addrchain = nextptr;
962                 }
963                 to_addrchain = resent_to_addrchain;
964                 resent_to_addrchain = NULL;
965             }
966             /* now look for remaining adresses */
967             while (to_addrchain) {
968                 find_server_names(msgblk.headers+to_addrchain->offset, ctl, &msgblk.recipients);
969                 nextptr = to_addrchain->next;
970                 free(to_addrchain);
971                 to_addrchain = nextptr;
972             }
973         }
974         if (!accept_count)
975         {
976             no_local_matches = TRUE;
977             save_str(&msgblk.recipients, run.postmaster, XMIT_ACCEPT);
978             if (outlevel >= O_DEBUG)
979                 report(stdout,
980                       _("no local matches, forwarding to %s\n"),
981                       run.postmaster);
982         }
983     }
984     else        /* it's a single-drop box, use first localname */
985         save_str(&msgblk.recipients, ctl->localnames->id, XMIT_ACCEPT);
986
987
988     /*
989      * Time to either address the message or decide we can't deliver it yet.
990      */
991     if (ctl->errcount > olderrs)        /* there were DNS errors above */
992     {
993         if (outlevel >= O_DEBUG)
994             report(stdout,
995                    _("forwarding and deletion suppressed due to DNS errors\n"));
996         free(msgblk.headers);
997         msgblk.headers = NULL;
998         free_str_list(&msgblk.recipients);
999         return(PS_TRANSIENT);
1000     }
1001     else
1002     {
1003         /* set up stuffline() so we can deliver the message body through it */ 
1004         if ((n = open_sink(ctl, &msgblk,
1005                            &good_addresses, &bad_addresses)) != PS_SUCCESS)
1006         {
1007             free(msgblk.headers);
1008             msgblk.headers = NULL;
1009             free_str_list(&msgblk.recipients);
1010             return(n);
1011         }
1012     }
1013
1014     n = 0;
1015     /*
1016      * Some server/sendmail combinations cause problems when our
1017      * synthetic Received line is before the From header.  Cope
1018      * with this...
1019      */
1020     if ((rcv = strstr(msgblk.headers, "Received:")) == (char *)NULL)
1021         rcv = msgblk.headers;
1022     /* handle ">Received:" lines too */
1023     while (rcv > msgblk.headers && rcv[-1] != '\n')
1024         rcv--;
1025     if (rcv > msgblk.headers)
1026     {
1027         char    c = *rcv;
1028
1029         *rcv = '\0';
1030         n = stuffline(ctl, msgblk.headers);
1031         *rcv = c;
1032     }
1033     if (!run.invisible && n != -1)
1034     {
1035         /* utter any per-message Received information we need here */
1036         if (ctl->server.trueaddr) {
1037             sprintf(buf, "Received: from %s [%u.%u.%u.%u]\r\n", 
1038                     ctl->server.truename,
1039                     (unsigned char)ctl->server.trueaddr[0],
1040                     (unsigned char)ctl->server.trueaddr[1],
1041                     (unsigned char)ctl->server.trueaddr[2],
1042                     (unsigned char)ctl->server.trueaddr[3]);
1043         } else {
1044           sprintf(buf, "Received: from %s\r\n", ctl->server.truename);
1045         }
1046         n = stuffline(ctl, buf);
1047         if (n != -1)
1048         {
1049             /*
1050              * This header is technically invalid under RFC822.
1051              * POP3, IMAP, etc. are not legal mail-parameter values.
1052              *
1053              * We used to include ctl->remotename in this log line,
1054              * but this can be secure information that would be bad
1055              * to reveal.
1056              */
1057             sprintf(buf, "\tby %s with %s (fetchmail-%s)\r\n",
1058                     fetchmailhost,
1059                     protocol->name,
1060                     VERSION);
1061             n = stuffline(ctl, buf);
1062             if (n != -1)
1063             {
1064                 buf[0] = '\t';
1065                 if (good_addresses == 0)
1066                 {
1067                     sprintf(buf+1, 
1068                             "for %s@%s (by default); ",
1069                             user, ctl->destaddr);
1070                 }
1071                 else if (good_addresses == 1)
1072                 {
1073                     for (idp = msgblk.recipients; idp; idp = idp->next)
1074                         if (idp->val.status.mark == XMIT_ACCEPT)
1075                             break;      /* only report first address */
1076                     if (strchr(idp->id, '@'))
1077                         sprintf(buf+1, "for %s", idp->id);
1078                     else
1079                         /*
1080                          * This could be a bit misleading, as destaddr is
1081                          * the forwarding host rather than the actual 
1082                          * destination.  Most of the time they coincide.
1083                          */
1084                         sprintf(buf+1, "for %s@%s", idp->id, ctl->destaddr);
1085                     sprintf(buf+strlen(buf), " (%s); ",
1086                             MULTIDROP(ctl) ? "multi-drop" : "single-drop");
1087                 }
1088                 else
1089                     buf[1] = '\0';
1090
1091                 strcat(buf, rfc822timestamp());
1092                 strcat(buf, "\r\n");
1093                 n = stuffline(ctl, buf);
1094             }
1095         }
1096     }
1097
1098     if (n != -1)
1099         n = stuffline(ctl, rcv);        /* ship out rest of msgblk.headers */
1100
1101     if (n == -1)
1102     {
1103         report(stdout, _("writing RFC822 msgblk.headers\n"));
1104         release_sink(ctl);
1105         free(msgblk.headers);
1106         msgblk.headers = NULL;
1107         free_str_list(&msgblk.recipients);
1108         return(PS_IOERR);
1109     }
1110     else if ((run.poll_interval == 0 || nodetach) && outlevel >= O_VERBOSE && !isafile(2))
1111         fputs("#", stderr);
1112
1113     /* write error notifications */
1114     if (no_local_matches || has_nuls || bad_addresses)
1115     {
1116         int     errlen = 0;
1117         char    errhd[USERNAMELEN + POPBUFSIZE], *errmsg;
1118
1119         errmsg = errhd;
1120         (void) strcpy(errhd, "X-Fetchmail-Warning: ");
1121         if (no_local_matches)
1122         {
1123             if (reject_count != 1)
1124                 strcat(errhd, _("no recipient addresses matched declared local names"));
1125             else
1126             {
1127                 for (idp = msgblk.recipients; idp; idp = idp->next)
1128                     if (idp->val.status.mark == XMIT_REJECT)
1129                         break;
1130                 sprintf(errhd+strlen(errhd), _("recipient address %s didn't match any local name"), idp->id);
1131             }
1132         }
1133
1134         if (has_nuls)
1135         {
1136             if (errhd[sizeof("X-Fetchmail-Warning: ")])
1137                 strcat(errhd, "; ");
1138             strcat(errhd, _("message has embedded NULs"));
1139         }
1140
1141         if (bad_addresses)
1142         {
1143             if (errhd[sizeof("X-Fetchmail-Warning: ")])
1144                 strcat(errhd, "; ");
1145             strcat(errhd, _("SMTP listener rejected local recipient addresses: "));
1146             errlen = strlen(errhd);
1147             for (idp = msgblk.recipients; idp; idp = idp->next)
1148                 if (idp->val.status.mark == XMIT_RCPTBAD)
1149                     errlen += strlen(idp->id) + 2;
1150
1151             xalloca(errmsg, char *, errlen+3);
1152             (void) strcpy(errmsg, errhd);
1153             for (idp = msgblk.recipients; idp; idp = idp->next)
1154                 if (idp->val.status.mark == XMIT_RCPTBAD)
1155                 {
1156                     strcat(errmsg, idp->id);
1157                     if (idp->next)
1158                         strcat(errmsg, ", ");
1159                 }
1160
1161         }
1162
1163         strcat(errmsg, "\r\n");
1164
1165         /* ship out the error line */
1166         stuffline(ctl, errmsg);
1167     }
1168
1169     /* issue the delimiter line */
1170     cp = buf;
1171     *cp++ = '\r';
1172     *cp++ = '\n';
1173     *cp++ = '\0';
1174     stuffline(ctl, buf);
1175
1176 /*    free(msgblk.headers); */
1177     free_str_list(&msgblk.recipients);
1178     return(headers_ok ? PS_SUCCESS : PS_TRUNCATED);
1179 }
1180
1181 static int readbody(int sock, struct query *ctl, flag forward, int len)
1182 /* read and dispose of a message body presented on sock */
1183 /*   ctl:               query control record */
1184 /*   sock:              to which the server is connected */
1185 /*   len:               length of message */
1186 /*   forward:           TRUE to forward */
1187 {
1188     int linelen;
1189     unsigned char buf[MSGBUFSIZE+4];
1190     unsigned char *inbufp = buf;
1191     flag issoftline = FALSE;
1192
1193     /*
1194      * Pass through the text lines in the body.
1195      *
1196      * Yes, this wants to be ||, not &&.  The problem is that in the most
1197      * important delimited protocol, POP3, the length is not reliable.
1198      * As usual, the problem is Microsoft brain damage; see FAQ item S2.
1199      * So, for delimited protocols we need to ignore the length here and
1200      * instead drop out of the loop with a break statement when we see
1201      * the message delimiter.
1202      */
1203     while (protocol->delimited || len > 0)
1204     {
1205         set_timeout(mytimeout);
1206         if ((linelen = SockRead(sock, inbufp, sizeof(buf)-4-(inbufp-buf)))==-1)
1207         {
1208             set_timeout(0);
1209             release_sink(ctl);
1210             return(PS_SOCKET);
1211         }
1212         set_timeout(0);
1213
1214         /* write the message size dots */
1215         if (linelen > 0)
1216         {
1217             sizeticker += linelen;
1218             while (sizeticker >= SIZETICKER)
1219             {
1220                 if (outlevel > O_SILENT && (((run.poll_interval == 0 || nodetach) && !isafile(1)) || run.showdots))
1221                 {
1222                     fputc('.', stdout);
1223                     fflush(stdout);
1224                 }
1225                 sizeticker -= SIZETICKER;
1226             }
1227         }
1228         len -= linelen;
1229
1230         /* check for end of message */
1231         if (protocol->delimited && *inbufp == '.')
1232         {
1233             if (inbufp[1] == '\r' && inbufp[2] == '\n' && inbufp[3] == '\0')
1234                 break;
1235             else if (inbufp[1] == '\n' && inbufp[2] == '\0')
1236                 break;
1237             else
1238                 msglen--;       /* subtract the size of the dot escape */
1239         }
1240
1241         msglen += linelen;
1242
1243         if (ctl->mimedecode && (ctl->mimemsg & MSG_NEEDS_DECODE)) {
1244             issoftline = UnMimeBodyline(&inbufp, protocol->delimited, issoftline);
1245             if (issoftline && (sizeof(buf)-1-(inbufp-buf) < 200))
1246             {
1247                 /*
1248                  * Soft linebreak, but less than 200 bytes left in
1249                  * input buffer. Rather than doing a buffer overrun,
1250                  * ignore the soft linebreak, NL-terminate data and
1251                  * deliver what we have now.
1252                  * (Who writes lines longer than 2K anyway?)
1253                  */
1254                 *inbufp = '\n'; *(inbufp+1) = '\0';
1255                 issoftline = 0;
1256             }
1257         }
1258
1259         /* ship out the text line */
1260         if (forward && (!issoftline))
1261         {
1262             int n;
1263             inbufp = buf;
1264
1265             /* guard against very long lines */
1266             buf[MSGBUFSIZE+1] = '\r';
1267             buf[MSGBUFSIZE+2] = '\n';
1268             buf[MSGBUFSIZE+3] = '\0';
1269
1270             n = stuffline(ctl, buf);
1271
1272             if (n < 0)
1273             {
1274                 report(stdout, _("writing message text\n"));
1275                 release_sink(ctl);
1276                 return(PS_IOERR);
1277             }
1278             else if (outlevel >= O_VERBOSE && !isafile(1))
1279             {
1280                 fputc('*', stdout);
1281                 fflush(stdout);
1282             }
1283         }
1284     }
1285
1286     return(PS_SUCCESS);
1287 }
1288
1289 #ifdef KERBEROS_V4
1290 int
1291 kerberos_auth (socket, canonical, principal) 
1292 /* authenticate to the server host using Kerberos V4 */
1293 int socket;             /* socket to server host */
1294 #if defined(__FreeBSD__) || defined(__OpenBSD__)
1295 char *canonical;        /* server name */
1296 #else
1297 const char *canonical;  /* server name */
1298 #endif
1299 char *principal;
1300 {
1301     char * host_primary;
1302     KTEXT ticket;
1303     MSG_DAT msg_data;
1304     CREDENTIALS cred;
1305     Key_schedule schedule;
1306     int rem;
1307     char * prin_copy = (char *) NULL;
1308     char * prin = (char *) NULL;
1309     char * inst = (char *) NULL;
1310     char * realm = (char *) NULL;
1311
1312     if (principal != (char *)NULL && *principal)
1313     {
1314         char *cp;
1315         prin = prin_copy = xstrdup(principal);
1316         for (cp = prin_copy; *cp && *cp != '.'; ++cp)
1317             ;
1318         if (*cp)
1319         {
1320             *cp++ = '\0';
1321             inst = cp;
1322             while (*cp && *cp != '@')
1323                 ++cp;
1324             if (*cp)
1325             {
1326                 *cp++ = '\0';
1327                 realm = cp;
1328             }
1329         }
1330     }
1331   
1332     xalloca(ticket, KTEXT, sizeof (KTEXT_ST));
1333     rem = (krb_sendauth (0L, socket, ticket,
1334                          prin ? prin : "pop",
1335                          inst ? inst : canonical,
1336                          realm ? realm : ((char *) (krb_realmofhost (canonical))),
1337                          ((unsigned long) 0),
1338                          (&msg_data),
1339                          (&cred),
1340                          (schedule),
1341                          ((struct sockaddr_in *) 0),
1342                          ((struct sockaddr_in *) 0),
1343                          "KPOPV0.1"));
1344     if (prin_copy)
1345     {
1346         free(prin_copy);
1347     }
1348     if (rem != KSUCCESS)
1349     {
1350         report(stderr, _("kerberos error %s\n"), (krb_get_err_text (rem)));
1351         return (PS_AUTHFAIL);
1352     }
1353     return (0);
1354 }
1355 #endif /* KERBEROS_V4 */
1356
1357 #ifdef KERBEROS_V5
1358 static int kerberos5_auth(socket, canonical)
1359 /* authenticate to the server host using Kerberos V5 */
1360 int socket;             /* socket to server host */
1361 const char *canonical;  /* server name */
1362 {
1363     krb5_error_code retval;
1364     krb5_context context;
1365     krb5_ccache ccdef;
1366     krb5_principal client = NULL, server = NULL;
1367     krb5_error *err_ret = NULL;
1368
1369     krb5_auth_context auth_context = NULL;
1370
1371     krb5_init_context(&context);
1372     krb5_init_ets(context);
1373     krb5_auth_con_init(context, &auth_context);
1374
1375     if (retval = krb5_cc_default(context, &ccdef)) {
1376         report(stderr, "krb5_cc_default: %s\n", error_message(retval));
1377         return(PS_ERROR);
1378     }
1379
1380     if (retval = krb5_cc_get_principal(context, ccdef, &client)) {
1381         report(stderr, "krb5_cc_get_principal: %s\n", error_message(retval));
1382         return(PS_ERROR);
1383     }
1384
1385     if (retval = krb5_sname_to_principal(context, canonical, "pop",
1386            KRB5_NT_UNKNOWN,
1387            &server)) {
1388         report(stderr, "krb5_sname_to_principal: %s\n", error_message(retval));
1389         return(PS_ERROR);
1390     }
1391
1392     retval = krb5_sendauth(context, &auth_context, (krb5_pointer) &socket,
1393          "KPOPV1.0", client, server,
1394          AP_OPTS_MUTUAL_REQUIRED,
1395          NULL,  /* no data to checksum */
1396          0,   /* no creds, use ccache instead */
1397          ccdef,
1398          &err_ret, 0,
1399
1400          NULL); /* don't need reply */
1401
1402     krb5_free_principal(context, server);
1403     krb5_free_principal(context, client);
1404     krb5_auth_con_free(context, auth_context);
1405
1406     if (retval) {
1407 #ifdef HEIMDAL
1408       if (err_ret && err_ret->e_text) {
1409           report(stderr, _("krb5_sendauth: %s [server says '%*s'] \n"),
1410                  error_message(retval),
1411                  err_ret->e_text);
1412 #else
1413       if (err_ret && err_ret->text.length) {
1414           report(stderr, _("krb5_sendauth: %s [server says '%*s'] \n"),
1415                  error_message(retval),
1416                  err_ret->text.length,
1417                  err_ret->text.data);
1418 #endif
1419           krb5_free_error(context, err_ret);
1420       } else
1421           report(stderr, "krb5_sendauth: %s\n", error_message(retval));
1422       return(PS_ERROR);
1423     }
1424
1425     return 0;
1426 }
1427 #endif /* KERBEROS_V5 */
1428
1429 static void clean_skipped_list(struct idlist **skipped_list)
1430 /* struct "idlist" contains no "prev" ptr; we must remove unused items first */
1431 {
1432     struct idlist *current=NULL, *prev=NULL, *tmp=NULL, *head=NULL;
1433     prev = current = head = *skipped_list;
1434
1435     if (!head)
1436         return;
1437     do
1438     {
1439         /* if item has no reference, remove it */
1440         if (current && current->val.status.mark == 0)
1441         {
1442             if (current == head) /* remove first item (head) */
1443             {
1444                 head = current->next;
1445                 if (current->id) free(current->id);
1446                 free(current);
1447                 prev = current = head;
1448             }
1449             else /* remove middle/last item */
1450             {
1451                 tmp = current->next;
1452                 prev->next = tmp;
1453                 if (current->id) free(current->id);
1454                 free(current);
1455                 current = tmp;
1456             }
1457         }
1458         else /* skip this item */
1459         {
1460             prev = current;
1461             current = current->next;
1462         }
1463     } while(current);
1464
1465     *skipped_list = head;
1466 }
1467
1468 static void send_size_warnings(struct query *ctl)
1469 /* send warning mail with skipped msg; reset msg count when user notified */
1470 {
1471     int size, nbr;
1472     int msg_to_send = FALSE;
1473     struct idlist *head=NULL, *current=NULL;
1474     int max_warning_poll_count;
1475
1476     head = ctl->skipped;
1477     if (!head)
1478         return;
1479
1480     /* don't start a notification message unless we need to */
1481     for (current = head; current; current = current->next)
1482         if (current->val.status.num == 0 && current->val.status.mark)
1483             msg_to_send = TRUE;
1484     if (!msg_to_send)
1485         return;
1486
1487     /*
1488      * There's no good way to recover if we can't send notification mail, 
1489      * but it's not a disaster, either, since the skipped mail will not
1490      * be deleted.
1491      */
1492     if (open_warning_by_mail(ctl, (struct msgblk *)NULL))
1493         return;
1494     stuff_warning(ctl,
1495            _("Subject: Fetchmail oversized-messages warning.\r\n"
1496              "\r\n"
1497              "The following oversized messages remain on the mail server %s:"),
1498                   ctl->server.pollname);
1499  
1500     if (run.poll_interval == 0)
1501         max_warning_poll_count = 0;
1502     else
1503         max_warning_poll_count = ctl->warnings/run.poll_interval;
1504
1505     /* parse list of skipped msg, adding items to the mail */
1506     for (current = head; current; current = current->next)
1507     {
1508         if (current->val.status.num == 0 && current->val.status.mark)
1509         {
1510             nbr = current->val.status.mark;
1511             size = atoi(current->id);
1512             stuff_warning(ctl, 
1513                     _("\t%d msg %d octets long skipped by fetchmail.\r\n"),
1514                     nbr, size);
1515         }
1516         current->val.status.num++;
1517         current->val.status.mark = 0;
1518
1519         if (current->val.status.num >= max_warning_poll_count)
1520             current->val.status.num = 0;
1521     }
1522
1523     close_warning_by_mail(ctl, (struct msgblk *)NULL);
1524 }
1525
1526 static int do_session(ctl, proto, maxfetch)
1527 /* retrieve messages from server using given protocol method table */
1528 struct query *ctl;              /* parsed options with merged-in defaults */
1529 const struct method *proto;     /* protocol method table */
1530 const int maxfetch;             /* maximum number of messages to fetch */
1531 {
1532     int js;
1533 #ifdef HAVE_VOLATILE
1534     volatile int ok, mailserver_socket = -1;    /* pacifies -Wall */
1535 #else
1536     int ok, mailserver_socket = -1;
1537 #endif /* HAVE_VOLATILE */
1538     const char *msg;
1539     void (*pipesave)(int);
1540     void (*alrmsave)(int);
1541     struct idlist *current=NULL, *tmp=NULL;
1542
1543     protocol = proto;
1544     ctl->server.base_protocol = protocol;
1545
1546     pass = 0;
1547     tagnum = 0;
1548     tag[0] = '\0';      /* nuke any tag hanging out from previous query */
1549     ok = 0;
1550
1551     /* set up the server-nonresponse timeout */
1552     alrmsave = signal(SIGALRM, timeout_handler);
1553     mytimeout = ctl->server.timeout;
1554
1555     /* set up the broken-pipe timeout */
1556     pipesave = signal(SIGPIPE, sigpipe_handler);
1557
1558     if ((js = setjmp(restart)))
1559     {
1560 #ifdef HAVE_SIGPROCMASK
1561         /*
1562          * Don't rely on setjmp() to restore the blocked-signal mask.
1563          * It does this under BSD but is required not to under POSIX.
1564          *
1565          * If your Unix doesn't have sigprocmask, better hope it has
1566          * BSD-like behavior.  Otherwise you may see fetchmail get
1567          * permanently wedged after a second timeout on a bad read,
1568          * because alarm signals were blocked after the first.
1569          */
1570         sigset_t        allsigs;
1571
1572         sigfillset(&allsigs);
1573         sigprocmask(SIG_UNBLOCK, &allsigs, NULL);
1574 #endif /* HAVE_SIGPROCMASK */
1575
1576         if (js == THROW_SIGPIPE)
1577         {
1578             signal(SIGPIPE, SIG_IGN);
1579             report(stdout,
1580                    _("SIGPIPE thrown from an MDA or a stream socket error\n"));
1581             ok = PS_SOCKET;
1582             goto cleanUp;
1583         }
1584         else if (js == THROW_TIMEOUT)
1585         {
1586             if (phase == OPEN_WAIT)
1587                 report(stdout,
1588                        _("timeout after %d seconds waiting to connect to server %s.\n"),
1589                        ctl->server.timeout, ctl->server.pollname);
1590             else if (phase == SERVER_WAIT)
1591                 report(stdout,
1592                        _("timeout after %d seconds waiting for server %s.\n"),
1593                        ctl->server.timeout, ctl->server.pollname);
1594             else if (phase == FORWARDING_WAIT)
1595                 report(stdout,
1596                        _("timeout after %d seconds waiting for %s.\n"),
1597                        ctl->server.timeout,
1598                        ctl->mda ? "MDA" : "SMTP");
1599             else if (phase == LISTENER_WAIT)
1600                 report(stdout,
1601                        _("timeout after %d seconds waiting for listener to respond.\n"), ctl->server.timeout);
1602             else
1603                 report(stdout, 
1604                        _("timeout after %d seconds.\n"), ctl->server.timeout);
1605
1606             /*
1607              * If we've exceeded our threshold for consecutive timeouts, 
1608              * try to notify the user, then mark the connection wedged.
1609              * Don't do this if the connection can idle, though; idle
1610              * timeouts just mean the frequency of mail is low.
1611              */
1612             if (timeoutcount > MAX_TIMEOUTS 
1613                 && !open_warning_by_mail(ctl, (struct msgblk *)NULL))
1614             {
1615                 stuff_warning(ctl,
1616                               _("Subject: fetchmail sees repeated timeouts\r\n"));
1617                 stuff_warning(ctl,
1618                               _("Fetchmail saw more than %d timeouts while attempting to get mail from %s@%s.\r\n"), 
1619                               MAX_TIMEOUTS,
1620                               ctl->remotename,
1621                               ctl->server.truename);
1622                 stuff_warning(ctl, 
1623     _("This could mean that your mailserver is stuck, or that your SMTP\r\n" \
1624     "server is wedged, or that your mailbox file on the server has been\r\n" \
1625     "corrupted by a server error.  You can run `fetchmail -v -v' to\r\n" \
1626     "diagnose the problem.\r\n\r\n" \
1627     "Fetchmail won't poll this mailbox again until you restart it.\r\n"));
1628                 close_warning_by_mail(ctl, (struct msgblk *)NULL);
1629                 ctl->wedged = TRUE;
1630             }
1631
1632             ok = PS_ERROR;
1633         }
1634
1635         /* try to clean up all streams */
1636         release_sink(ctl);
1637         if (ctl->smtp_socket != -1)
1638             SockClose(ctl->smtp_socket);
1639         if (mailserver_socket != -1)
1640             SockClose(mailserver_socket);
1641     }
1642     else
1643     {
1644         char buf[MSGBUFSIZE+1], *realhost;
1645         int len, num, count, new, bytes, deletions = 0, *msgsizes = NULL;
1646 #if INET6_ENABLE
1647         int fetches, dispatches, oldphase;
1648 #else /* INET6_ENABLE */
1649         int port, fetches, dispatches, oldphase;
1650 #endif /* INET6_ENABLE */
1651         struct idlist *idp;
1652
1653         /* execute pre-initialization command, if any */
1654         if (ctl->preconnect && (ok = system(ctl->preconnect)))
1655         {
1656             report(stderr, 
1657                    _("pre-connection command failed with status %d\n"), ok);
1658             ok = PS_SYNTAX;
1659             goto closeUp;
1660         }
1661
1662         /* open a socket to the mail server */
1663         oldphase = phase;
1664         phase = OPEN_WAIT;
1665         set_timeout(mytimeout);
1666 #if !INET6_ENABLE
1667 #ifdef SSL_ENABLE
1668         port = ctl->server.port ? ctl->server.port : ( ctl->use_ssl ? protocol->sslport : protocol->port );
1669 #else
1670         port = ctl->server.port ? ctl->server.port : protocol->port;
1671 #endif
1672 #endif /* !INET6_ENABLE */
1673         realhost = ctl->server.via ? ctl->server.via : ctl->server.pollname;
1674
1675         /* allow time for the port to be set up if we have a plugin */
1676         if (ctl->server.plugin)
1677             (void)sleep(1);
1678 #if INET6_ENABLE
1679         if ((mailserver_socket = SockOpen(realhost, 
1680                              ctl->server.service ? ctl->server.service : ( ctl->use_ssl ? protocol->sslservice : protocol->service ),
1681                              ctl->server.netsec, ctl->server.plugin)) == -1)
1682 #else /* INET6_ENABLE */
1683         if ((mailserver_socket = SockOpen(realhost, port, NULL, ctl->server.plugin)) == -1)
1684 #endif /* INET6_ENABLE */
1685         {
1686             char        errbuf[BUFSIZ];
1687 #if !INET6_ENABLE
1688             int err_no = errno;
1689 #ifdef HAVE_RES_SEARCH
1690             if (err_no != 0 && h_errno != 0)
1691                 report(stderr, _("fetchmail: internal inconsistency\n"));
1692 #endif
1693             /*
1694              * Avoid generating a bogus error every poll cycle when we're
1695              * in daemon mode but the connection to the outside world
1696              * is down.
1697              */
1698             if (!((err_no == EHOSTUNREACH || err_no == ENETUNREACH) 
1699                   && run.poll_interval))
1700             {
1701                 report_build(stderr, _("fetchmail: %s connection to %s failed"), 
1702                              protocol->name, ctl->server.pollname);
1703 #ifdef HAVE_RES_SEARCH
1704                 if (h_errno != 0)
1705                 {
1706                     if (h_errno == HOST_NOT_FOUND)
1707                         strcpy(errbuf, _("host is unknown."));
1708 #ifndef __BEOS__
1709                     else if (h_errno == NO_ADDRESS)
1710                         strcpy(errbuf, _("name is valid but has no IP address."));
1711 #endif
1712                     else if (h_errno == NO_RECOVERY)
1713                         strcpy(errbuf, _("unrecoverable name server error."));
1714                     else if (h_errno == TRY_AGAIN)
1715                         strcpy(errbuf, _("temporary name server error."));
1716                     else
1717                         sprintf(errbuf, _("unknown DNS error %d."), h_errno);
1718                 }
1719                 else
1720 #endif /* HAVE_RES_SEARCH */
1721                     strcpy(errbuf, strerror(err_no));
1722                 report_complete(stderr, ": %s\n", errbuf);
1723
1724 #ifdef __UNUSED
1725                 /* 
1726                  * Don't use this.  It was an attempt to address Debian bug
1727                  * #47143 (Notify user by mail when pop server nonexistent).
1728                  * Trouble is, that doesn't work; you trip over the case 
1729                  * where your SLIP or PPP link is down...
1730                  */
1731                 /* warn the system administrator */
1732                 if (open_warning_by_mail(ctl, (struct msgblk *)NULL) == 0)
1733                 {
1734                     stuff_warning(ctl,
1735                          _("Subject: Fetchmail unreachable-server warning.\r\n"
1736                            "\r\n"
1737                            "Fetchmail could not reach the mail server %s:")
1738                                   ctl->server.pollname);
1739                     stuff_warning(ctl, errbuf, ctl->server.pollname);
1740                     close_warning_by_mail(ctl, (struct msgblk *)NULL);
1741                 }
1742 #endif
1743             }
1744 #endif /* INET6_ENABLE */
1745             ok = PS_SOCKET;
1746             set_timeout(0);
1747             phase = oldphase;
1748             goto closeUp;
1749         }
1750         set_timeout(0);
1751         phase = oldphase;
1752
1753 #ifdef SSL_ENABLE
1754         /* perform initial SSL handshake on open connection */
1755         /* Note:  We pass the realhost name over for certificate
1756                 verification.  We may want to make this configurable */
1757         if (ctl->use_ssl && SSLOpen(mailserver_socket,ctl->sslkey,ctl->sslcert,realhost) == -1) 
1758         {
1759             report(stderr, _("SSL connection failed.\n"));
1760             goto closeUp;
1761         }
1762 #endif
1763
1764 #ifdef KERBEROS_V4
1765         if (ctl->server.preauthenticate == A_KERBEROS_V4)
1766         {
1767             set_timeout(mytimeout);
1768             ok = kerberos_auth(mailserver_socket, ctl->server.truename,
1769                                ctl->server.principal);
1770             set_timeout(0);
1771             if (ok != 0)
1772                 goto cleanUp;
1773         }
1774 #endif /* KERBEROS_V4 */
1775
1776 #ifdef KERBEROS_V5
1777         if (ctl->server.preauthenticate == A_KERBEROS_V5)
1778         {
1779             set_timeout(mytimeout);
1780             ok = kerberos5_auth(mailserver_socket, ctl->server.truename);
1781             set_timeout(0);
1782             if (ok != 0)
1783                 goto cleanUp;
1784         }
1785 #endif /* KERBEROS_V5 */
1786
1787         /* accept greeting message from mail server */
1788         ok = (protocol->parse_response)(mailserver_socket, buf);
1789         if (ok != 0)
1790             goto cleanUp;
1791
1792         /* try to get authorized to fetch mail */
1793         stage = STAGE_GETAUTH;
1794         if (protocol->getauth)
1795         {
1796             if (protocol->password_canonify)
1797                 (protocol->password_canonify)(shroud, ctl->password, PASSWORDLEN);
1798             else
1799                 strcpy(shroud, ctl->password);
1800
1801             ok = (protocol->getauth)(mailserver_socket, ctl, buf);
1802             if (ok != 0)
1803             {
1804                 if (ok == PS_LOCKBUSY)
1805                     report(stderr, _("Lock-busy error on %s@%s\n"),
1806                           ctl->remotename,
1807                           ctl->server.truename);
1808                 else if (ok == PS_AUTHFAIL)
1809                 {
1810                     report(stderr, _("Authorization failure on %s@%s\n"), 
1811                           ctl->remotename,
1812                           ctl->server.truename);
1813
1814                     /*
1815                      * If we're running in background, try to mail the
1816                      * calling user a heads-up about the authentication 
1817                      * failure once it looks like this isn't a fluke 
1818                      * due to the server being temporarily inaccessible.
1819                      */
1820                     if (run.poll_interval
1821                         && ctl->authfailcount++ > MAX_AUTHFAILS 
1822                         && !open_warning_by_mail(ctl, (struct msgblk *)NULL))
1823                     {
1824                         stuff_warning(ctl,
1825                             _("Subject: fetchmail authentication failed\r\n"));
1826                         stuff_warning(ctl,
1827                             _("Fetchmail could not get mail from %s@%s.\r\n"), 
1828                             ctl->remotename,
1829                             ctl->server.truename);
1830                         stuff_warning(ctl, 
1831     _("The attempt to get authorization failed.\r\n" \
1832     "This probably means your password is invalid, but POP3 servers have\r\n" \
1833     "other failure modes that fetchmail cannot distinguish from this\r\n" \
1834     "because they don't send useful error messages on login failure.\r\n"));
1835                         close_warning_by_mail(ctl, (struct msgblk *)NULL);
1836                         ctl->wedged = TRUE;
1837                     }
1838                 }
1839                 else
1840                     report(stderr, _("Unknown login or authentication error on %s@%s\n"),
1841                           ctl->remotename,
1842                           ctl->server.truename);
1843                     
1844                 goto cleanUp;
1845             }
1846         }
1847
1848         ctl->errcount = fetches = 0;
1849
1850         /* now iterate over each folder selected */
1851         for (idp = ctl->mailboxes; idp; idp = idp->next)
1852         {
1853             pass = 0;
1854             do {
1855                 dispatches = 0;
1856                 ++pass;
1857
1858                 /* reset timeout, in case we did an IDLE */
1859                 mytimeout = ctl->server.timeout;
1860
1861                 if (outlevel >= O_DEBUG)
1862                 {
1863                     if (idp->id)
1864                         report(stdout, _("selecting or re-polling folder %s\n"), idp->id);
1865                     else
1866                         report(stdout, _("selecting or re-polling default folder\n"));
1867                 }
1868
1869                 /* compute # of messages and number of new messages waiting */
1870                 stage = STAGE_GETRANGE;
1871                 ok = (protocol->getrange)(mailserver_socket, ctl, idp->id, &count, &new, &bytes);
1872                 if (ok != 0)
1873                     goto cleanUp;
1874
1875                 /* show user how many messages we downloaded */
1876                 if (idp->id)
1877                     (void) sprintf(buf, _("%s at %s (folder %s)"),
1878                                    ctl->remotename, ctl->server.truename, idp->id);
1879                 else
1880                     (void) sprintf(buf, _("%s at %s"),
1881                                    ctl->remotename, ctl->server.truename);
1882                 if (outlevel > O_SILENT)
1883                 {
1884                     if (count == -1)            /* only used for ETRN */
1885                         report(stdout, _("Polling %s\n"), ctl->server.truename);
1886                     else if (count != 0)
1887                     {
1888                         if (new != -1 && (count - new) > 0)
1889                             report_build(stdout, _("%d %s (%d seen) for %s"),
1890                                   count, count > 1 ? _("messages") :
1891                                                      _("message"),
1892                                   count-new, buf);
1893                         else
1894                             report_build(stdout, _("%d %s for %s"), 
1895                                   count, count > 1 ? _("messages") :
1896                                                      _("message"), buf);
1897                         if (bytes == -1)
1898                             report_complete(stdout, ".\n");
1899                         else
1900                             report_complete(stdout, _(" (%d octets).\n"), bytes);
1901                     }
1902                     else
1903                     {
1904                         /* these are pointless in normal daemon mode */
1905                         if (pass == 1 && (run.poll_interval == 0 || outlevel >= O_VERBOSE))
1906                             report(stdout, _("No mail for %s\n"), buf); 
1907                     }
1908                 }
1909
1910                 /* very important, this is where we leave the do loop */ 
1911                 if (count == 0)
1912                     break;
1913
1914                 if (check_only)
1915                 {
1916                     if (new == -1 || ctl->fetchall)
1917                         new = count;
1918                     fetches = new;      /* set error status ccorrectly */
1919                     /*
1920                      * There used to be a `got noerror' here, but this
1921                      * prevneted checking of multiple folders.  This
1922                      * comment is a reminder in case I introduced some
1923                      * subtle bug by removing it...
1924                      */
1925                 }
1926                 else if (count > 0)
1927                 {    
1928                     flag        force_retrieval;
1929
1930                     /*
1931                      * What forces this code is that in POP2 and
1932                      * IMAP2bis you can't fetch a message without
1933                      * having it marked `seen'.  In POP3 and IMAP4, on the
1934                      * other hand, you can (peek_capable is set by 
1935                      * each driver module to convey this; it's not a
1936                      * method constant because of the difference between
1937                      * IMAP2bis and IMAP4, and because POP3 doesn't  peek
1938                      * if fetchall is on).
1939                      *
1940                      * The result of being unable to peek is that if there's
1941                      * any kind of transient error (DNS lookup failure, or
1942                      * sendmail refusing delivery due to process-table limits)
1943                      * the message will be marked "seen" on the server without
1944                      * having been delivered.  This is not a big problem if
1945                      * fetchmail is running in foreground, because the user
1946                      * will see a "skipped" message when it next runs and get
1947                      * clued in.
1948                      *
1949                      * But in daemon mode this leads to the message
1950                      * being silently ignored forever.  This is not
1951                      * acceptable.
1952                      *
1953                      * We compensate for this by checking the error
1954                      * count from the previous pass and forcing all
1955                      * messages to be considered new if it's nonzero.
1956                      */
1957                     force_retrieval = !peek_capable && (ctl->errcount > 0);
1958
1959                     /* 
1960                      * We need the size of each message before it's
1961                      * loaded in order to pass it to the ESMTP SIZE
1962                      * option.  If the protocol has a getsizes method,
1963                      * we presume this means it doesn't get reliable
1964                      * sizes from message fetch responses.
1965                      */
1966                     if (proto->getsizes)
1967                     {
1968                         int     i;
1969
1970                         xalloca(msgsizes, int *, sizeof(int) * count);
1971                         for (i = 0; i < count; i++)
1972                             msgsizes[i] = -1;
1973
1974                         stage = STAGE_GETSIZES;
1975                         ok = (proto->getsizes)(mailserver_socket, count, msgsizes);
1976                         if (ok != 0)
1977                             goto cleanUp;
1978
1979                         if (bytes == -1)
1980                         {
1981                             bytes = 0;
1982                             for (i = 0; i < count; i++)
1983                                 bytes += msgsizes[i];
1984                         }
1985                     }
1986
1987                     /* read, forward, and delete messages */
1988                     stage = STAGE_FETCH;
1989                     for (num = 1; num <= count; num++)
1990                     {
1991                         flag toolarge = NUM_NONZERO(ctl->limit)
1992                             && msgsizes && (msgsizes[num-1] > ctl->limit);
1993                         flag oldmsg = (!new) || (protocol->is_old && (protocol->is_old)(mailserver_socket,ctl,num));
1994                         flag fetch_it = !toolarge 
1995                             && (ctl->fetchall || force_retrieval || !oldmsg);
1996                         flag suppress_delete = FALSE;
1997                         flag suppress_forward = FALSE;
1998                         flag suppress_readbody = FALSE;
1999                         flag retained = FALSE;
2000
2001                         /*
2002                          * This check copes with Post Office/NT's
2003                          * annoying habit of randomly prepending bogus
2004                          * LIST items of length -1.  Patrick Audley
2005                          * <paudley@pobox.com> tells us: LIST shows a
2006                          * size of -1, RETR and TOP return "-ERR
2007                          * System error - couldn't open message", and
2008                          * DELE succeeds but doesn't actually delete
2009                          * the message.
2010                          */
2011                         if (msgsizes && msgsizes[num-1] == -1)
2012                         {
2013                             if (outlevel >= O_VERBOSE)
2014                                 report(stdout, 
2015                                       _("Skipping message %d, length -1\n"),
2016                                       num);
2017                             continue;
2018                         }
2019
2020                         /*
2021                          * We may want to reject this message if it's old
2022                          * or oversized, and we're not forcing retrieval.
2023                          */
2024                         if (!fetch_it)
2025                         {
2026                             if (outlevel > O_SILENT)
2027                             {
2028                                 report_build(stdout, 
2029                                      _("skipping message %d (%d octets)"),
2030                                      num, msgsizes[num-1]);
2031                                 if (toolarge && !check_only) 
2032                                 {
2033                                     char size[32];
2034                                     int cnt;
2035
2036                                     /* convert sz to string */
2037                                     sprintf(size, "%d", msgsizes[num-1]);
2038
2039                                     /* build a list of skipped messages
2040                                      * val.id = size of msg (string cnvt)
2041                                      * val.status.num = warning_poll_count
2042                                      * val.status.mask = nbr of msg this size
2043                                      */
2044
2045                                     current = ctl->skipped;
2046
2047                                     /* initialise warning_poll_count to the
2048                                      * current value so that all new msg will
2049                                      * be included in the next mail
2050                                      */
2051                                     cnt = current? current->val.status.num : 0;
2052
2053                                     /* if entry exists, increment the count */
2054                                     if (current && 
2055                                         str_in_list(&current, size, FALSE))
2056                                     {
2057                                         for ( ; current; 
2058                                                 current = current->next)
2059                                         {
2060                                             if (strcmp(current->id, size) == 0)
2061                                             {
2062                                                 current->val.status.mark++;
2063                                                 break;
2064                                             }
2065                                         }
2066                                     }
2067                                     /* otherwise, create a new entry */
2068                                     /* initialise with current poll count */
2069                                     else
2070                                     {
2071                                         tmp = save_str(&ctl->skipped, size, 1);
2072                                         tmp->val.status.num = cnt;
2073                                     }
2074
2075                                     report_build(stdout, _(" (oversized, %d octets)"),
2076                                                 msgsizes[num-1]);
2077                                 }
2078                             }
2079                         }
2080                         else
2081                         {
2082                             flag wholesize = !protocol->fetch_body;
2083
2084                             /* request a message */
2085                             ok = (protocol->fetch_headers)(mailserver_socket,ctl,num, &len);
2086                             if (ok != 0)
2087                                 goto cleanUp;
2088
2089                             /* -1 means we didn't see a size in the response */
2090                             if (len == -1 && msgsizes)
2091                             {
2092                                 len = msgsizes[num - 1];
2093                                 wholesize = TRUE;
2094                             }
2095
2096                             if (outlevel > O_SILENT)
2097                             {
2098                                 report_build(stdout, _("reading message %d of %d"),
2099                                             num,count);
2100
2101                                 if (len > 0)
2102                                     report_build(stdout, _(" (%d %soctets)"),
2103                                         len, wholesize ? "" : _("header "));
2104                                 if (outlevel >= O_VERBOSE)
2105                                     report_complete(stdout, "\n");
2106                                 else
2107                                     report_complete(stdout, " ");
2108                             }
2109
2110                             /* 
2111                              * Read the message headers and ship them to the
2112                              * output sink.  
2113                              */
2114                             ok = readheaders(mailserver_socket, len, msgsizes[num-1],
2115                                              ctl, num);
2116                             if (ok == PS_RETAINED)
2117                                 suppress_forward = retained = TRUE;
2118                             else if (ok == PS_TRANSIENT)
2119                                 suppress_delete = suppress_forward = TRUE;
2120                             else if (ok == PS_REFUSED)
2121                                 suppress_forward = TRUE;
2122                             else if (ok == PS_TRUNCATED)
2123                                 suppress_readbody = TRUE;
2124                             else if (ok)
2125                                 goto cleanUp;
2126
2127                             /* 
2128                              * If we're using IMAP4 or something else that
2129                              * can fetch headers separately from bodies,
2130                              * it's time to request the body now.  This
2131                              * fetch may be skipped if we got an anti-spam
2132                              * or other PS_REFUSED error response during
2133                              * readheaders.
2134                              */
2135                             if (protocol->fetch_body && !suppress_readbody) 
2136                             {
2137                                 if (outlevel >= O_VERBOSE && !isafile(1))
2138                                 {
2139                                     fputc('\n', stdout);
2140                                     fflush(stdout);
2141                                 }
2142
2143                                 if ((ok = (protocol->trail)(mailserver_socket, ctl, num)))
2144                                     goto cleanUp;
2145                                 len = 0;
2146                                 if (!suppress_forward)
2147                                 {
2148                                     if ((ok=(protocol->fetch_body)(mailserver_socket,ctl,num,&len)))
2149                                         goto cleanUp;
2150                                     /*
2151                                      * Work around a bug in Novell's
2152                                      * broken GroupWise IMAP server;
2153                                      * its body FETCH response is missing
2154                                      * the required length for the data
2155                                      * string.  This violates RFC2060.
2156                                      */
2157                                     if (len == -1)
2158                                        len = msgsizes[num-1] - msglen;
2159                                     if (outlevel > O_SILENT && !wholesize)
2160                                         report_complete(stdout,
2161                                                _(" (%d body octets) "), len);
2162                                 }
2163                             }
2164
2165                             /* process the body now */
2166                             if (len > 0)
2167                             {
2168                                 if (suppress_readbody)
2169                                 {
2170                                   /* When readheaders returns PS_TRUNCATED,
2171                                      the body (which has no content
2172                                      has already been read by readheaders,
2173                                      so we say readbody returned PS_SUCCESS */
2174                                   ok = PS_SUCCESS;
2175                                 }
2176                                 else
2177                                 {
2178                                   ok = readbody(mailserver_socket,
2179                                                 ctl,
2180                                                 !suppress_forward,
2181                                                 len);
2182                                 }
2183                                 if (ok == PS_TRANSIENT)
2184                                     suppress_delete = suppress_forward = TRUE;
2185                                 else if (ok)
2186                                     goto cleanUp;
2187
2188                                 /* tell server we got it OK and resynchronize */
2189                                 if (protocol->trail)
2190                                 {
2191                                     if (outlevel >= O_VERBOSE && !isafile(1))
2192                                     {
2193                                         fputc('\n', stdout);
2194                                         fflush(stdout);
2195                                     }
2196
2197                                     ok = (protocol->trail)(mailserver_socket, ctl, num);
2198                                     if (ok != 0)
2199                                         goto cleanUp;
2200                                 }
2201                             }
2202
2203                             /* count # messages forwarded on this pass */
2204                             if (!suppress_forward)
2205                                 dispatches++;
2206
2207                             /*
2208                              * Check to see if the numbers matched?
2209                              *
2210                              * Yes, some servers foo this up horribly.
2211                              * All IMAP servers seem to get it right, and
2212                              * so does Eudora QPOP at least in 2.xx
2213                              * versions.
2214                              *
2215                              * Microsoft Exchange gets it completely
2216                              * wrong, reporting compressed rather than
2217                              * actual sizes (so the actual length of
2218                              * message is longer than the reported size).
2219                              * Another fine example of Microsoft brain death!
2220                              *
2221                              * Some older POP servers, like the old UCB
2222                              * POP server and the pre-QPOP QUALCOMM
2223                              * versions, report a longer size in the LIST
2224                              * response than actually gets shipped up.
2225                              * It's unclear what is going on here, as the
2226                              * QUALCOMM server (at least) seems to be
2227                              * reporting the on-disk size correctly.
2228                              */
2229                             if (msgsizes && msglen != msgsizes[num-1])
2230                             {
2231                                 if (outlevel >= O_DEBUG)
2232                                     report(stdout,
2233                                           _("message %d was not the expected length (%d actual != %d expected)\n"),
2234                                           num, msglen, msgsizes[num-1]);
2235                             }
2236
2237                             /* end-of-message processing starts here */
2238                             if (!close_sink(ctl, &msgblk, !suppress_forward))
2239                             {
2240                                 ctl->errcount++;
2241                                 suppress_delete = TRUE;
2242                             }
2243                             fetches++;
2244                         }
2245
2246                         /*
2247                          * At this point in flow of control, either
2248                          * we've bombed on a protocol error or had
2249                          * delivery refused by the SMTP server
2250                          * (unlikely -- I've never seen it) or we've
2251                          * seen `accepted for delivery' and the
2252                          * message is shipped.  It's safe to mark the
2253                          * message seen and delete it on the server
2254                          * now.
2255                          */
2256
2257                         /* tell the UID code we've seen this */
2258                         if (ctl->newsaved)
2259                         {
2260                             struct idlist       *sdp;
2261
2262                             for (sdp = ctl->newsaved; sdp; sdp = sdp->next)
2263                                 if ((sdp->val.status.num == num)
2264                                                 && (!toolarge || oldmsg))
2265                                     sdp->val.status.mark = UID_SEEN;
2266                         }
2267
2268                         /* maybe we delete this message now? */
2269                         if (retained)
2270                         {
2271                             if (outlevel > O_SILENT) 
2272                                 report(stdout, _(" retained\n"));
2273                         }
2274                         else if (protocol->delete
2275                                  && !suppress_delete
2276                                  && (fetch_it ? !ctl->keep : ctl->flush))
2277                         {
2278                             deletions++;
2279                             if (outlevel > O_SILENT) 
2280                                 report_complete(stdout, _(" flushed\n"));
2281                             ok = (protocol->delete)(mailserver_socket, ctl, num);
2282                             if (ok != 0)
2283                                 goto cleanUp;
2284 #ifdef POP3_ENABLE
2285                             delete_str(&ctl->newsaved, num);
2286 #endif /* POP3_ENABLE */
2287                         }
2288                         else if (outlevel > O_SILENT) 
2289                             report_complete(stdout, _(" not flushed\n"));
2290
2291                         /* perhaps this as many as we're ready to handle */
2292                         if (maxfetch && maxfetch <= fetches && fetches < count)
2293                         {
2294                             report(stdout, _("fetchlimit %d reached; %d messages left on server\n"),
2295                                   maxfetch, count - fetches);
2296                             ok = PS_MAXFETCH;
2297                             goto cleanUp;
2298                         }
2299                     }
2300
2301                     if (!check_only && ctl->skipped
2302                         && run.poll_interval > 0 && !nodetach)
2303                     {
2304                         clean_skipped_list(&ctl->skipped);
2305                         send_size_warnings(ctl);
2306                     }
2307                 }
2308             } while
2309                   /*
2310                    * Only re-poll if we either had some actual forwards and 
2311                    * either allowed deletions and had no errors.
2312                    * Otherwise it is far too easy to get into infinite loops.
2313                    */
2314                   (dispatches && protocol->retry && !ctl->keep && !ctl->errcount);
2315         }
2316
2317     /* no_error: */
2318         /* ordinary termination with no errors -- officially log out */
2319         ok = (protocol->logout_cmd)(mailserver_socket, ctl);
2320         /*
2321          * Hmmmm...arguably this would be incorrect if we had fetches but
2322          * no dispatches (due to oversized messages, etc.)
2323          */
2324         if (ok == 0)
2325             ok = (fetches > 0) ? PS_SUCCESS : PS_NOMAIL;
2326         SockClose(mailserver_socket);
2327         goto closeUp;
2328
2329     cleanUp:
2330         /* we only get here on error */
2331         if (ok != 0 && ok != PS_SOCKET)
2332         {
2333             stage = STAGE_LOGOUT;
2334             (protocol->logout_cmd)(mailserver_socket, ctl);
2335         }
2336         SockClose(mailserver_socket);
2337     }
2338
2339     msg = (const char *)NULL;   /* sacrifice to -Wall */
2340     switch (ok)
2341     {
2342     case PS_SOCKET:
2343         msg = _("socket");
2344         break;
2345     case PS_AUTHFAIL:
2346         msg = _("authorization");
2347         break;
2348     case PS_SYNTAX:
2349         msg = _("missing or bad RFC822 header");
2350         break;
2351     case PS_IOERR:
2352         msg = _("MDA");
2353         break;
2354     case PS_ERROR:
2355         msg = _("client/server synchronization");
2356         break;
2357     case PS_PROTOCOL:
2358         msg = _("client/server protocol");
2359         break;
2360     case PS_LOCKBUSY:
2361         msg = _("lock busy on server");
2362         break;
2363     case PS_SMTP:
2364         msg = _("SMTP transaction");
2365         break;
2366     case PS_DNS:
2367         msg = _("DNS lookup");
2368         break;
2369     case PS_UNDEFINED:
2370         report(stderr, _("undefined error\n"));
2371         break;
2372     }
2373     /* no report on PS_MAXFETCH or PS_UNDEFINED */
2374     if (ok==PS_SOCKET || ok==PS_AUTHFAIL || ok==PS_SYNTAX 
2375                 || ok==PS_IOERR || ok==PS_ERROR || ok==PS_PROTOCOL 
2376                 || ok==PS_LOCKBUSY || ok==PS_SMTP || ok==PS_DNS)
2377         report(stderr, _("%s error while fetching from %s\n"), msg, ctl->server.pollname);
2378
2379 closeUp:
2380     /* execute post-initialization command, if any */
2381     if (ctl->postconnect && (ok = system(ctl->postconnect)))
2382     {
2383         report(stderr, _("post-connection command failed with status %d\n"), ok);
2384         if (ok == PS_SUCCESS)
2385             ok = PS_SYNTAX;
2386     }
2387
2388     signal(SIGALRM, alrmsave);
2389     signal(SIGPIPE, pipesave);
2390     return(ok);
2391 }
2392
2393 int do_protocol(ctl, proto)
2394 /* retrieve messages from server using given protocol method table */
2395 struct query *ctl;              /* parsed options with merged-in defaults */
2396 const struct method *proto;     /* protocol method table */
2397 {
2398     int ok;
2399
2400 #ifndef KERBEROS_V4
2401     if (ctl->server.preauthenticate == A_KERBEROS_V4)
2402     {
2403         report(stderr, _("Kerberos V4 support not linked.\n"));
2404         return(PS_ERROR);
2405     }
2406 #endif /* KERBEROS_V4 */
2407
2408 #ifndef KERBEROS_V5
2409     if (ctl->server.preauthenticate == A_KERBEROS_V5)
2410     {
2411         report(stderr, _("Kerberos V5 support not linked.\n"));
2412         return(PS_ERROR);
2413     }
2414 #endif /* KERBEROS_V5 */
2415
2416     /* lacking methods, there are some options that may fail */
2417     if (!proto->is_old)
2418     {
2419         /* check for unsupported options */
2420         if (ctl->flush) {
2421             report(stderr,
2422                     _("Option --flush is not supported with %s\n"),
2423                     proto->name);
2424             return(PS_SYNTAX);
2425         }
2426         else if (ctl->fetchall) {
2427             report(stderr,
2428                     _("Option --all is not supported with %s\n"),
2429                     proto->name);
2430             return(PS_SYNTAX);
2431         }
2432     }
2433     if (!proto->getsizes && NUM_SPECIFIED(ctl->limit))
2434     {
2435         report(stderr,
2436                 _("Option --limit is not supported with %s\n"),
2437                 proto->name);
2438         return(PS_SYNTAX);
2439     }
2440
2441     /*
2442      * If no expunge limit or we do expunges within the driver,
2443      * then just do one session, passing in any fetchlimit.
2444      */
2445     if (proto->retry || !NUM_SPECIFIED(ctl->expunge))
2446         return(do_session(ctl, proto, NUM_VALUE_OUT(ctl->fetchlimit)));
2447     /*
2448      * There's an expunge limit, and it isn't handled in the driver itself.
2449      * OK; do multiple sessions, each fetching a limited # of messages.
2450      * Stop if the total count of retrieved messages exceeds ctl->fetchlimit
2451      * (if it was nonzero).
2452      */
2453     else
2454     {
2455         int totalcount = 0; 
2456         int lockouts   = 0;
2457         int expunge    = NUM_VALUE_OUT(ctl->expunge);
2458         int fetchlimit = NUM_VALUE_OUT(ctl->fetchlimit);
2459
2460         do {
2461             ok = do_session(ctl, proto, expunge);
2462             totalcount += expunge;
2463             if (NUM_SPECIFIED(ctl->fetchlimit) && totalcount >= fetchlimit)
2464                 break;
2465             if (ok != PS_LOCKBUSY)
2466                 lockouts = 0;
2467             else if (lockouts >= MAX_LOCKOUTS)
2468                 break;
2469             else /* ok == PS_LOCKBUSY */
2470             {
2471                 /*
2472                  * Allow time for the server lock to release.  if we
2473                  * don't do this, we'll often hit a locked-mailbox
2474                  * condition and fail.
2475                  */
2476                 lockouts++;
2477                 sleep(3);
2478             }
2479         } while
2480             (ok == PS_MAXFETCH || ok == PS_LOCKBUSY);
2481
2482         return(ok);
2483     }
2484 }
2485
2486 #if defined(HAVE_STDARG_H)
2487 void gen_send(int sock, const char *fmt, ... )
2488 #else
2489 void gen_send(sock, fmt, va_alist)
2490 int sock;               /* socket to which server is connected */
2491 const char *fmt;        /* printf-style format */
2492 va_dcl
2493 #endif
2494 /* assemble command in printf(3) style and send to the server */
2495 {
2496     char buf [MSGBUFSIZE+1];
2497     va_list ap;
2498
2499     if (protocol->tagged)
2500         (void) sprintf(buf, "%s ", GENSYM);
2501     else
2502         buf[0] = '\0';
2503
2504 #if defined(HAVE_STDARG_H)
2505     va_start(ap, fmt) ;
2506 #else
2507     va_start(ap);
2508 #endif
2509 #ifdef HAVE_VSNPRINTF
2510     vsnprintf(buf + strlen(buf), sizeof(buf), fmt, ap);
2511 #else
2512     vsprintf(buf + strlen(buf), fmt, ap);
2513 #endif
2514     va_end(ap);
2515
2516     strcat(buf, "\r\n");
2517     SockWrite(sock, buf, strlen(buf));
2518
2519     if (outlevel >= O_MONITOR)
2520     {
2521         char *cp;
2522
2523         if (shroud && shroud[0] && (cp = strstr(buf, shroud)))
2524         {
2525             char        *sp;
2526
2527             sp = cp + strlen(shroud);
2528             *cp++ = '*';
2529             while (*sp)
2530                 *cp++ = *sp++;
2531             *cp = '\0';
2532         }
2533         buf[strlen(buf)-2] = '\0';
2534         report(stdout, "%s> %s\n", protocol->name, buf);
2535     }
2536 }
2537
2538 int gen_recv(sock, buf, size)
2539 /* get one line of input from the server */
2540 int sock;       /* socket to which server is connected */
2541 char *buf;      /* buffer to receive input */
2542 int size;       /* length of buffer */
2543 {
2544     int oldphase = phase;       /* we don't have to be re-entrant */
2545
2546     phase = SERVER_WAIT;
2547     set_timeout(mytimeout);
2548     if (SockRead(sock, buf, size) == -1)
2549     {
2550         set_timeout(0);
2551         phase = oldphase;
2552         return(PS_SOCKET);
2553     }
2554     else
2555     {
2556         set_timeout(0);
2557         if (buf[strlen(buf)-1] == '\n')
2558             buf[strlen(buf)-1] = '\0';
2559         if (buf[strlen(buf)-1] == '\r')
2560             buf[strlen(buf)-1] = '\0';
2561         if (outlevel >= O_MONITOR)
2562             report(stdout, "%s< %s\n", protocol->name, buf);
2563         phase = oldphase;
2564         return(PS_SUCCESS);
2565     }
2566 }
2567
2568 #if defined(HAVE_STDARG_H)
2569 int gen_transact(int sock, const char *fmt, ... )
2570 #else
2571 int gen_transact(int sock, fmt, va_alist)
2572 int sock;               /* socket to which server is connected */
2573 const char *fmt;        /* printf-style format */
2574 va_dcl
2575 #endif
2576 /* assemble command in printf(3) style, send to server, accept a response */
2577 {
2578     int ok;
2579     char buf [MSGBUFSIZE+1];
2580     va_list ap;
2581     int oldphase = phase;       /* we don't have to be re-entrant */
2582
2583     phase = SERVER_WAIT;
2584
2585     if (protocol->tagged)
2586         (void) sprintf(buf, "%s ", GENSYM);
2587     else
2588         buf[0] = '\0';
2589
2590 #if defined(HAVE_STDARG_H)
2591     va_start(ap, fmt) ;
2592 #else
2593     va_start(ap);
2594 #endif
2595 #ifdef HAVE_VSNPRINTF
2596     vsnprintf(buf + strlen(buf), sizeof(buf), fmt, ap);
2597 #else
2598     vsprintf(buf + strlen(buf), fmt, ap);
2599 #endif
2600     va_end(ap);
2601
2602     strcat(buf, "\r\n");
2603     SockWrite(sock, buf, strlen(buf));
2604
2605     if (outlevel >= O_MONITOR)
2606     {
2607         char *cp;
2608
2609         if (shroud && shroud[0] && (cp = strstr(buf, shroud)))
2610         {
2611             char        *sp;
2612
2613             sp = cp + strlen(shroud);
2614             *cp++ = '*';
2615             while (*sp)
2616                 *cp++ = *sp++;
2617             *cp = '\0';
2618         }
2619         buf[strlen(buf)-1] = '\0';
2620         report(stdout, "%s> %s\n", protocol->name, buf);
2621     }
2622
2623     /* we presume this does its own response echoing */
2624     ok = (protocol->parse_response)(sock, buf);
2625
2626     phase = oldphase;
2627     return(ok);
2628 }
2629
2630 /* driver.c ends here */