]> Pileus Git - ~andy/fetchmail/blob - imap.c
6967524fdaed5e45a18c3c5896db6a038ff18853
[~andy/fetchmail] / imap.c
1 /*
2  * imap.c -- IMAP2bis/IMAP4 protocol methods
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  <string.h>
11 #include  <ctype.h>
12 #if defined(STDC_HEADERS)
13 #include  <stdlib.h>
14 #include  <limits.h>
15 #include  <errno.h>
16 #endif
17 #include  "fetchmail.h"
18 #include  "socket.h"
19
20 #include  "i18n.h"
21
22 /* imap_version values */
23 #define IMAP2           -1      /* IMAP2 or IMAP2BIS, RFC1176 */
24 #define IMAP4           0       /* IMAP4 rev 0, RFC1730 */
25 #define IMAP4rev1       1       /* IMAP4 rev 1, RFC2060 */
26
27 static int count = 0, recentcount = 0, unseen = 0, deletions = 0;
28 static int recentcount_ok = 0;
29 static unsigned int startcount = 1;
30 static int expunged, expunge_period, saved_timeout = 0;
31 static int imap_version, preauth;
32 static flag do_idle, has_idle;
33 static char capabilities[MSGBUFSIZE+1];
34 static unsigned int *unseen_messages;
35
36 static int imap_ok(int sock, char *argbuf)
37 /* parse command response */
38 {
39     char buf[MSGBUFSIZE+1];
40
41     do {
42         int     ok;
43         char    *cp;
44
45         if ((ok = gen_recv(sock, buf, sizeof(buf))))
46             return(ok);
47
48         /* all tokens in responses are caseblind */
49         for (cp = buf; *cp; cp++)
50             if (islower((unsigned char)*cp))
51                 *cp = toupper((unsigned char)*cp);
52
53         /* interpret untagged status responses */
54         if (strstr(buf, "* CAPABILITY"))
55         {
56             strncpy(capabilities, buf + 12, sizeof(capabilities));
57             capabilities[sizeof(capabilities)-1] = '\0';
58         }
59         else if (strstr(buf, "EXISTS"))
60         {
61             count = atoi(buf+2);
62             /*
63              * Don't trust the message count passed by the server.
64              * Without this check, it might be possible to do a
65              * DNS-spoofing attack that would pass back a ridiculous 
66              * count, and allocate a malloc area that would overlap
67              * a portion of the stack.
68              */
69             if (count > INT_MAX/sizeof(int))
70             {
71                 report(stderr, "bogus message count!");
72                 return(PS_PROTOCOL);
73             }
74
75             /*
76              * Nasty kluge to handle RFC2177 IDLE.  If we know we're idling
77              * we can't wait for the tag matching the IDLE; we have to tell the
78              * server the IDLE is finished by shipping back a DONE when we
79              * see an EXISTS.  Only after that will a tagged response be
80              * shipped.  The idling flag also gets cleared on a timeout.
81              */
82             if (stage == STAGE_IDLE)
83             {
84                 /* If IDLE isn't supported, we were only sending NOOPs anyway. */
85                 if (has_idle)
86                 {
87                     /* we do our own write and report here to disable tagging */
88                     SockWrite(sock, "DONE\r\n", 6);
89                     if (outlevel >= O_MONITOR)
90                         report(stdout, "IMAP> DONE\n");
91                 }
92
93                 mytimeout = saved_timeout;
94                 stage = STAGE_FETCH;
95             }
96         }
97         /* a space is required to avoid confusion with the \Recent flag */
98         else if (strstr(buf, " RECENT"))
99         {
100             recentcount_ok = 1;
101             recentcount = atoi(buf+2);
102         }
103         else if (strstr(buf, "EXPUNGE") && !strstr(buf, "OK"))
104         {
105             count -= atoi(buf+2);
106             if (count < 0)
107                 count = 0;
108         }
109         else if (strstr(buf, "PREAUTH"))
110             preauth = TRUE;
111         /*
112          * The server may decide to make the mailbox read-only, 
113          * which causes fetchmail to go into a endless loop
114          * fetching the same message over and over again. 
115          * 
116          * However, for check_only, we use EXAMINE which will
117          * mark the mailbox read-only as per the RFC.
118          * 
119          * This checks for the condition and aborts if 
120          * the mailbox is read-only. 
121          *
122          * See RFC 2060 section 6.3.1 (SELECT).
123          * See RFC 2060 section 6.3.2 (EXAMINE).
124          */ 
125         else if (!check_only && strstr(buf, "[READ-ONLY]"))
126             return(PS_LOCKBUSY);
127     } while
128         (tag[0] != '\0' && strncmp(buf, tag, strlen(tag)));
129
130     if (tag[0] == '\0')
131     {
132         if (argbuf)
133             strcpy(argbuf, buf);
134         return(PS_SUCCESS); 
135     }
136     else
137     {
138         char    *cp;
139
140         /* skip the tag */
141         for (cp = buf; !isspace((unsigned char)*cp); cp++)
142             continue;
143         while (isspace((unsigned char)*cp))
144             cp++;
145
146         if (strncasecmp(cp, "OK", 2) == 0)
147         {
148             if (argbuf)
149                 strcpy(argbuf, cp);
150             return(PS_SUCCESS);
151         }
152         else if (strncasecmp(cp, "BAD", 3) == 0)
153             return(PS_ERROR);
154         else if (strncasecmp(cp, "NO", 2) == 0)
155         {
156             if (stage == STAGE_GETAUTH) 
157                 return(PS_AUTHFAIL);    /* RFC2060, 6.2.2 */
158             else
159                 return(PS_ERROR);
160         }
161         else
162             return(PS_PROTOCOL);
163     }
164 }
165
166 #ifdef NTLM_ENABLE
167 #include "ntlm.h"
168
169 static tSmbNtlmAuthRequest   request;              
170 static tSmbNtlmAuthChallenge challenge;
171 static tSmbNtlmAuthResponse  response;
172
173 /*
174  * NTLM support by Grant Edwards.
175  *
176  * Handle MS-Exchange NTLM authentication method.  This is the same
177  * as the NTLM auth used by Samba for SMB related services. We just
178  * encode the packets in base64 instead of sending them out via a
179  * network interface.
180  * 
181  * Much source (ntlm.h, smb*.c smb*.h) was borrowed from Samba.
182  */
183
184 static int do_imap_ntlm(int sock, struct query *ctl)
185 {
186     char msgbuf[2048];
187     int result,len;
188   
189     gen_send(sock, "AUTHENTICATE NTLM");
190
191     if ((result = gen_recv(sock, msgbuf, sizeof msgbuf)))
192         return result;
193   
194     if (msgbuf[0] != '+')
195         return PS_AUTHFAIL;
196   
197     buildSmbNtlmAuthRequest(&request,ctl->remotename,NULL);
198
199     if (outlevel >= O_DEBUG)
200         dumpSmbNtlmAuthRequest(stdout, &request);
201
202     memset(msgbuf,0,sizeof msgbuf);
203     to64frombits (msgbuf, (unsigned char*)&request, SmbLength(&request));
204   
205     if (outlevel >= O_MONITOR)
206         report(stdout, "IMAP> %s\n", msgbuf);
207   
208     strcat(msgbuf,"\r\n");
209     SockWrite (sock, msgbuf, strlen (msgbuf));
210
211     if ((gen_recv(sock, msgbuf, sizeof msgbuf)))
212         return result;
213   
214     len = from64tobits ((char*)&challenge, msgbuf, sizeof(challenge));
215     
216     if (outlevel >= O_DEBUG)
217         dumpSmbNtlmAuthChallenge(stdout, &challenge);
218     
219     buildSmbNtlmAuthResponse(&challenge, &response,ctl->remotename,ctl->password);
220   
221     if (outlevel >= O_DEBUG)
222         dumpSmbNtlmAuthResponse(stdout, &response);
223   
224     memset(msgbuf,0,sizeof msgbuf);
225     to64frombits (msgbuf, (unsigned char*)&response, SmbLength(&response));
226
227     if (outlevel >= O_MONITOR)
228         report(stdout, "IMAP> %s\n", msgbuf);
229       
230     strcat(msgbuf,"\r\n");
231     SockWrite (sock, msgbuf, strlen (msgbuf));
232   
233     if ((result = gen_recv (sock, msgbuf, sizeof msgbuf)))
234         return result;
235   
236     if (strstr (msgbuf, "OK"))
237         return PS_SUCCESS;
238     else
239         return PS_AUTHFAIL;
240 }
241 #endif /* NTLM */
242
243 static int imap_canonicalize(char *result, char *raw, int maxlen)
244 /* encode an IMAP password as per RFC1730's quoting conventions */
245 {
246     int i, j;
247
248     j = 0;
249     for (i = 0; i < strlen(raw) && i < maxlen; i++)
250     {
251         if ((raw[i] == '\\') || (raw[i] == '"'))
252             result[j++] = '\\';
253         result[j++] = raw[i];
254     }
255     result[j] = '\0';
256
257     return(i);
258 }
259
260 static void capa_probe(int sock, struct query *ctl)
261 /* set capability variables from a CAPA probe */
262 {
263     int ok;
264
265     /* probe to see if we're running IMAP4 and can use RFC822.PEEK */
266     capabilities[0] = '\0';
267     if ((ok = gen_transact(sock, "CAPABILITY")) == PS_SUCCESS)
268     {
269         char    *cp;
270
271         /* capability checks are supposed to be caseblind */
272         for (cp = capabilities; *cp; cp++)
273             *cp = toupper(*cp);
274
275         /* UW-IMAP server 10.173 notifies in all caps, but RFC2060 says we
276            should expect a response in mixed-case */
277         if (strstr(capabilities, "IMAP4REV1"))
278         {
279             imap_version = IMAP4rev1;
280             if (outlevel >= O_DEBUG)
281                 report(stdout, GT_("Protocol identified as IMAP4 rev 1\n"));
282         }
283         else
284         {
285             imap_version = IMAP4;
286             if (outlevel >= O_DEBUG)
287                 report(stdout, GT_("Protocol identified as IMAP4 rev 0\n"));
288         }
289     }
290     else if (ok == PS_ERROR)
291     {
292         imap_version = IMAP2;
293         if (outlevel >= O_DEBUG)
294             report(stdout, GT_("Protocol identified as IMAP2 or IMAP2BIS\n"));
295     }
296
297     /* 
298      * Handle idling.  We depend on coming through here on startup
299      * and after each timeout (including timeouts during idles).
300      */
301     if (ctl->idle)
302     {
303         do_idle = TRUE;
304         if (strstr(capabilities, "IDLE"))
305         {
306             has_idle = TRUE;
307         }
308         if (outlevel >= O_VERBOSE)
309             report(stdout, GT_("will idle after poll\n"));
310     }
311
312     peek_capable = (imap_version >= IMAP4);
313 }
314
315 static int imap_getauth(int sock, struct query *ctl, char *greeting)
316 /* apply for connection authorization */
317 {
318     int ok = 0;
319 #ifdef SSL_ENABLE
320     flag did_stls = FALSE;
321 #endif /* SSL_ENABLE */
322
323     /*
324      * Assumption: expunges are cheap, so we want to do them
325      * after every message unless user said otherwise.
326      */
327     if (NUM_SPECIFIED(ctl->expunge))
328         expunge_period = NUM_VALUE_OUT(ctl->expunge);
329     else
330         expunge_period = 1;
331
332     capa_probe(sock, ctl);
333
334     /* 
335      * If either (a) we saw a PREAUTH token in the greeting, or
336      * (b) the user specified ssh preauthentication, then we're done.
337      */
338     if (preauth || ctl->server.authenticate == A_SSH)
339     {
340         preauth = FALSE;  /* reset for the next session */
341         return(PS_SUCCESS);
342     }
343
344 #ifdef SSL_ENABLE
345     if ((!ctl->sslproto || !strcmp(ctl->sslproto,"tls1"))
346         && !ctl->use_ssl
347         && strstr(capabilities, "STARTTLS"))
348     {
349            char *realhost;
350
351            realhost = ctl->server.via ? ctl->server.via : ctl->server.pollname;
352            ok = gen_transact(sock, "STARTTLS");
353
354            /* We use "tls1" instead of ctl->sslproto, as we want STARTTLS,
355             * not other SSL protocols
356             */
357            if (ok == PS_SUCCESS &&
358                SSLOpen(sock,ctl->sslcert,ctl->sslkey,"tls1",ctl->sslcertck, ctl->sslcertpath,ctl->sslfingerprint,realhost,ctl->server.pollname) == -1)
359            {
360                if (!ctl->sslproto && !ctl->wehaveauthed)
361                {
362                    ctl->sslproto = xstrdup("");
363                    /* repoll immediately */
364                    return(PS_REPOLL);
365                }
366                report(stderr,
367                       GT_("SSL connection failed.\n"));
368                return(PS_AUTHFAIL);
369            }
370            did_stls = TRUE;
371
372            /*
373             * RFC 2595 says this:
374             *
375             * "Once TLS has been started, the client MUST discard cached
376             * information about server capabilities and SHOULD re-issue the
377             * CAPABILITY command.  This is necessary to protect against
378             * man-in-the-middle attacks which alter the capabilities list prior
379             * to STARTTLS.  The server MAY advertise different capabilities
380             * after STARTTLS."
381             */
382            capa_probe(sock, ctl);
383     }
384 #endif /* SSL_ENABLE */
385
386     /*
387      * Time to authenticate the user.
388      * Try the protocol variants that don't require passwords first.
389      */
390     ok = PS_AUTHFAIL;
391
392 #ifdef GSSAPI
393     if ((ctl->server.authenticate == A_ANY 
394          || ctl->server.authenticate == A_GSSAPI)
395         && strstr(capabilities, "AUTH=GSSAPI"))
396         if(ok = do_gssauth(sock, "AUTHENTICATE", "imap", ctl->server.truename, ctl->remotename))
397         {
398             /* SASL cancellation of authentication */
399             gen_send(sock, "*");
400             if(ctl->server.authenticate != A_ANY)
401                 return ok;
402         }
403         else
404             return ok;
405 #endif /* GSSAPI */
406
407 #ifdef KERBEROS_V4
408     if ((ctl->server.authenticate == A_ANY 
409          || ctl->server.authenticate == A_KERBEROS_V4
410          || ctl->server.authenticate == A_KERBEROS_V5) 
411         && strstr(capabilities, "AUTH=KERBEROS_V4"))
412     {
413         if ((ok = do_rfc1731(sock, "AUTHENTICATE", ctl->server.truename)))
414         {
415             /* SASL cancellation of authentication */
416             gen_send(sock, "*");
417             if(ctl->server.authenticate != A_ANY)
418                 return ok;
419         }
420         else
421             return ok;
422     }
423 #endif /* KERBEROS_V4 */
424
425     /*
426      * No such luck.  OK, now try the variants that mask your password
427      * in a challenge-response.
428      */
429
430     if ((ctl->server.authenticate == A_ANY && strstr(capabilities, "AUTH=CRAM-MD5"))
431         || ctl->server.authenticate == A_CRAM_MD5)
432     {
433         if ((ok = do_cram_md5 (sock, "AUTHENTICATE", ctl, NULL)))
434         {
435             /* SASL cancellation of authentication */
436             gen_send(sock, "*");
437             if(ctl->server.authenticate != A_ANY)
438                 return ok;
439         }
440         else
441             return ok;
442     }
443
444 #ifdef OPIE_ENABLE
445     if ((ctl->server.authenticate == A_ANY 
446          || ctl->server.authenticate == A_OTP)
447         && strstr(capabilities, "AUTH=X-OTP")) {
448         if ((ok = do_otp(sock, "AUTHENTICATE", ctl)))
449         {
450             /* SASL cancellation of authentication */
451             gen_send(sock, "*");
452             if(ctl->server.authenticate != A_ANY)
453                 return ok;
454         } else {
455             return ok;
456         }
457     }
458 #else
459     if (ctl->server.authenticate == A_OTP)
460     {
461         report(stderr, 
462            GT_("Required OTP capability not compiled into fetchmail\n"));
463     }
464 #endif /* OPIE_ENABLE */
465
466 #ifdef NTLM_ENABLE
467     if ((ctl->server.authenticate == A_ANY 
468          || ctl->server.authenticate == A_NTLM) 
469         && strstr (capabilities, "AUTH=NTLM")) {
470         if ((ok = do_imap_ntlm(sock, ctl)))
471         {
472             /* SASL cancellation of authentication */
473             gen_send(sock, "*");
474             if(ctl->server.authenticate != A_ANY)
475                 return ok;
476         }
477         else
478             return(ok);
479     }
480 #else
481     if (ctl->server.authenticate == A_NTLM)
482     {
483         report(stderr, 
484            GT_("Required NTLM capability not compiled into fetchmail\n"));
485     }
486 #endif /* NTLM_ENABLE */
487
488 #ifdef __UNUSED__       /* The Cyrus IMAP4rev1 server chokes on this */
489     /* this handles either AUTH=LOGIN or AUTH-LOGIN */
490     if ((imap_version >= IMAP4rev1) && (!strstr(capabilities, "LOGIN")))
491     {
492         report(stderr, 
493                GT_("Required LOGIN capability not supported by server\n"));
494     }
495 #endif /* __UNUSED__ */
496
497     /* 
498      * We're stuck with sending the password en clair.
499      * The reason for this odd-looking logic is that some
500      * servers return LOGINDISABLED even though login 
501      * actually works.  So arrange things in such a way that
502      * setting auth passwd makes it ignore this capability.
503      */
504     if((ctl->server.authenticate==A_ANY&&!strstr(capabilities,"LOGINDISABLED"))
505         || ctl->server.authenticate == A_PASSWORD)
506     {
507         /* these sizes guarantee no buffer overflow */
508         char    remotename[NAMELEN*2+1], password[PASSWORDLEN*2+1];
509
510         imap_canonicalize(remotename, ctl->remotename, NAMELEN);
511         imap_canonicalize(password, ctl->password, PASSWORDLEN);
512
513         snprintf(shroud, sizeof (shroud), "\"%s\"", password);
514         ok = gen_transact(sock, "LOGIN \"%s\" \"%s\"", remotename, password);
515         shroud[0] = '\0';
516 #ifdef SSL_ENABLE
517         /* this is for servers which claim to support TLS, but actually
518          * don't! */
519         if (did_stls && ok == PS_SOCKET && !ctl->sslproto && !ctl->wehaveauthed)
520         {
521             ctl->sslproto = xstrdup("");
522             /* repoll immediately */
523             ok = PS_REPOLL;
524         }
525 #endif
526         if (ok)
527         {
528             /* SASL cancellation of authentication */
529             gen_send(sock, "*");
530             if(ctl->server.authenticate != A_ANY)
531                 return ok;
532         }
533         else
534             return(ok);
535     }
536
537     return(ok);
538 }
539
540 static int internal_expunge(int sock)
541 /* ship an expunge, resetting associated counters */
542 {
543     int ok;
544
545     recentcount_ok = 0;
546
547     if ((ok = gen_transact(sock, "EXPUNGE")))
548         return(ok);
549
550     /* some servers do not report RECENT after an EXPUNGE. in this case, 
551      * the previous value of recentcount is just ignored. */
552     if (!recentcount_ok)
553         recentcount = 0;
554
555     expunged += deletions;
556     deletions = 0;
557
558 #ifdef IMAP_UID /* not used */
559     expunge_uids(ctl);
560 #endif /* IMAP_UID */
561
562     return(PS_SUCCESS);
563 }
564
565 static int imap_idle(int sock)
566 /* start an RFC2177 IDLE, or fake one if unsupported */
567 {
568     int ok;
569
570     stage = STAGE_IDLE;
571     saved_timeout = mytimeout;
572
573     if (has_idle) {
574         /* special timeout to terminate the IDLE and re-issue it
575          * at least every 28 minutes:
576          * (the server may have an inactivity timeout) */
577         mytimeout = 1680; /* 28 min */
578         /* enter IDLE mode */
579         ok = gen_transact(sock, "IDLE");
580
581         if (ok == PS_IDLETIMEOUT) {
582             /* send "DONE" continuation */
583             SockWrite(sock, "DONE\r\n", 6);
584             if (outlevel >= O_MONITOR)
585                 report(stdout, "IMAP> DONE\n");
586         } else
587             /* not idle timeout */
588             return ok;
589     } else {  /* no idle support, fake it */
590         /* when faking an idle, we can't assume the server will
591          * send us the new messages out of the blue (RFC2060);
592          * this timeout is potentially the delay before we notice
593          * new mail (can be small since NOOP checking is cheap) */
594         mytimeout = 28;
595         ok = gen_transact(sock, "NOOP");
596         /* if there's an error (not likely) or we just found mail (stage 
597          * has changed, timeout has also been restored), we're done */
598         if (ok != 0 || stage != STAGE_IDLE)
599             return(ok);
600
601         /* wait (briefly) for an unsolicited status update */
602         ok = imap_ok(sock, NULL);
603         /* again, this is new mail or an error */
604         if (ok != PS_IDLETIMEOUT)
605             return(ok);
606     }
607
608     /* restore normal timeout value */
609     mytimeout = saved_timeout;
610     stage = STAGE_FETCH;
611
612     /* get OK IDLE message */
613     if (has_idle)
614         return imap_ok(sock, NULL);
615
616     return PS_SUCCESS;
617 }
618
619 static int imap_getrange(int sock, 
620                          struct query *ctl, 
621                          const char *folder, 
622                          int *countp, int *newp, int *bytes)
623 /* get range of messages to be fetched */
624 {
625     int ok;
626     char buf[MSGBUFSIZE+1], *cp;
627
628     /* find out how many messages are waiting */
629     *bytes = -1;
630
631     if (pass > 1)
632     {
633         /* 
634          * We have to have an expunge here, otherwise the re-poll will
635          * infinite-loop picking up un-expunged messages -- unless the
636          * expunge period is one and we've been nuking each message 
637          * just after deletion.
638          */
639         ok = 0;
640         if (deletions) {
641             ok = internal_expunge(sock);
642             if (ok)
643             {
644                 report(stderr, GT_("expunge failed\n"));
645                 return(ok);
646             }
647         }
648
649         /*
650          * recentcount is already set here by the last imap command which
651          * returned RECENT on detecting new mail. if recentcount is 0, wait
652          * for new mail.
653          */
654
655         /* this is a while loop because imap_idle() might return on other
656          * mailbox changes also */
657         while (recentcount == 0 && do_idle) {
658             smtp_close(ctl, 1);
659             ok = imap_idle(sock);
660             if (ok)
661             {
662                 report(stderr, GT_("re-poll failed\n"));
663                 return(ok);
664             }
665         }
666         /* if recentcount is 0, return no mail */
667         if (recentcount == 0)
668                 count = 0;
669         if (outlevel >= O_DEBUG)
670             report(stdout, GT_("%d messages waiting after re-poll\n"), count);
671     }
672     else
673     {
674         count = 0;
675         ok = gen_transact(sock, 
676                           check_only ? "EXAMINE \"%s\"" : "SELECT \"%s\"",
677                           folder ? folder : "INBOX");
678         if (ok != 0)
679         {
680             report(stderr, GT_("mailbox selection failed\n"));
681             return(ok);
682         }
683         else if (outlevel >= O_DEBUG)
684             report(stdout, GT_("%d messages waiting after first poll\n"), count);
685
686         /* no messages?  then we may need to idle until we get some */
687         while (count == 0 && do_idle) {
688             ok = imap_idle(sock);
689             if (ok)
690             {
691                 report(stderr, GT_("re-poll failed\n"));
692                 return(ok);
693             }
694         }
695
696         /*
697          * We should have an expunge here to
698          * a) avoid fetching deleted mails during 'fetchall'
699          * b) getting a wrong count of mails during 'no fetchall'
700          */
701         if (!check_only && !ctl->keep && count > 0)
702         {
703             ok = internal_expunge(sock);
704             if (ok)
705             {
706                 report(stderr, GT_("expunge failed\n"));
707                 return(ok);
708             }
709             if (outlevel >= O_DEBUG)
710                 report(stdout, GT_("%d messages waiting after expunge\n"), count);
711         }
712     }
713
714     *countp = count;
715     recentcount = 0;
716     startcount = 1;
717
718     /* OK, now get a count of unseen messages and their indices */
719     if (!ctl->fetchall && count > 0)
720     {
721         if (unseen_messages)
722             free(unseen_messages);
723         unseen_messages = xmalloc(count * sizeof(unsigned int));
724         memset(unseen_messages, 0, count * sizeof(unsigned int));
725         unseen = 0;
726
727         /* don't count deleted messages, in case user enabled keep last time */
728         gen_send(sock, "SEARCH UNSEEN NOT DELETED");
729         do {
730             ok = gen_recv(sock, buf, sizeof(buf));
731             if (ok != 0)
732             {
733                 report(stderr, GT_("search for unseen messages failed\n"));
734                 return(PS_PROTOCOL);
735             }
736             else if ((cp = strstr(buf, "* SEARCH")))
737             {
738                 char    *ep;
739
740                 cp += 8;        /* skip "* SEARCH" */
741                 /* startcount is higher than count so that if there are no
742                  * unseen messages, imap_getsizes() will not need to do
743                  * anything! */
744                 startcount = count + 1;
745
746                 while (*cp && unseen < count)
747                 {
748                     /* skip whitespace */
749                     while (*cp && isspace((unsigned char)*cp))
750                         cp++;
751                     if (*cp) 
752                     {
753                         unsigned int um;
754                         /*
755                          * Message numbers are between 1 and 2^32 inclusive,
756                          * so unsigned int is large enough.
757                          */
758                         um=(unsigned int)strtol(cp,&ep,10);
759                         if (um <= count)
760                         {
761                             unseen_messages[unseen++] = um;
762                             if (outlevel >= O_DEBUG)
763                                 report(stdout, GT_("%u is unseen\n"), um);
764                             if (startcount > um)
765                                 startcount = um;
766                         }
767                         cp = ep;
768                     }
769                 }
770             }
771         } while
772             (tag[0] != '\0' && strncmp(buf, tag, strlen(tag)));
773
774         if (outlevel >= O_DEBUG && unseen > 0)
775             report(stdout, GT_("%u is first unseen\n"), startcount);
776     } else
777         unseen = -1;
778
779     *newp = unseen;
780     count = 0;
781     expunged = 0;
782     deletions = 0;
783
784     return(PS_SUCCESS);
785 }
786
787 static int imap_getpartialsizes(int sock, int first, int last, int *sizes)
788 /* capture the sizes of messages #first-#last */
789 {
790     char buf [MSGBUFSIZE+1];
791
792     /*
793      * Some servers (as in, PMDF5.1-9.1 under OpenVMS 6.1)
794      * won't accept 1:1 as valid set syntax.  Some implementors
795      * should be taken out and shot for excessive anality.
796      *
797      * Microsoft Exchange (brain-dead piece of crap that it is) 
798      * sometimes gets its knickers in a knot about bodiless messages.
799      * You may see responses like this:
800      *
801      *  fetchmail: IMAP> A0004 FETCH 1:9 RFC822.SIZE
802      *  fetchmail: IMAP< * 2 FETCH (RFC822.SIZE 1187)
803      *  fetchmail: IMAP< * 3 FETCH (RFC822.SIZE 3954)
804      *  fetchmail: IMAP< * 4 FETCH (RFC822.SIZE 1944)
805      *  fetchmail: IMAP< * 5 FETCH (RFC822.SIZE 2933)
806      *  fetchmail: IMAP< * 6 FETCH (RFC822.SIZE 1854)
807      *  fetchmail: IMAP< * 7 FETCH (RFC822.SIZE 34054)
808      *  fetchmail: IMAP< * 8 FETCH (RFC822.SIZE 5561)
809      *  fetchmail: IMAP< * 9 FETCH (RFC822.SIZE 1101)
810      *  fetchmail: IMAP< A0004 NO The requested item could not be found.
811      *
812      * This means message 1 has only headers.  For kicks and grins
813      * you can telnet in and look:
814      *  A003 FETCH 1 FULL
815      *  A003 NO The requested item could not be found.
816      *  A004 fetch 1 rfc822.header
817      *  A004 NO The requested item could not be found.
818      *  A006 FETCH 1 BODY
819      *  * 1 FETCH (BODY ("TEXT" "PLAIN" ("CHARSET" "US-ASCII") NIL NIL "7BIT" 35 3))
820      *  A006 OK FETCH completed.
821      *
822      * To get around this, we terminate the read loop on a NO and count
823      * on the fact that the sizes array has been preinitialized with a
824      * known-bad size value.
825      */
826
827     /* expunges change the fetch numbers */
828     first -= expunged;
829     last -= expunged;
830
831     if (last == first)
832         gen_send(sock, "FETCH %d RFC822.SIZE", last);
833     else if (last > first)
834         gen_send(sock, "FETCH %d:%d RFC822.SIZE", first, last);
835     else /* no unseen messages! */
836         return(PS_SUCCESS);
837     for (;;)
838     {
839         unsigned int num, size;
840         int ok;
841         char *cp;
842
843         if ((ok = gen_recv(sock, buf, sizeof(buf))))
844             return(ok);
845         /* we want response matching to be case-insensitive */
846         for (cp = buf; *cp; cp++)
847             *cp = toupper(*cp);
848         /* an untagged NO means that a message was not readable */
849         if (strstr(buf, "* NO"))
850             ;
851         else if (strstr(buf, "OK") || strstr(buf, "NO"))
852             break;
853         else if (sscanf(buf, "* %u FETCH (RFC822.SIZE %u)", &num, &size) == 2) 
854         {
855             if (num >= first && num <= last)
856                 sizes[num - first] = size;
857             else
858                 report(stderr, "Warning: ignoring bogus data for message sizes returned by the server.\n");
859         }
860     }
861
862     return(PS_SUCCESS);
863 }
864
865 static int imap_getsizes(int sock, int count, int *sizes)
866 /* capture the sizes of all messages */
867 {
868     return imap_getpartialsizes(sock, 1, count, sizes);
869 }
870
871 static int imap_is_old(int sock, struct query *ctl, int number)
872 /* is the given message old? */
873 {
874     flag seen = TRUE;
875     int i;
876
877     /* 
878      * Expunges change the fetch numbers, but unseen_messages contains
879      * indices from before any expungees were done.  So neither the
880      * argument nor the values in message_sequence need to be decremented.
881      */
882
883     seen = TRUE;
884     for (i = 0; i < unseen; i++)
885         if (unseen_messages[i] == number)
886         {
887             seen = FALSE;
888             break;
889         }
890
891     return(seen);
892 }
893
894 static char *skip_token(char *ptr)
895 {
896     while(isspace((unsigned char)*ptr)) ptr++;
897     while(!isspace((unsigned char)*ptr) && !iscntrl((unsigned char)*ptr)) ptr++;
898     while(isspace((unsigned char)*ptr)) ptr++;
899     return(ptr);
900 }
901
902 static int imap_fetch_headers(int sock, struct query *ctl,int number,int *lenp)
903 /* request headers of nth message */
904 {
905     char buf [MSGBUFSIZE+1];
906     int num;
907
908     /* expunges change the fetch numbers */
909     number -= expunged;
910
911     /*
912      * This is blessed by RFC1176, RFC1730, RFC2060.
913      * According to the RFCs, it should *not* set the \Seen flag.
914      */
915     gen_send(sock, "FETCH %d RFC822.HEADER", number);
916
917     /* looking for FETCH response */
918     for (;;) 
919     {
920         int     ok;
921         char    *ptr;
922
923         if ((ok = gen_recv(sock, buf, sizeof(buf))))
924             return(ok);
925         ptr = skip_token(buf);  /* either "* " or "AXXXX " */
926         if (sscanf(ptr, "%d FETCH (%*s {%d}", &num, lenp) == 2)
927             break;
928         /* try to recover from chronically fucked-up M$ Exchange servers */
929         else if (!strncmp(ptr, "NO", 2))
930         {
931             /* wait for a tagged response */
932             if (strstr (buf, "* NO"))
933                 imap_ok (sock, 0);
934             return(PS_TRANSIENT);
935         }
936         else if (!strncmp(ptr, "BAD", 3))
937         {
938             /* wait for a tagged response */
939             if (strstr (buf, "* BAD"))
940                 imap_ok (sock, 0);
941             return(PS_TRANSIENT);
942         }
943     }
944
945     if (num != number)
946         return(PS_ERROR);
947     else
948         return(PS_SUCCESS);
949 }
950
951 static int imap_fetch_body(int sock, struct query *ctl, int number, int *lenp)
952 /* request body of nth message */
953 {
954     char buf [MSGBUFSIZE+1], *cp;
955     int num;
956
957     /* expunges change the fetch numbers */
958     number -= expunged;
959
960     /*
961      * If we're using IMAP4, we can fetch the message without setting its
962      * seen flag.  This is good!  It means that if the protocol exchange
963      * craps out during the message, it will still be marked `unseen' on
964      * the server.
965      *
966      * According to RFC2060, and Mark Crispin the IMAP maintainer,
967      * FETCH %d BODY[TEXT] and RFC822.TEXT are "functionally 
968      * equivalent".  However, we know of at least one server that
969      * treats them differently in the presence of MIME attachments;
970      * the latter form downloads the attachment, the former does not.
971      * The server is InterChange, and the fool who implemented this
972      * misfeature ought to be strung up by his thumbs.  
973      *
974      * When I tried working around this by disabling use of the 4rev1 form,
975      * I found that doing this breaks operation with M$ Exchange.
976      * Annoyingly enough, Exchange's refusal to cope is technically legal
977      * under RFC2062.  Trust Microsoft, the Great Enemy of interoperability
978      * standards, to find a way to make standards compliance irritating....
979      */
980     switch (imap_version)
981     {
982     case IMAP4rev1:     /* RFC 2060 */
983         gen_send(sock, "FETCH %d BODY.PEEK[TEXT]", number);
984         break;
985
986     case IMAP4:         /* RFC 1730 */
987         gen_send(sock, "FETCH %d RFC822.TEXT.PEEK", number);
988         break;
989
990     default:            /* RFC 1176 */
991         gen_send(sock, "FETCH %d RFC822.TEXT", number);
992         break;
993     }
994
995     /* looking for FETCH response */
996     do {
997         int     ok;
998
999         if ((ok = gen_recv(sock, buf, sizeof(buf))))
1000             return(ok);
1001     } while
1002         (!strstr(buf+4, "FETCH") || sscanf(buf+2, "%d", &num) != 1);
1003
1004     if (num != number)
1005         return(PS_ERROR);
1006
1007     /*
1008      * Try to extract a length from the FETCH response.  RFC2060 requires
1009      * it to be present, but at least one IMAP server (Novell GroupWise)
1010      * botches this.  The overflow check is needed because of a broken
1011      * server called dbmail that returns huge garbage lengths.
1012      */
1013     if ((cp = strchr(buf, '{'))) {
1014         errno = 0;
1015         *lenp = (int)strtol(cp + 1, (char **)NULL, 10);
1016         if (errno == ERANGE && (*lenp == LONG_MAX || *lenp == LONG_MIN))
1017             *lenp = -1;    /* length is too big/small for us to handle */
1018     }
1019     else
1020         *lenp = -1;     /* missing length part in FETCH reponse */
1021
1022     return(PS_SUCCESS);
1023 }
1024
1025 static int imap_trail(int sock, struct query *ctl, int number)
1026 /* discard tail of FETCH response after reading message text */
1027 {
1028     /* expunges change the fetch numbers */
1029     /* number -= expunged; */
1030
1031     for (;;)
1032     {
1033         char buf[MSGBUFSIZE+1];
1034         int ok;
1035
1036         if ((ok = gen_recv(sock, buf, sizeof(buf))))
1037             return(ok);
1038
1039         /* UW IMAP returns "OK FETCH", Cyrus returns "OK Completed" */
1040         if (strstr(buf, "OK"))
1041             break;
1042     }
1043
1044     return(PS_SUCCESS);
1045 }
1046
1047 static int imap_delete(int sock, struct query *ctl, int number)
1048 /* set delete flag for given message */
1049 {
1050     int ok;
1051
1052     /* expunges change the fetch numbers */
1053     number -= expunged;
1054
1055     /*
1056      * Use SILENT if possible as a minor throughput optimization.
1057      * Note: this has been dropped from IMAP4rev1.
1058      *
1059      * We set Seen because there are some IMAP servers (notably HP
1060      * OpenMail) that do message-receipt DSNs, but only when the seen
1061      * bit is set.  This is the appropriate time -- we get here right
1062      * after the local SMTP response that says delivery was
1063      * successful.
1064      */
1065     if ((ok = gen_transact(sock,
1066                         imap_version == IMAP4 
1067                                 ? "STORE %d +FLAGS.SILENT (\\Seen \\Deleted)"
1068                                 : "STORE %d +FLAGS (\\Seen \\Deleted)", 
1069                         number)))
1070         return(ok);
1071     else
1072         deletions++;
1073
1074     /*
1075      * We do an expunge after expunge_period messages, rather than
1076      * just before quit, so that a line hit during a long session
1077      * won't result in lots of messages being fetched again during
1078      * the next session.
1079      */
1080     if (NUM_NONZERO(expunge_period) && (deletions % expunge_period) == 0)
1081         internal_expunge(sock);
1082
1083     return(PS_SUCCESS);
1084 }
1085
1086 static int imap_mark_seen(int sock, struct query *ctl, int number)
1087 /* mark the given message as seen */
1088 {
1089     return(gen_transact(sock,
1090         imap_version == IMAP4
1091         ? "STORE %d +FLAGS.SILENT (\\Seen)"
1092         : "STORE %d +FLAGS (\\Seen)",
1093         number));
1094 }
1095
1096 static int imap_logout(int sock, struct query *ctl)
1097 /* send logout command */
1098 {
1099     /* if any un-expunged deletions remain, ship an expunge now */
1100     if (deletions)
1101         internal_expunge(sock);
1102
1103 #ifdef USE_SEARCH
1104     /* Memory clean-up */
1105     if (unseen_messages)
1106         free(unseen_messages);
1107 #endif /* USE_SEARCH */
1108
1109     return(gen_transact(sock, "LOGOUT"));
1110 }
1111
1112 static const struct method imap =
1113 {
1114     "IMAP",             /* Internet Message Access Protocol */
1115 #ifdef INET6_ENABLE
1116     "imap",
1117     "imaps",
1118 #else /* INET6_ENABLE */
1119     143,                /* standard IMAP2bis/IMAP4 port */
1120     993,                /* ssl IMAP2bis/IMAP4 port */
1121 #endif /* INET6_ENABLE */
1122     TRUE,               /* this is a tagged protocol */
1123     FALSE,              /* no message delimiter */
1124     imap_ok,            /* parse command response */
1125     imap_getauth,       /* get authorization */
1126     imap_getrange,      /* query range of messages */
1127     imap_getsizes,      /* get sizes of messages (used for ESMTP SIZE option) */
1128     imap_getpartialsizes,       /* get sizes of subset of messages (used for ESMTP SIZE option) */
1129     imap_is_old,        /* no UID check */
1130     imap_fetch_headers, /* request given message headers */
1131     imap_fetch_body,    /* request given message body */
1132     imap_trail,         /* eat message trailer */
1133     imap_delete,        /* delete the message */
1134     imap_mark_seen,     /* how to mark a message as seen */
1135     imap_logout,        /* expunge and exit */
1136     TRUE,               /* yes, we can re-poll */
1137 };
1138
1139 int doIMAP(struct query *ctl)
1140 /* retrieve messages using IMAP Version 2bis or Version 4 */
1141 {
1142     return(do_protocol(ctl, &imap));
1143 }
1144
1145 /* imap.c ends here */