]> Pileus Git - ~andy/fetchmail/blob - imap.c
Nalin Dahyabai's changes.
[~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 #endif
15 #include  "fetchmail.h"
16 #include  "socket.h"
17
18 #include  "i18n.h"
19
20 #if OPIE_ENABLE
21 #endif /* OPIE_ENABLE */
22
23 #ifndef strstr          /* glibc-2.1 declares this as a macro */
24 extern char *strstr();  /* needed on sysV68 R3V7.1. */
25 #endif /* strstr */
26
27 /* imap_version values */
28 #define IMAP2           -1      /* IMAP2 or IMAP2BIS, RFC1176 */
29 #define IMAP4           0       /* IMAP4 rev 0, RFC1730 */
30 #define IMAP4rev1       1       /* IMAP4 rev 1, RFC2060 */
31
32 static int count, unseen, deletions, imap_version, preauth; 
33 static int expunged, expunge_period, saved_timeout;
34 static flag do_idle;
35 static char capabilities[MSGBUFSIZE+1];
36 static unsigned int *unseen_messages;
37
38 static int imap_ok(int sock, char *argbuf)
39 /* parse command response */
40 {
41     char buf[MSGBUFSIZE+1];
42
43     do {
44         int     ok;
45         char    *cp;
46
47         if ((ok = gen_recv(sock, buf, sizeof(buf))))
48             return(ok);
49
50         /* all tokens in responses are caseblind */
51         for (cp = buf; *cp; cp++)
52             if (islower(*cp))
53                 *cp = toupper(*cp);
54
55         /* interpret untagged status responses */
56         if (strstr(buf, "* CAPABILITY"))
57             strncpy(capabilities, buf + 12, sizeof(capabilities));
58         else if (strstr(buf, "EXISTS"))
59         {
60             count = atoi(buf+2);
61             /*
62              * Nasty kluge to handle RFC2177 IDLE.  If we know we're idling
63              * we can't wait for the tag matching the IDLE; we have to tell the
64              * server the IDLE is finished by shipping back a DONE when we
65              * see an EXISTS.  Only after that will a tagged response be
66              * shipped.  The idling flag also gets cleared on a timeout.
67              */
68             if (stage == STAGE_IDLE)
69             {
70                 /* we do our own write and report here to disable tagging */
71                 SockWrite(sock, "DONE\r\n", 6);
72                 if (outlevel >= O_MONITOR)
73                     report(stdout, "IMAP> DONE\n");
74
75                 mytimeout = saved_timeout;
76                 stage = STAGE_FETCH;
77             }
78         }
79         else if (strstr(buf, "PREAUTH"))
80             preauth = TRUE;
81         /*
82          * The server may decide to make the mailbox read-only, 
83          * which causes fetchmail to go into a endless loop
84          * fetching the same message over and over again. 
85          * 
86          * However, for check_only, we use EXAMINE which will
87          * mark the mailbox read-only as per the RFC.
88          * 
89          * This checks for the condition and aborts if 
90          * the mailbox is read-only. 
91          *
92          * See RFC 2060 section 6.3.1 (SELECT).
93          * See RFC 2060 section 6.3.2 (EXAMINE).
94          */ 
95         else if (!check_only && strstr(buf, "[READ-ONLY]"))
96             return(PS_LOCKBUSY);
97     } while
98         (tag[0] != '\0' && strncmp(buf, tag, strlen(tag)));
99
100     if (tag[0] == '\0')
101     {
102         if (argbuf)
103             strcpy(argbuf, buf);
104         return(PS_SUCCESS); 
105     }
106     else
107     {
108         char    *cp;
109
110         /* skip the tag */
111         for (cp = buf; !isspace(*cp); cp++)
112             continue;
113         while (isspace(*cp))
114             cp++;
115
116         if (strncmp(cp, "OK", 2) == 0)
117         {
118             if (argbuf)
119                 strcpy(argbuf, cp);
120             return(PS_SUCCESS);
121         }
122         else if (strncmp(cp, "BAD", 3) == 0)
123             return(PS_ERROR);
124         else if (strncmp(cp, "NO", 2) == 0)
125         {
126             if (stage == STAGE_GETAUTH) 
127                 return(PS_AUTHFAIL);    /* RFC2060, 6.2.2 */
128             else
129                 return(PS_ERROR);
130         }
131         else
132             return(PS_PROTOCOL);
133     }
134 }
135
136 #if NTLM_ENABLE
137 #include "ntlm.h"
138
139 static tSmbNtlmAuthRequest   request;              
140 static tSmbNtlmAuthChallenge challenge;
141 static tSmbNtlmAuthResponse  response;
142
143 /*
144  * NTLM support by Grant Edwards.
145  *
146  * Handle MS-Exchange NTLM authentication method.  This is the same
147  * as the NTLM auth used by Samba for SMB related services. We just
148  * encode the packets in base64 instead of sending them out via a
149  * network interface.
150  * 
151  * Much source (ntlm.h, smb*.c smb*.h) was borrowed from Samba.
152  */
153
154 static int do_imap_ntlm(int sock, struct query *ctl)
155 {
156     char msgbuf[2048];
157     int result,len;
158   
159     gen_send(sock, "AUTHENTICATE NTLM");
160
161     if ((result = gen_recv(sock, msgbuf, sizeof msgbuf)))
162         return result;
163   
164     if (msgbuf[0] != '+')
165         return PS_AUTHFAIL;
166   
167     buildSmbNtlmAuthRequest(&request,ctl->remotename,NULL);
168
169     if (outlevel >= O_DEBUG)
170         dumpSmbNtlmAuthRequest(stdout, &request);
171
172     memset(msgbuf,0,sizeof msgbuf);
173     to64frombits (msgbuf, (unsigned char*)&request, SmbLength(&request));
174   
175     if (outlevel >= O_MONITOR)
176         report(stdout, "IMAP> %s\n", msgbuf);
177   
178     strcat(msgbuf,"\r\n");
179     SockWrite (sock, msgbuf, strlen (msgbuf));
180
181     if ((gen_recv(sock, msgbuf, sizeof msgbuf)))
182         return result;
183   
184     len = from64tobits ((unsigned char*)&challenge, msgbuf);
185     
186     if (outlevel >= O_DEBUG)
187         dumpSmbNtlmAuthChallenge(stdout, &challenge);
188     
189     buildSmbNtlmAuthResponse(&challenge, &response,ctl->remotename,ctl->password);
190   
191     if (outlevel >= O_DEBUG)
192         dumpSmbNtlmAuthResponse(stdout, &response);
193   
194     memset(msgbuf,0,sizeof msgbuf);
195     to64frombits (msgbuf, (unsigned char*)&response, SmbLength(&response));
196
197     if (outlevel >= O_MONITOR)
198         report(stdout, "IMAP> %s\n", msgbuf);
199       
200     strcat(msgbuf,"\r\n");
201     SockWrite (sock, msgbuf, strlen (msgbuf));
202   
203     if ((result = gen_recv (sock, msgbuf, sizeof msgbuf)))
204         return result;
205   
206     if (strstr (msgbuf, "OK"))
207         return PS_SUCCESS;
208     else
209         return PS_AUTHFAIL;
210 }
211 #endif /* NTLM */
212
213 static int imap_canonicalize(char *result, char *raw, int maxlen)
214 /* encode an IMAP password as per RFC1730's quoting conventions */
215 {
216     int i, j;
217
218     j = 0;
219     for (i = 0; i < strlen(raw) && i < maxlen; i++)
220     {
221         if ((raw[i] == '\\') || (raw[i] == '"'))
222             result[j++] = '\\';
223         result[j++] = raw[i];
224     }
225     result[j] = '\0';
226
227     return(i);
228 }
229
230 static int imap_getauth(int sock, struct query *ctl, char *greeting)
231 /* apply for connection authorization */
232 {
233     int ok = 0;
234
235     /* probe to see if we're running IMAP4 and can use RFC822.PEEK */
236     capabilities[0] = '\0';
237     if ((ok = gen_transact(sock, "CAPABILITY")) == PS_SUCCESS)
238     {
239         /* UW-IMAP server 10.173 notifies in all caps, but RFC2060 says we
240            should expect a response in mixed-case */
241         if (strstr(capabilities, "IMAP4REV1") ||
242             strstr(capabilities, "IMAP4rev1"))
243         {
244             imap_version = IMAP4rev1;
245             if (outlevel >= O_DEBUG)
246                 report(stdout, _("Protocol identified as IMAP4 rev 1\n"));
247         }
248         else
249         {
250             imap_version = IMAP4;
251             if (outlevel >= O_DEBUG)
252                 report(stdout, _("Protocol identified as IMAP4 rev 0\n"));
253         }
254     }
255     else if (ok == PS_ERROR)
256     {
257         imap_version = IMAP2;
258         if (outlevel >= O_DEBUG)
259             report(stdout, _("Protocol identified as IMAP2 or IMAP2BIS\n"));
260     }
261     else
262         return(ok);
263
264     peek_capable = (imap_version >= IMAP4);
265
266     /* 
267      * Assumption: expunges are cheap, so we want to do them
268      * after every message unless user said otherwise.
269      */
270     if (NUM_SPECIFIED(ctl->expunge))
271         expunge_period = NUM_VALUE_OUT(ctl->expunge);
272     else
273         expunge_period = 1;
274
275     /* 
276      * Handle idling.  We depend on coming through here on startup
277      * and after each timeout (including timeouts during idles).
278      */
279     if (strstr(capabilities, "IDLE") && ctl->idle)
280     {
281         do_idle = TRUE;
282         if (outlevel >= O_VERBOSE)
283             report(stdout, _("will idle after poll\n"));
284     }
285
286     /* 
287      * If either (a) we saw a PREAUTH token in the greeting, or
288      * (b) the user specified ssh preauthentication, then we're done.
289      */
290     if (preauth || ctl->server.authenticate == A_SSH)
291     {
292         preauth = FALSE;  /* reset for the next session */
293         return(PS_SUCCESS);
294     }
295
296     /*
297      * Time to authenticate the user.
298      * Try the protocol variants that don't require passwords first.
299      */
300     ok = PS_AUTHFAIL;
301
302 #ifdef GSSAPI
303     if ((ctl->server.authenticate == A_ANY 
304          || ctl->server.authenticate == A_GSSAPI)
305         && strstr(capabilities, "AUTH=GSSAPI"))
306         if(ok = do_gssauth(sock, "AUTHENTICATE", ctl->server.truename, ctl->remotename))
307         {
308             /* SASL cancellation of authentication */
309             gen_send(sock, "*");
310             if(ctl->server.authenticate != A_ANY)
311                 return ok;
312         }
313         else
314             return ok;
315 #endif /* GSSAPI */
316
317 #ifdef KERBEROS_V4
318     if ((ctl->server.authenticate == A_ANY 
319          || ctl->server.authenticate == A_KERBEROS_V4
320          || ctl->server.authenticate == A_KERBEROS_V5) 
321         && strstr(capabilities, "AUTH=KERBEROS_V4"))
322     {
323         if ((ok = do_rfc1731(sock, "AUTHENTICATE", ctl->server.truename)))
324         {
325             /* SASL cancellation of authentication */
326             gen_send(sock, "*");
327             if(ctl->server.authenticate != A_ANY)
328                 return ok;
329         }
330         else
331             return ok;
332     }
333 #endif /* KERBEROS_V4 */
334
335     /*
336      * No such luck.  OK, now try the variants that mask your password
337      * in a challenge-response.
338      */
339
340     if ((ctl->server.authenticate == A_ANY 
341          || ctl->server.authenticate == A_CRAM_MD5)
342         && strstr(capabilities, "AUTH=CRAM-MD5"))
343     {
344         if ((ok = do_cram_md5 (sock, "AUTHENTICATE", ctl)))
345         {
346             /* SASL cancellation of authentication */
347             gen_send(sock, "*");
348             if(ctl->server.authenticate != A_ANY)
349                 return ok;
350         }
351         else
352             return ok;
353     }
354
355 #if OPIE_ENABLE
356     if ((ctl->server.authenticate == A_ANY 
357          || ctl->server.authenticate == A_OTP)
358         && strstr(capabilities, "AUTH=X-OTP"))
359         if ((ok = do_otp(sock, "AUTHENTICATE", ctl)))
360         {
361             /* SASL cancellation of authentication */
362             gen_send(sock, "*");
363             if(ctl->server.authenticate != A_ANY)
364                 return ok;
365         }
366         else
367             return ok;
368 #else
369     if (ctl->server.authenticate == A_NTLM)
370     {
371         report(stderr, 
372            _("Required OTP capability not compiled into fetchmail\n"));
373     }
374 #endif /* OPIE_ENABLE */
375
376 #ifdef NTLM_ENABLE
377     if ((ctl->server.authenticate == A_ANY 
378          || ctl->server.authenticate == A_NTLM) 
379         && strstr (capabilities, "AUTH=NTLM"))
380         if ((ok = do_imap_ntlm(sock, ctl)))
381         {
382             /* SASL cancellation of authentication */
383             gen_send(sock, "*");
384             if(ctl->server.authenticate != A_ANY)
385                 return ok;
386         }
387         else
388             return(ok);
389 #else
390     if (ctl->server.authenticate == A_NTLM)
391     {
392         report(stderr, 
393            _("Required NTLM capability not compiled into fetchmail\n"));
394     }
395 #endif /* NTLM_ENABLE */
396
397 #ifdef __UNUSED__       /* The Cyrus IMAP4rev1 server chokes on this */
398     /* this handles either AUTH=LOGIN or AUTH-LOGIN */
399     if ((imap_version >= IMAP4rev1) && (!strstr(capabilities, "LOGIN")))
400     {
401         report(stderr, 
402                _("Required LOGIN capability not supported by server\n"));
403     }
404 #endif /* __UNUSED__ */
405
406     /* we're stuck with sending the password en clair */
407     if ((ctl->server.authenticate == A_ANY 
408          || ctl->server.authenticate == A_PASSWORD) 
409         && !strstr (capabilities, "LOGINDISABLED"))
410     {
411         /* these sizes guarantee no buffer overflow */
412         char    remotename[NAMELEN*2+1], password[PASSWORDLEN*2+1];
413
414         imap_canonicalize(remotename, ctl->remotename, NAMELEN);
415         imap_canonicalize(password, ctl->password, PASSWORDLEN);
416
417         ok = gen_transact(sock, "LOGIN \"%s\" \"%s\"", remotename, password);
418         shroud[0] = '\0';
419         if (ok)
420         {
421             /* SASL cancellation of authentication */
422             gen_send(sock, "*");
423             if(ctl->server.authenticate != A_ANY)
424                 return ok;
425         }
426         else
427             return(ok);
428     }
429
430     return(ok);
431 }
432
433 static int internal_expunge(int sock)
434 /* ship an expunge, resetting associated counters */
435 {
436     int ok;
437
438     if ((ok = gen_transact(sock, "EXPUNGE")))
439         return(ok);
440
441     expunged += deletions;
442     deletions = 0;
443
444 #ifdef IMAP_UID /* not used */
445     expunge_uids(ctl);
446 #endif /* IMAP_UID */
447
448     return(PS_SUCCESS);
449 }
450
451 static int imap_idle(int sock)
452 /* start an RFC2177 IDLE */
453 {
454     stage = STAGE_IDLE;
455     saved_timeout = mytimeout;
456     mytimeout = 0;
457
458     return (gen_transact(sock, "IDLE"));
459 }
460
461 static int imap_getrange(int sock, 
462                          struct query *ctl, 
463                          const char *folder, 
464                          int *countp, int *newp, int *bytes)
465 /* get range of messages to be fetched */
466 {
467     int ok;
468     char buf[MSGBUFSIZE+1], *cp;
469
470     /* find out how many messages are waiting */
471     *bytes = -1;
472
473     if (pass > 1)
474     {
475         /* 
476          * We have to have an expunge here, otherwise the re-poll will
477          * infinite-loop picking up un-expunged messages -- unless the
478          * expunge period is one and we've been nuking each message 
479          * just after deletion.
480          */
481         ok = 0;
482         if (deletions && expunge_period != 1)
483             ok = internal_expunge(sock);
484         count = -1;
485         if (do_idle)
486             ok = imap_idle(sock);
487         if (ok || gen_transact(sock, "NOOP"))
488         {
489             report(stderr, _("re-poll failed\n"));
490             return(ok);
491         }
492         else if (count == -1)   /* no EXISTS response to NOOP/IDLE */
493         {
494             count = 0;
495         }
496         if (outlevel >= O_DEBUG)
497             report(stdout, _("%d messages waiting after re-poll\n"), count);
498     }
499     else
500     {
501         ok = gen_transact(sock, 
502                           check_only ? "EXAMINE \"%s\"" : "SELECT \"%s\"",
503                           folder ? folder : "INBOX");
504         if (ok != 0)
505         {
506             report(stderr, _("mailbox selection failed\n"));
507             return(ok);
508         }
509         else if (outlevel >= O_DEBUG)
510             report(stdout, _("%d messages waiting after first poll\n"), count);
511
512         /* no messages?  then we may need to idle until we get some */
513         if (count == 0 && do_idle)
514             imap_idle(sock);
515     }
516
517     *countp = count;
518
519     /* OK, now get a count of unseen messages and their indices */
520     if (!ctl->fetchall && count > 0)
521     {
522         if (unseen_messages)
523             free(unseen_messages);
524         unseen_messages = xmalloc(count * sizeof(unsigned int));
525         memset(unseen_messages, 0, count * sizeof(unsigned int));
526         unseen = 0;
527
528         gen_send(sock, "SEARCH UNSEEN");
529         do {
530             ok = gen_recv(sock, buf, sizeof(buf));
531             if (ok != 0)
532             {
533                 report(stderr, _("search for unseen messages failed\n"));
534                 return(PS_PROTOCOL);
535             }
536             else if ((cp = strstr(buf, "* SEARCH")))
537             {
538                 char    *ep;
539
540                 cp += 8;        /* skip "* SEARCH" */
541
542                 while (*cp && unseen < count)
543                 {
544                     /* skip whitespace */
545                     while (*cp && isspace(*cp))
546                         cp++;
547                     if (*cp) 
548                     {
549                         /*
550                          * Message numbers are between 1 and 2^32 inclusive,
551                          * so unsigned int is large enough.
552                          */
553                         unseen_messages[unseen]=(unsigned int)strtol(cp,&ep,10);
554
555                         if (outlevel >= O_DEBUG)
556                             report(stdout, 
557                                    _("%u is unseen\n"), 
558                                    unseen_messages[unseen]);
559                 
560                         unseen++;
561                         cp = ep;
562                     }
563                 }
564             }
565         } while
566             (tag[0] != '\0' && strncmp(buf, tag, strlen(tag)));
567     }
568
569     *newp = unseen;
570     expunged = 0;
571
572     return(PS_SUCCESS);
573 }
574
575 static int imap_getsizes(int sock, int count, int *sizes)
576 /* capture the sizes of all messages */
577 {
578     char buf [MSGBUFSIZE+1];
579
580     /*
581      * Some servers (as in, PMDF5.1-9.1 under OpenVMS 6.1)
582      * won't accept 1:1 as valid set syntax.  Some implementors
583      * should be taken out and shot for excessive anality.
584      *
585      * Microsoft Exchange (brain-dead piece of crap that it is) 
586      * sometimes gets its knickers in a knot about bodiless messages.
587      * You may see responses like this:
588      *
589      *  fetchmail: IMAP> A0004 FETCH 1:9 RFC822.SIZE
590      *  fetchmail: IMAP< * 2 FETCH (RFC822.SIZE 1187)
591      *  fetchmail: IMAP< * 3 FETCH (RFC822.SIZE 3954)
592      *  fetchmail: IMAP< * 4 FETCH (RFC822.SIZE 1944)
593      *  fetchmail: IMAP< * 5 FETCH (RFC822.SIZE 2933)
594      *  fetchmail: IMAP< * 6 FETCH (RFC822.SIZE 1854)
595      *  fetchmail: IMAP< * 7 FETCH (RFC822.SIZE 34054)
596      *  fetchmail: IMAP< * 8 FETCH (RFC822.SIZE 5561)
597      *  fetchmail: IMAP< * 9 FETCH (RFC822.SIZE 1101)
598      *  fetchmail: IMAP< A0004 NO The requested item could not be found.
599      *
600      * This means message 1 has only headers.  For kicks and grins
601      * you can telnet in and look:
602      *  A003 FETCH 1 FULL
603      *  A003 NO The requested item could not be found.
604      *  A004 fetch 1 rfc822.header
605      *  A004 NO The requested item could not be found.
606      *  A006 FETCH 1 BODY
607      *  * 1 FETCH (BODY ("TEXT" "PLAIN" ("CHARSET" "US-ASCII") NIL NIL "7BIT" 35 3))
608      *  A006 OK FETCH completed.
609      *
610      * To get around this, we terminate the read loop on a NO and count
611      * on the fact that the sizes array has been preinitialized with a
612      * known-bad size value.
613      */
614     if (count == 1)
615         gen_send(sock, "FETCH 1 RFC822.SIZE", count);
616     else
617         gen_send(sock, "FETCH 1:%d RFC822.SIZE", count);
618     for (;;)
619     {
620         int num, size, ok;
621
622         if ((ok = gen_recv(sock, buf, sizeof(buf))))
623             return(ok);
624         else if (strstr(buf, "OK") || strstr(buf, "NO"))
625             break;
626         else if (sscanf(buf, "* %d FETCH (RFC822.SIZE %d)", &num, &size) == 2)
627             sizes[num - 1] = size;
628     }
629
630     return(PS_SUCCESS);
631 }
632
633 static int imap_is_old(int sock, struct query *ctl, int number)
634 /* is the given message old? */
635 {
636     flag seen = TRUE;
637     int i;
638
639     /* 
640      * Expunges change the fetch numbers, but unseen_messages contains
641      * indices from before any expungees were done.  So neither the
642      * argument nor the values in message_sequence need to be decremented.
643      */
644
645     seen = TRUE;
646     for (i = 0; i < unseen; i++)
647         if (unseen_messages[i] == number)
648         {
649             seen = FALSE;
650             break;
651         }
652
653     return(seen);
654 }
655
656 static int imap_fetch_headers(int sock, struct query *ctl,int number,int *lenp)
657 /* request headers of nth message */
658 {
659     char buf [MSGBUFSIZE+1];
660     int num;
661
662     /* expunges change the fetch numbers */
663     number -= expunged;
664
665     /*
666      * This is blessed by RFC1176, RFC1730, RFC2060.
667      * According to the RFCs, it should *not* set the \Seen flag.
668      */
669     gen_send(sock, "FETCH %d RFC822.HEADER", number);
670
671     /* looking for FETCH response */
672     do {
673         int     ok;
674
675         if ((ok = gen_recv(sock, buf, sizeof(buf))))
676             return(ok);
677     } while
678         (sscanf(buf+2, "%d FETCH (%*s {%d}", &num, lenp) != 2);
679
680     if (num != number)
681         return(PS_ERROR);
682     else
683         return(PS_SUCCESS);
684 }
685
686 static int imap_fetch_body(int sock, struct query *ctl, int number, int *lenp)
687 /* request body of nth message */
688 {
689     char buf [MSGBUFSIZE+1], *cp;
690     int num;
691
692     /* expunges change the fetch numbers */
693     number -= expunged;
694
695     /*
696      * If we're using IMAP4, we can fetch the message without setting its
697      * seen flag.  This is good!  It means that if the protocol exchange
698      * craps out during the message, it will still be marked `unseen' on
699      * the server.
700      *
701      * However...*don't* do this if we're using keep to suppress deletion!
702      * In that case, marking the seen flag is the only way to prevent the
703      * message from being re-fetched on subsequent runs (and according
704      * to RFC2060 p.43 this fetch should set Seen as a side effect).
705      *
706      * According to RFC2060, and Mark Crispin the IMAP maintainer,
707      * FETCH %d BODY[TEXT] and RFC822.TEXT are "functionally 
708      * equivalent".  However, we know of at least one server that
709      * treats them differently in the presence of MIME attachments;
710      * the latter form downloads the attachment, the former does not.
711      * The server is InterChange, and the fool who implemented this
712      * misfeature ought to be strung up by his thumbs.  
713      *
714      * When I tried working around this by disabling use of the 4rev1 form,
715      * I found that doing this breaks operation with M$ Exchange.
716      * Annoyingly enough, Exchange's refusal to cope is technically legal
717      * under RFC2062.  Trust Microsoft, the Great Enemy of interoperability
718      * standards, to find a way to make standards compliance irritating....
719      */
720     switch (imap_version)
721     {
722     case IMAP4rev1:     /* RFC 2060 */
723         if (!ctl->keep)
724             gen_send(sock, "FETCH %d BODY.PEEK[TEXT]", number);
725         else
726             gen_send(sock, "FETCH %d BODY[TEXT]", number);
727         break;
728
729     case IMAP4:         /* RFC 1730 */
730         if (!ctl->keep)
731             gen_send(sock, "FETCH %d RFC822.TEXT.PEEK", number);
732         else
733             gen_send(sock, "FETCH %d RFC822.TEXT", number);
734         break;
735
736     default:            /* RFC 1176 */
737         gen_send(sock, "FETCH %d RFC822.TEXT", number);
738         break;
739     }
740
741     /* looking for FETCH response */
742     do {
743         int     ok;
744
745         if ((ok = gen_recv(sock, buf, sizeof(buf))))
746             return(ok);
747     } while
748         (!strstr(buf+4, "FETCH") || sscanf(buf+2, "%d", &num) != 1);
749
750     if (num != number)
751         return(PS_ERROR);
752
753     /*
754      * Try to extract a length from the FETCH response.  RFC2060 requires
755      * it to be present, but at least one IMAP server (Novell GroupWise)
756      * botches this.
757      */
758     if ((cp = strchr(buf, '{')))
759         *lenp = atoi(cp + 1);
760     else
761         *lenp = -1;     /* missing length part in FETCH reponse */
762
763     return(PS_SUCCESS);
764 }
765
766 static int imap_trail(int sock, struct query *ctl, int number)
767 /* discard tail of FETCH response after reading message text */
768 {
769     /* expunges change the fetch numbers */
770     /* number -= expunged; */
771
772     for (;;)
773     {
774         char buf[MSGBUFSIZE+1];
775         int ok;
776
777         if ((ok = gen_recv(sock, buf, sizeof(buf))))
778             return(ok);
779
780         /* UW IMAP returns "OK FETCH", Cyrus returns "OK Completed" */
781         if (strstr(buf, "OK"))
782             break;
783
784 #ifdef __UNUSED__
785         /*
786          * Any IMAP server that fails to set Seen on a BODY[TEXT]
787          * fetch violates RFC2060 p.43 (top).  This becomes an issue
788          * when keep is on, because seen messages aren't deleted and
789          * get refetched on each poll.  As a workaround, if keep is on
790          * we can set the Seen flag explicitly.
791          *
792          * This code isn't used yet because we don't know of any IMAP
793          * servers broken in this way.
794          */
795         if (ctl->keep)
796             if ((ok = gen_transact(sock,
797                         imap_version == IMAP4 
798                                 ? "STORE %d +FLAGS.SILENT (\\Seen)"
799                                 : "STORE %d +FLAGS (\\Seen)", 
800                         number)))
801                 return(ok);
802 #endif /* __UNUSED__ */
803     }
804
805     return(PS_SUCCESS);
806 }
807
808 static int imap_delete(int sock, struct query *ctl, int number)
809 /* set delete flag for given message */
810 {
811     int ok;
812
813     /* expunges change the fetch numbers */
814     number -= expunged;
815
816     /*
817      * Use SILENT if possible as a minor throughput optimization.
818      * Note: this has been dropped from IMAP4rev1.
819      *
820      * We set Seen because there are some IMAP servers (notably HP
821      * OpenMail) that do message-receipt DSNs, but only when the seen
822      * bit is set.  This is the appropriate time -- we get here right
823      * after the local SMTP response that says delivery was
824      * successful.
825      */
826     if ((ok = gen_transact(sock,
827                         imap_version == IMAP4 
828                                 ? "STORE %d +FLAGS.SILENT (\\Seen \\Deleted)"
829                                 : "STORE %d +FLAGS (\\Seen \\Deleted)", 
830                         number)))
831         return(ok);
832     else
833         deletions++;
834
835     /*
836      * We do an expunge after expunge_period messages, rather than
837      * just before quit, so that a line hit during a long session
838      * won't result in lots of messages being fetched again during
839      * the next session.
840      */
841     if (NUM_NONZERO(expunge_period) && (deletions % expunge_period) == 0)
842         internal_expunge(sock);
843
844     return(PS_SUCCESS);
845 }
846
847 static int imap_logout(int sock, struct query *ctl)
848 /* send logout command */
849 {
850     /* if any un-expunged deletions remain, ship an expunge now */
851     if (deletions)
852         internal_expunge(sock);
853
854 #ifdef USE_SEARCH
855     /* Memory clean-up */
856     if (unseen_messages)
857         free(unseen_messages);
858 #endif /* USE_SEARCH */
859
860     return(gen_transact(sock, "LOGOUT"));
861 }
862
863 const static struct method imap =
864 {
865     "IMAP",             /* Internet Message Access Protocol */
866 #if INET6_ENABLE
867     "imap",
868     "imaps",
869 #else /* INET6_ENABLE */
870     143,                /* standard IMAP2bis/IMAP4 port */
871     993,                /* ssl IMAP2bis/IMAP4 port */
872 #endif /* INET6_ENABLE */
873     TRUE,               /* this is a tagged protocol */
874     FALSE,              /* no message delimiter */
875     imap_ok,            /* parse command response */
876     imap_getauth,       /* get authorization */
877     imap_getrange,      /* query range of messages */
878     imap_getsizes,      /* get sizes of messages (used for ESMTP SIZE option) */
879     imap_is_old,        /* no UID check */
880     imap_fetch_headers, /* request given message headers */
881     imap_fetch_body,    /* request given message body */
882     imap_trail,         /* eat message trailer */
883     imap_delete,        /* delete the message */
884     imap_logout,        /* expunge and exit */
885     TRUE,               /* yes, we can re-poll */
886 };
887
888 int doIMAP(struct query *ctl)
889 /* retrieve messages using IMAP Version 2bis or Version 4 */
890 {
891     return(do_protocol(ctl, &imap));
892 }
893
894 /* imap.c ends here */