* move policy.c into modules/expire/expire_policy.c, since it just controls this.
[citadel.git] / citadel / modules / imap / imap_fetch.c
1 /*
2  * $Id$
3  *
4  * Implements the FETCH command in IMAP.
5  * This is a good example of the protocol's gratuitous complexity.
6  *
7  * Copyright (c) 2001-2009 by the citadel.org team
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 3 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24
25 #include "sysdep.h"
26 #include <stdlib.h>
27 #include <unistd.h>
28 #include <stdio.h>
29 #include <fcntl.h>
30 #include <signal.h>
31 #include <pwd.h>
32 #include <errno.h>
33 #include <sys/types.h>
34
35 #if TIME_WITH_SYS_TIME
36 # include <sys/time.h>
37 # include <time.h>
38 #else
39 # if HAVE_SYS_TIME_H
40 #  include <sys/time.h>
41 # else
42 #  include <time.h>
43 # endif
44 #endif
45
46 #include <sys/wait.h>
47 #include <ctype.h>
48 #include <string.h>
49 #include <limits.h>
50 #include <libcitadel.h>
51 #include "citadel.h"
52 #include "server.h"
53 #include "sysdep_decls.h"
54 #include "citserver.h"
55 #include "support.h"
56 #include "config.h"
57 #include "user_ops.h"
58 #include "database.h"
59 #include "msgbase.h"
60 #include "internet_addressing.h"
61 #include "imap_tools.h"
62 #include "serv_imap.h"
63 #include "imap_fetch.h"
64 #include "genstamp.h"
65 #include "ctdl_module.h"
66
67
68
69 /*
70  * Individual field functions for imap_do_fetch_msg() ...
71  */
72
73 void imap_fetch_uid(int seq) {
74         cprintf("UID %ld", IMAP->msgids[seq-1]);
75 }
76
77 void imap_fetch_flags(int seq) {
78         int num_flags_printed = 0;
79         cprintf("FLAGS (");
80         if (IMAP->flags[seq] & IMAP_DELETED) {
81                 if (num_flags_printed > 0) cprintf(" ");
82                 cprintf("\\Deleted");
83                 ++num_flags_printed;
84         }
85         if (IMAP->flags[seq] & IMAP_SEEN) {
86                 if (num_flags_printed > 0) cprintf(" ");
87                 cprintf("\\Seen");
88                 ++num_flags_printed;
89         }
90         if (IMAP->flags[seq] & IMAP_ANSWERED) {
91                 if (num_flags_printed > 0) cprintf(" ");
92                 cprintf("\\Answered");
93                 ++num_flags_printed;
94         }
95         if (IMAP->flags[seq] & IMAP_RECENT) {
96                 if (num_flags_printed > 0) cprintf(" ");
97                 cprintf("\\Recent");
98                 ++num_flags_printed;
99         }
100         cprintf(")");
101 }
102
103
104 void imap_fetch_internaldate(struct CtdlMessage *msg) {
105         char datebuf[64];
106         time_t msgdate;
107
108         if (!msg) return;
109         if (msg->cm_fields['T'] != NULL) {
110                 msgdate = atol(msg->cm_fields['T']);
111         }
112         else {
113                 msgdate = time(NULL);
114         }
115
116         datestring(datebuf, sizeof datebuf, msgdate, DATESTRING_IMAP);
117         cprintf("INTERNALDATE \"%s\"", datebuf);
118 }
119
120
121 /*
122  * Fetch RFC822-formatted messages.
123  *
124  * 'whichfmt' should be set to one of:
125  *      "RFC822"        entire message
126  *      "RFC822.HEADER" headers only (with trailing blank line)
127  *      "RFC822.SIZE"   size of translated message
128  *      "RFC822.TEXT"   body only (without leading blank line)
129  */
130 void imap_fetch_rfc822(long msgnum, const char *whichfmt) {
131         const char *ptr = NULL;
132         size_t headers_size, text_size, total_size;
133         size_t bytes_to_send = 0;
134         struct MetaData smi;
135         int need_to_rewrite_metadata = 0;
136         int need_body = 0;
137         CitContext *CCC = CC;
138
139         /* Determine whether this particular fetch operation requires
140          * us to fetch the message body from disk.  If not, we can save
141          * on some disk operations...
142          */
143         if ( (!strcasecmp(whichfmt, "RFC822"))
144            || (!strcasecmp(whichfmt, "RFC822.TEXT")) ) {
145                 need_body = 1;
146         }
147
148         /* If this is an RFC822.SIZE fetch, first look in the message's
149          * metadata record to see if we've saved that information.
150          */
151         if (!strcasecmp(whichfmt, "RFC822.SIZE")) {
152                 GetMetaData(&smi, msgnum);
153                 if (smi.meta_rfc822_length > 0L) {
154                         cprintf("RFC822.SIZE %ld", smi.meta_rfc822_length);
155                         return;
156                 }
157                 need_to_rewrite_metadata = 1;
158                 need_body = 1;
159         }
160         
161         /* Cache the most recent RFC822 FETCH because some clients like to
162          * fetch in pieces, and we don't want to have to go back to the
163          * message store for each piece.  We also burn the cache if the
164          * client requests something that involves reading the message
165          * body, but we haven't fetched the body yet.
166          */
167         if ((IMAP->cached_rfc822 != NULL)
168            && (IMAP->cached_rfc822_msgnum == msgnum)
169            && (IMAP->cached_rfc822_withbody || (!need_body)) ) {
170                 /* Good to go! */
171         }
172         else if (IMAP->cached_rfc822 != NULL) {
173                 /* Some other message is cached -- free it */
174                 FreeStrBuf(&IMAP->cached_rfc822);
175                 IMAP->cached_rfc822_msgnum = (-1);
176         }
177
178         /* At this point, we now can fetch and convert the message iff it's not
179          * the one we had cached.
180          */
181         if (IMAP->cached_rfc822 == NULL) {
182                 /*
183                  * Load the message into memory for translation & measurement
184                  */
185                 CCC->redirect_buffer = NewStrBufPlain(NULL, SIZ);
186                 CtdlOutputMsg(msgnum, MT_RFC822,
187                         (need_body ? HEADERS_ALL : HEADERS_FAST),
188                         0, 1, NULL, SUPPRESS_ENV_TO
189                 );
190                 if (!need_body) cprintf("\r\n");        /* extra trailing newline */
191                 IMAP->cached_rfc822 = CCC->redirect_buffer;
192                 CCC->redirect_buffer = NULL;
193                 IMAP->cached_rfc822_msgnum = msgnum;
194                 IMAP->cached_rfc822_withbody = need_body;
195                 if ( (need_to_rewrite_metadata) && 
196                      (StrLength(IMAP->cached_rfc822) > 0) ) {
197                         smi.meta_rfc822_length = StrLength(IMAP->cached_rfc822);
198                         PutMetaData(&smi);
199                 }
200         }
201
202         /*
203          * Now figure out where the headers/text break is.  IMAP considers the
204          * intervening blank line to be part of the headers, not the text.
205          */
206         headers_size = 0;
207         text_size = 0;
208         total_size = 0;
209
210         if (need_body) {
211                 StrBuf *Line = NewStrBuf();
212                 ptr = NULL;
213                 do {
214                         StrBufSipLine(Line, IMAP->cached_rfc822, &ptr);
215
216                         if ((StrLength(Line) != 0)  && (ptr != StrBufNOTNULL))
217                         {
218                                 StrBufTrim(Line);
219                                 if ((StrLength(Line) != 0) && 
220                                     (ptr != StrBufNOTNULL)    )
221                                 {
222                                         headers_size = ptr - ChrPtr(IMAP->cached_rfc822);
223                                 }
224                         }
225                 } while ( (headers_size == 0)    && 
226                           (ptr != StrBufNOTNULL) );
227
228                 total_size = StrLength(IMAP->cached_rfc822);
229                 text_size = total_size - headers_size;
230                 FreeStrBuf(&Line);
231         }
232         else {
233                 headers_size = 
234                         total_size = StrLength(IMAP->cached_rfc822);
235                 text_size = 0;
236         }
237
238         CtdlLogPrintf(CTDL_DEBUG, 
239                 "RFC822: headers=" SIZE_T_FMT 
240                 ", text=" SIZE_T_FMT
241                 ", total=" SIZE_T_FMT "\n",
242                 headers_size, text_size, total_size);
243
244         if (!strcasecmp(whichfmt, "RFC822.SIZE")) {
245                 cprintf("RFC822.SIZE " SIZE_T_FMT, total_size);
246                 return;
247         }
248
249         else if (!strcasecmp(whichfmt, "RFC822")) {
250                 ptr = ChrPtr(IMAP->cached_rfc822);
251                 bytes_to_send = total_size;
252         }
253
254         else if (!strcasecmp(whichfmt, "RFC822.HEADER")) {
255                 ptr = ChrPtr(IMAP->cached_rfc822);
256                 bytes_to_send = headers_size;
257         }
258
259         else if (!strcasecmp(whichfmt, "RFC822.TEXT")) {
260                 ptr = &ChrPtr(IMAP->cached_rfc822)[headers_size];
261                 bytes_to_send = text_size;
262         }
263
264         cprintf("%s {" SIZE_T_FMT "}\r\n", whichfmt, bytes_to_send);
265         client_write(ptr, bytes_to_send);
266 }
267
268
269
270 /*
271  * Load a specific part of a message into the temp file to be output to a
272  * client.  FIXME we can handle parts like "2" and "2.1" and even "2.MIME"
273  * but we still can't handle "2.HEADER" (which might not be a problem).
274  *
275  * Note: mime_parser() was called with dont_decode set to 1, so we have the
276  * luxury of simply spewing without having to re-encode.
277  */
278 void imap_load_part(char *name, char *filename, char *partnum, char *disp,
279                     void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
280                     char *cbid, void *cbuserdata)
281 {
282         char mimebuf2[SIZ];
283         char *desired_section;
284
285         desired_section = (char *)cbuserdata;
286
287         if (!strcasecmp(partnum, desired_section)) {
288                 client_write(content, length);
289         }
290
291         snprintf(mimebuf2, sizeof mimebuf2, "%s.MIME", partnum);
292
293         if (!strcasecmp(desired_section, mimebuf2)) {
294                 cprintf("Content-type: %s", cbtype);
295                 if (!IsEmptyStr(cbcharset))
296                         cprintf("; charset=\"%s\"", cbcharset);
297                 if (!IsEmptyStr(name))
298                         cprintf("; name=\"%s\"", name);
299                 cprintf("\r\n");
300                 if (!IsEmptyStr(encoding))
301                         cprintf("Content-Transfer-Encoding: %s\r\n", encoding);
302                 if (!IsEmptyStr(encoding)) {
303                         cprintf("Content-Disposition: %s", disp);
304                         if (!IsEmptyStr(filename)) {
305                                 cprintf("; filename=\"%s\"", filename);
306                         }
307                         cprintf("\r\n");
308                 }
309                 cprintf("Content-Length: %ld\r\n", (long)length);
310                 cprintf("\r\n");
311         }
312                         
313
314 }
315
316
317 /* 
318  * Called by imap_fetch_envelope() to output the "From" field.
319  * This is in its own function because its logic is kind of complex.  We
320  * really need to make this suck less.
321  */
322 void imap_output_envelope_from(struct CtdlMessage *msg) {
323         char user[SIZ], node[SIZ], name[SIZ];
324
325         if (!msg) return;
326
327         /* For anonymous messages, it's so easy! */
328         if (!is_room_aide() && (msg->cm_anon_type == MES_ANONONLY)) {
329                 cprintf("((\"----\" NIL \"x\" \"x.org\")) ");
330                 return;
331         }
332         if (!is_room_aide() && (msg->cm_anon_type == MES_ANONOPT)) {
333                 cprintf("((\"anonymous\" NIL \"x\" \"x.org\")) ");
334                 return;
335         }
336
337         /* For everything else, we do stuff. */
338         cprintf("((");                          /* open double-parens */
339         plain_imap_strout(msg->cm_fields['A']); /* personal name */
340         cprintf(" NIL ");                       /* source route (not used) */
341
342
343         if (msg->cm_fields['F'] != NULL) {
344                 process_rfc822_addr(msg->cm_fields['F'], user, node, name);
345                 plain_imap_strout(user);                /* mailbox name (user id) */
346                 cprintf(" ");
347                 if (!strcasecmp(node, config.c_nodename)) {
348                         plain_imap_strout(config.c_fqdn);
349                 }
350                 else {
351                         plain_imap_strout(node);                /* host name */
352                 }
353         }
354         else {
355                 plain_imap_strout(msg->cm_fields['A']); /* mailbox name (user id) */
356                 cprintf(" ");
357                 plain_imap_strout(msg->cm_fields['N']); /* host name */
358         }
359         
360         cprintf(")) ");                         /* close double-parens */
361 }
362
363
364
365 /*
366  * Output an envelope address (or set of addresses) in the official,
367  * convoluted, braindead format.  (Note that we can't use this for
368  * the "From" address because its data may come from a number of different
369  * fields.  But we can use it for "To" and possibly others.
370  */
371 void imap_output_envelope_addr(char *addr) {
372         char individual_addr[256];
373         int num_addrs;
374         int i;
375         char user[256];
376         char node[256];
377         char name[256];
378
379         if (addr == NULL) {
380                 cprintf("NIL ");
381                 return;
382         }
383
384         if (IsEmptyStr(addr)) {
385                 cprintf("NIL ");
386                 return;
387         }
388
389         cprintf("(");
390
391         /* How many addresses are listed here? */
392         num_addrs = num_tokens(addr, ',');
393
394         /* Output them one by one. */
395         for (i=0; i<num_addrs; ++i) {
396                 extract_token(individual_addr, addr, i, ',', sizeof individual_addr);
397                 striplt(individual_addr);
398                 process_rfc822_addr(individual_addr, user, node, name);
399                 cprintf("(");
400                 plain_imap_strout(name);
401                 cprintf(" NIL ");
402                 plain_imap_strout(user);
403                 cprintf(" ");
404                 plain_imap_strout(node);
405                 cprintf(")");
406                 if (i < (num_addrs-1)) cprintf(" ");
407         }
408
409         cprintf(") ");
410 }
411
412
413 /*
414  * Implements the ENVELOPE fetch item
415  * 
416  * Note that the imap_strout() function can cleverly output NULL fields as NIL,
417  * so we don't have to check for that condition like we do elsewhere.
418  */
419 void imap_fetch_envelope(struct CtdlMessage *msg) {
420         char datestringbuf[SIZ];
421         time_t msgdate;
422         char *fieldptr = NULL;
423
424         if (!msg) return;
425
426         /* Parse the message date into an IMAP-format date string */
427         if (msg->cm_fields['T'] != NULL) {
428                 msgdate = atol(msg->cm_fields['T']);
429         }
430         else {
431                 msgdate = time(NULL);
432         }
433         datestring(datestringbuf, sizeof datestringbuf,
434                 msgdate, DATESTRING_IMAP);
435
436         /* Now start spewing data fields.  The order is important, as it is
437          * defined by the protocol specification.  Nonexistent fields must
438          * be output as NIL, existent fields must be quoted or literalled.
439          * The imap_strout() function conveniently does all this for us.
440          */
441         cprintf("ENVELOPE (");
442
443         /* Date */
444         plain_imap_strout(datestringbuf);
445         cprintf(" ");
446
447         /* Subject */
448         plain_imap_strout(msg->cm_fields['U']);
449         cprintf(" ");
450
451         /* From */
452         imap_output_envelope_from(msg);
453
454         /* Sender (default to same as 'From' if not present) */
455         fieldptr = rfc822_fetch_field(msg->cm_fields['M'], "Sender");
456         if (fieldptr != NULL) {
457                 imap_output_envelope_addr(fieldptr);
458                 free(fieldptr);
459         }
460         else {
461                 imap_output_envelope_from(msg);
462         }
463
464         /* Reply-to */
465         fieldptr = rfc822_fetch_field(msg->cm_fields['M'], "Reply-to");
466         if (fieldptr != NULL) {
467                 imap_output_envelope_addr(fieldptr);
468                 free(fieldptr);
469         }
470         else {
471                 imap_output_envelope_from(msg);
472         }
473
474         /* To */
475         imap_output_envelope_addr(msg->cm_fields['R']);
476
477         /* Cc (we do it this way because there might be a legacy non-Citadel Cc: field present) */
478         fieldptr = msg->cm_fields['Y'];
479         if (fieldptr != NULL) {
480                 imap_output_envelope_addr(fieldptr);
481         }
482         else {
483                 fieldptr = rfc822_fetch_field(msg->cm_fields['M'], "Cc");
484                 imap_output_envelope_addr(fieldptr);
485                 if (fieldptr != NULL) free(fieldptr);
486         }
487
488         /* Bcc */
489         fieldptr = rfc822_fetch_field(msg->cm_fields['M'], "Bcc");
490         imap_output_envelope_addr(fieldptr);
491         if (fieldptr != NULL) free(fieldptr);
492
493         /* In-reply-to */
494         fieldptr = rfc822_fetch_field(msg->cm_fields['M'], "In-reply-to");
495         plain_imap_strout(fieldptr);
496         cprintf(" ");
497         if (fieldptr != NULL) free(fieldptr);
498
499         /* message ID */
500         plain_imap_strout(msg->cm_fields['I']);
501
502         cprintf(")");
503 }
504
505 /*
506  * This function is called only when CC->redirect_buffer contains a set of
507  * RFC822 headers with no body attached.  Its job is to strip that set of
508  * headers down to *only* the ones we're interested in.
509  */
510 void imap_strip_headers(StrBuf *section) {
511         citimap_command Cmd;
512         StrBuf *which_fields = NULL;
513         int doing_headers = 0;
514         int headers_not = 0;
515         int num_parms = 0;
516         int i;
517         StrBuf *boiled_headers = NULL;
518         StrBuf *Line;
519         int ok = 0;
520         int done_headers = 0;
521         const char *Ptr = NULL;
522         CitContext *CCC = CC;
523
524         if (CCC->redirect_buffer == NULL) return;
525
526         which_fields = NewStrBufDup(section);
527
528         if (!strncasecmp(ChrPtr(which_fields), "HEADER.FIELDS", 13))
529                 doing_headers = 1;
530         if (doing_headers && 
531             !strncasecmp(ChrPtr(which_fields), "HEADER.FIELDS.NOT", 17))
532                 headers_not = 1;
533
534         for (i=0; i < StrLength(which_fields); ++i) {
535                 if (ChrPtr(which_fields)[i]=='(')
536                         StrBufReplaceToken(which_fields, i, 1, HKEY(""));
537         }
538         for (i=0; i < StrLength(which_fields); ++i) {
539                 if (ChrPtr(which_fields)[i]==')') {
540                         StrBufCutAt(which_fields, i, NULL);
541                         break;
542                 }
543         }
544         memset(&Cmd, 0, sizeof(citimap_command));
545         Cmd.CmdBuf = which_fields;
546         num_parms = imap_parameterize(&Cmd);
547
548         boiled_headers = NewStrBufPlain(NULL, StrLength(CCC->redirect_buffer));
549         Line = NewStrBufPlain(NULL, SIZ);
550         Ptr = NULL;
551         ok = 0;
552         do {
553                 StrBufSipLine(Line, CCC->redirect_buffer, &Ptr);
554
555                 if (!isspace(ChrPtr(Line)[0])) {
556                         ok = 0;
557                         if (doing_headers == 0) ok = 1;
558                         else {
559                                 /* we're supposed to print all headers that are not matching the filter list */
560                                 if (headers_not) for (i=0, ok = 1; (i < num_parms) && (ok == 1); ++i) {
561                                                 if ( (!strncasecmp(ChrPtr(Line), 
562                                                                    Cmd.Params[i].Key,
563                                                                    Cmd.Params[i].len)) &&
564                                                      (ChrPtr(Line)[Cmd.Params[i].len]==':') ) {
565                                                         ok = 0;
566                                                 }
567                                 }
568                                 /* we're supposed to print all headers matching the filterlist */
569                                 else for (i=0, ok = 0; ((i < num_parms) && (ok == 0)); ++i) {
570                                                 if ( (!strncasecmp(ChrPtr(Line), 
571                                                                    Cmd.Params[i].Key,
572                                                                    Cmd.Params[i].len)) &&
573                                                      (ChrPtr(Line)[Cmd.Params[i].len]==':') ) {
574                                                         ok = 1;
575                                         }
576                                 }
577                         }
578                 }
579
580                 if (ok) {
581                         StrBufAppendBuf(boiled_headers, Line, 0);
582                         StrBufAppendBufPlain(boiled_headers, HKEY("\r\n"), 0);
583                 }
584
585                 if ((Ptr == StrBufNOTNULL)  ||
586                     (StrLength(Line) == 0)  ||
587                     (ChrPtr(Line)[0]=='\r') ||
588                     (ChrPtr(Line)[0]=='\n')   ) done_headers = 1;
589         } while (!done_headers);
590
591         StrBufAppendBufPlain(boiled_headers, HKEY("\r\n"), 0);
592
593         /* Now save it back (it'll always be smaller) */
594         FreeStrBuf(&CCC->redirect_buffer);
595         CCC->redirect_buffer = boiled_headers;
596
597         free(Cmd.Params);
598         FreeStrBuf(&which_fields);
599         FreeStrBuf(&Line);
600 }
601
602
603 /*
604  * Implements the BODY and BODY.PEEK fetch items
605  */
606 void imap_fetch_body(long msgnum, ConstStr item, int is_peek) {
607         struct CtdlMessage *msg = NULL;
608         StrBuf *section;
609         StrBuf *partial;
610         int is_partial = 0;
611         size_t pstart, pbytes;
612         int loading_body_now = 0;
613         int need_body = 1;
614         int burn_the_cache = 0;
615         CitContext *CCC = CC;
616
617         /* extract section */
618         section = NewStrBufPlain(CKEY(item));
619         
620         if (strchr(ChrPtr(section), '[') != NULL) {
621                 StrBufStripAllBut(section, '[', ']');
622         }
623         CtdlLogPrintf(CTDL_DEBUG, "Section is: %s%s\n", 
624                       ChrPtr(section), 
625                       (StrLength(section) == 0) ? "(empty)" : ""
626         );
627
628         /* Burn the cache if we don't have the same section of the 
629          * same message again.
630          */
631         if (IMAP->cached_body != NULL) {
632                 if (IMAP->cached_bodymsgnum != msgnum) {
633                         burn_the_cache = 1;
634                 }
635                 else if ( (!IMAP->cached_body_withbody) && (need_body) ) {
636                         burn_the_cache = 1;
637                 }
638                 else if (strcasecmp(IMAP->cached_bodypart, ChrPtr(section))) {
639                         burn_the_cache = 1;
640                 }
641                 if (burn_the_cache) {
642                         /* Yup, go ahead and burn the cache. */
643                         free(IMAP->cached_body);
644                         IMAP->cached_body_len = 0;
645                         IMAP->cached_body = NULL;
646                         IMAP->cached_bodymsgnum = (-1);
647                         strcpy(IMAP->cached_bodypart, "");
648                 }
649         }
650
651         /* extract partial */
652         partial = NewStrBufPlain(CKEY(item));
653         if (strchr(ChrPtr(partial), '<') != NULL) {
654                 StrBufStripAllBut(partial, '<', '>');
655                 is_partial = 1;
656         }
657         if (is_partial == 0) 
658                 if (StrLength(partial) > 0) 
659                         CtdlLogPrintf(CTDL_DEBUG, 
660                                       "Partial is %s\n", 
661                                       ChrPtr(partial));
662
663         if (IMAP->cached_body == NULL) {
664                 CCC->redirect_buffer = NewStrBufPlain(NULL, SIZ);
665                 loading_body_now = 1;
666                 msg = CtdlFetchMessage(msgnum, (need_body ? 1 : 0));
667         }
668
669         /* Now figure out what the client wants, and get it */
670
671         if (!loading_body_now) {
672                 /* What we want is already in memory */
673         }
674
675         else if ( (!strcmp(ChrPtr(section), "1")) && (msg->cm_format_type != 4) ) {
676                 CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_NONE, 0, 1, SUPPRESS_ENV_TO);
677         }
678
679         else if (StrLength(section) == 0) {
680                 CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_ALL, 0, 1, SUPPRESS_ENV_TO);
681         }
682
683         /*
684          * If the client asked for just headers, or just particular header
685          * fields, strip it down.
686          */
687         else if (!strncasecmp(ChrPtr(section), "HEADER", 6)) {
688                 /* This used to work with HEADERS_FAST, but then Apple got stupid with their
689                  * IMAP library and this broke Mail.App and iPhone Mail, so we had to change it
690                  * to HEADERS_ONLY so the trendy hipsters with their iPhones can read mail.
691                  */
692                 CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_ONLY, 0, 1, SUPPRESS_ENV_TO);
693                 imap_strip_headers(section);
694         }
695
696         /*
697          * Strip it down if the client asked for everything _except_ headers.
698          */
699         else if (!strncasecmp(ChrPtr(section), "TEXT", 4)) {
700                 CtdlOutputPreLoadedMsg(msg, MT_RFC822, HEADERS_NONE, 0, 1, SUPPRESS_ENV_TO);
701         }
702
703         /*
704          * Anything else must be a part specifier.
705          * (Note value of 1 passed as 'dont_decode' so client gets it encoded)
706          */
707         else {
708                 mime_parser(msg->cm_fields['M'], NULL,
709                                 *imap_load_part, NULL, NULL,
710                                 section,
711                                 1);
712         }
713
714         if (loading_body_now) {
715                 IMAP->cached_body_len = StrLength(CCC->redirect_buffer);
716                 IMAP->cached_body = SmashStrBuf(&CCC->redirect_buffer);
717                 IMAP->cached_bodymsgnum = msgnum;
718                 IMAP->cached_body_withbody = need_body;
719                 strcpy(IMAP->cached_bodypart, ChrPtr(section));
720         }
721
722         if (is_partial == 0) {
723                 cprintf("BODY[%s] {" SIZE_T_FMT "}\r\n", ChrPtr(section), IMAP->cached_body_len);
724                 pstart = 0;
725                 pbytes = IMAP->cached_body_len;
726         }
727         else {
728                 sscanf(ChrPtr(partial), SIZE_T_FMT "." SIZE_T_FMT, &pstart, &pbytes);
729                 if (pbytes > (IMAP->cached_body_len - pstart)) {
730                         pbytes = IMAP->cached_body_len - pstart;
731                 }
732                 cprintf("BODY[%s]<" SIZE_T_FMT "> {" SIZE_T_FMT "}\r\n", ChrPtr(section), pstart, pbytes);
733         }
734
735         FreeStrBuf(&partial);
736
737         /* Here we go -- output it */
738         client_write(&IMAP->cached_body[pstart], pbytes);
739
740         if (msg != NULL) {
741                 CtdlFreeMessage(msg);
742         }
743
744         /* Mark this message as "seen" *unless* this is a "peek" operation */
745         if (is_peek == 0) {
746                 CtdlSetSeen(&msgnum, 1, 1, ctdlsetseen_seen, NULL, NULL);
747         }
748         FreeStrBuf(&section);
749 }
750
751 /*
752  * Called immediately before outputting a multipart bodystructure
753  */
754 void imap_fetch_bodystructure_pre(
755                 char *name, char *filename, char *partnum, char *disp,
756                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
757                 char *cbid, void *cbuserdata
758                 ) {
759
760         cprintf("(");
761 }
762
763
764
765 /*
766  * Called immediately after outputting a multipart bodystructure
767  */
768 void imap_fetch_bodystructure_post(
769                 char *name, char *filename, char *partnum, char *disp,
770                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
771                 char *cbid, void *cbuserdata
772                 ) {
773
774         char subtype[128];
775
776         cprintf(" ");
777
778         /* disposition */
779         extract_token(subtype, cbtype, 1, '/', sizeof subtype);
780         plain_imap_strout(subtype);
781
782         /* body language */
783         /* cprintf(" NIL"); We thought we needed this at one point, but maybe we don't... */
784
785         cprintf(")");
786 }
787
788
789
790 /*
791  * Output the info for a MIME part in the format required by BODYSTRUCTURE.
792  *
793  */
794 void imap_fetch_bodystructure_part(
795                 char *name, char *filename, char *partnum, char *disp,
796                 void *content, char *cbtype, char *cbcharset, size_t length, char *encoding,
797                 char *cbid, void *cbuserdata
798                 ) {
799
800         int have_cbtype = 0;
801         int have_encoding = 0;
802         int lines = 0;
803         size_t i;
804         char cbmaintype[128];
805         char cbsubtype[128];
806
807         if (cbtype != NULL) if (!IsEmptyStr(cbtype)) have_cbtype = 1;
808         if (have_cbtype) {
809                 extract_token(cbmaintype, cbtype, 0, '/', sizeof cbmaintype);
810                 extract_token(cbsubtype, cbtype, 1, '/', sizeof cbsubtype);
811         }
812         else {
813                 strcpy(cbmaintype, "TEXT");
814                 strcpy(cbsubtype, "PLAIN");
815         }
816
817         cprintf("(");
818         plain_imap_strout(cbmaintype);                                  /* body type */
819         cprintf(" ");
820         plain_imap_strout(cbsubtype);                                           /* body subtype */
821         cprintf(" ");
822
823         cprintf("(");                                                   /* begin body parameter list */
824
825         /* "NAME" must appear as the first parameter.  This is not required by IMAP,
826          * but the Asterisk voicemail application blindly assumes that NAME will be in
827          * the first position.  If it isn't, it rejects the message.
828          */
829         if (name != NULL) if (!IsEmptyStr(name)) {
830                 cprintf("\"NAME\" ");
831                 plain_imap_strout(name);
832                 cprintf(" ");
833         }
834
835         cprintf("\"CHARSET\" ");
836         if (cbcharset == NULL) {
837                 plain_imap_strout("US-ASCII");
838         }
839         else if (cbcharset[0] == 0) {
840                 plain_imap_strout("US-ASCII");
841         }
842         else {
843                 plain_imap_strout(cbcharset);
844         }
845         cprintf(") ");                                                  /* end body parameter list */
846
847         cprintf("NIL ");                                                /* Body ID */
848         cprintf("NIL ");                                                /* Body description */
849
850         if (encoding != NULL) if (encoding[0] != 0)  have_encoding = 1;
851         if (have_encoding) {
852                 plain_imap_strout(encoding);
853         }
854         else {
855                 plain_imap_strout("7BIT");
856         }
857         cprintf(" ");
858
859         /* The next field is the size of the part in bytes. */
860         cprintf("%ld ", (long)length);  /* bytes */
861
862         /* The next field is the number of lines in the part, if and only
863          * if the part is TEXT.  More gratuitous complexity.
864          */
865         if (!strcasecmp(cbmaintype, "TEXT")) {
866                 if (length) for (i=0; i<length; ++i) {
867                         if (((char *)content)[i] == '\n') ++lines;
868                 }
869                 cprintf("%d ", lines);
870         }
871
872         /* More gratuitous complexity */
873         if ((!strcasecmp(cbmaintype, "MESSAGE"))
874            && (!strcasecmp(cbsubtype, "RFC822"))) {
875                 /* FIXME: message/rfc822 also needs to output the envelope structure,
876                  * body structure, and line count of the encapsulated message.  Fortunately
877                  * there are not yet any clients depending on this, so we can get away
878                  * with not implementing it for now.
879                  */
880         }
881
882         /* MD5 value of body part; we can get away with NIL'ing this */
883         cprintf("NIL ");
884
885         /* Disposition */
886         if (disp == NULL) {
887                 cprintf("NIL");
888         }
889         else if (IsEmptyStr(disp)) {
890                 cprintf("NIL");
891         }
892         else {
893                 cprintf("(");
894                 plain_imap_strout(disp);
895                 if (filename != NULL) if (!IsEmptyStr(filename)) {
896                         cprintf(" (\"FILENAME\" ");
897                         plain_imap_strout(filename);
898                         cprintf(")");
899                 }
900                 cprintf(")");
901         }
902
903         /* Body language (not defined yet) */
904         cprintf(" NIL)");
905 }
906
907
908
909 /*
910  * Spew the BODYSTRUCTURE data for a message.
911  *
912  */
913 void imap_fetch_bodystructure (long msgnum, const char *item,
914                 struct CtdlMessage *msg) {
915         const char *rfc822 = NULL;
916         const char *rfc822_body = NULL;
917         size_t rfc822_len;
918         size_t rfc822_headers_len;
919         size_t rfc822_body_len;
920         const char *ptr = NULL;
921         char *pch;
922         char buf[SIZ];
923         int lines = 0;
924
925         /* Handle NULL message gracefully */
926         if (msg == NULL) {
927                 cprintf("BODYSTRUCTURE (\"TEXT\" \"PLAIN\" "
928                         "(\"CHARSET\" \"US-ASCII\") NIL NIL "
929                         "\"7BIT\" 0 0)");
930                 return;
931         }
932
933         /* For non-RFC822 (ordinary Citadel) messages, this is short and
934          * sweet...
935          */
936         if (msg->cm_format_type != FMT_RFC822) {
937
938                 /* *sigh* We have to RFC822-format the message just to be able
939                  * to measure it.  FIXME use smi cached fields if possible
940                  */
941
942                 CC->redirect_buffer = NewStrBufPlain(NULL, SIZ);
943                 CtdlOutputPreLoadedMsg(msg, MT_RFC822, 0, 0, 1, SUPPRESS_ENV_TO);
944                 rfc822_len = StrLength(CC->redirect_buffer);
945                 rfc822 = pch = SmashStrBuf(&CC->redirect_buffer);
946
947                 ptr = rfc822;
948                 do {
949                         ptr = memreadline(ptr, buf, sizeof buf);
950                         ++lines;
951                         if ((IsEmptyStr(buf)) && (rfc822_body == NULL)) {
952                                 rfc822_body = ptr;
953                         }
954                 } while (*ptr != 0);
955
956                 rfc822_headers_len = rfc822_body - rfc822;
957                 rfc822_body_len = rfc822_len - rfc822_headers_len;
958                 free(pch);
959
960                 cprintf("BODYSTRUCTURE (\"TEXT\" \"PLAIN\" "
961                         "(\"CHARSET\" \"US-ASCII\") NIL NIL "
962                         "\"7BIT\" " SIZE_T_FMT " %d)", rfc822_body_len, lines);
963
964                 return;
965         }
966
967         /* For messages already stored in RFC822 format, we have to parse. */
968         cprintf("BODYSTRUCTURE ");
969         mime_parser(msg->cm_fields['M'],
970                         NULL,
971                         *imap_fetch_bodystructure_part, /* part */
972                         *imap_fetch_bodystructure_pre,  /* pre-multi */
973                         *imap_fetch_bodystructure_post, /* post-multi */
974                         NULL,
975                         1);     /* don't decode -- we want it as-is */
976 }
977
978
979 /*
980  * imap_do_fetch() calls imap_do_fetch_msg() to output the data of an
981  * individual message, once it has been selected for output.
982  */
983 void imap_do_fetch_msg(int seq, citimap_command *Cmd) {
984         int i;
985         citimap *Imap = IMAP;
986         struct CtdlMessage *msg = NULL;
987         int body_loaded = 0;
988
989         /* Don't attempt to fetch bogus messages or UID's */
990         if (seq < 1) return;
991         if (Imap->msgids[seq-1] < 1L) return;
992
993         buffer_output();
994         cprintf("* %d FETCH (", seq);
995
996         for (i=0; i<Cmd->num_parms; ++i) {
997
998                 /* Fetchable without going to the message store at all */
999                 if (!strcasecmp(Cmd->Params[i].Key, "UID")) {
1000                         imap_fetch_uid(seq);
1001                 }
1002                 else if (!strcasecmp(Cmd->Params[i].Key, "FLAGS")) {
1003                         imap_fetch_flags(seq-1);
1004                 }
1005
1006                 /* Potentially fetchable from cache, if the client requests
1007                  * stuff from the same message several times in a row.
1008                  */
1009                 else if (!strcasecmp(Cmd->Params[i].Key, "RFC822")) {
1010                         imap_fetch_rfc822(Imap->msgids[seq-1], Cmd->Params[i].Key);
1011                 }
1012                 else if (!strcasecmp(Cmd->Params[i].Key, "RFC822.HEADER")) {
1013                         imap_fetch_rfc822(Imap->msgids[seq-1], Cmd->Params[i].Key);
1014                 }
1015                 else if (!strcasecmp(Cmd->Params[i].Key, "RFC822.SIZE")) {
1016                         imap_fetch_rfc822(Imap->msgids[seq-1], Cmd->Params[i].Key);
1017                 }
1018                 else if (!strcasecmp(Cmd->Params[i].Key, "RFC822.TEXT")) {
1019                         imap_fetch_rfc822(Imap->msgids[seq-1], Cmd->Params[i].Key);
1020                 }
1021
1022                 /* BODY fetches do their own fetching and caching too. */
1023                 else if (!strncasecmp(Cmd->Params[i].Key, "BODY[", 5)) {
1024                         imap_fetch_body(Imap->msgids[seq-1], Cmd->Params[i], 0);
1025                 }
1026                 else if (!strncasecmp(Cmd->Params[i].Key, "BODY.PEEK[", 10)) {
1027                         imap_fetch_body(Imap->msgids[seq-1], Cmd->Params[i], 1);
1028                 }
1029
1030                 /* Otherwise, load the message into memory.
1031                  */
1032                 else if (!strcasecmp(Cmd->Params[i].Key, "BODYSTRUCTURE")) {
1033                         if ((msg != NULL) && (!body_loaded)) {
1034                                 CtdlFreeMessage(msg);   /* need the whole thing */
1035                                 msg = NULL;
1036                         }
1037                         if (msg == NULL) {
1038                                 msg = CtdlFetchMessage(Imap->msgids[seq-1], 1);
1039                                 body_loaded = 1;
1040                         }
1041                         imap_fetch_bodystructure(Imap->msgids[seq-1],
1042                                         Cmd->Params[i].Key, msg);
1043                 }
1044                 else if (!strcasecmp(Cmd->Params[i].Key, "ENVELOPE")) {
1045                         if (msg == NULL) {
1046                                 msg = CtdlFetchMessage(Imap->msgids[seq-1], 0);
1047                                 body_loaded = 0;
1048                         }
1049                         imap_fetch_envelope(msg);
1050                 }
1051                 else if (!strcasecmp(Cmd->Params[i].Key, "INTERNALDATE")) {
1052                         if (msg == NULL) {
1053                                 msg = CtdlFetchMessage(Imap->msgids[seq-1], 0);
1054                                 body_loaded = 0;
1055                         }
1056                         imap_fetch_internaldate(msg);
1057                 }
1058
1059                 if (i != Cmd->num_parms-1) cprintf(" ");
1060         }
1061
1062         cprintf(")\r\n");
1063         unbuffer_output();
1064         if (msg != NULL) {
1065                 CtdlFreeMessage(msg);
1066         }
1067 }
1068
1069
1070
1071 /*
1072  * imap_fetch() calls imap_do_fetch() to do its actual work, once it's
1073  * validated and boiled down the request a bit.
1074  */
1075 void imap_do_fetch(citimap_command *Cmd) {
1076         int i;
1077 #if 0
1078 /* debug output the parsed vector */
1079         {
1080                 int i;
1081                 CtdlLogPrintf(CTDL_DEBUG, "----- %ld params \n",
1082                               Cmd->num_parms);
1083
1084         for (i=0; i < Cmd->num_parms; i++) {
1085                 if (Cmd->Params[i].len != strlen(Cmd->Params[i].Key))
1086                         CtdlLogPrintf(CTDL_DEBUG, "*********** %ld != %ld : %s\n",
1087                                       Cmd->Params[i].len, 
1088                                       strlen(Cmd->Params[i].Key),
1089                                       Cmd->Params[i].Key);
1090                 else
1091                         CtdlLogPrintf(CTDL_DEBUG, "%ld : %s\n",
1092                                       Cmd->Params[i].len, 
1093                                       Cmd->Params[i].Key);
1094         }}
1095
1096 #endif
1097
1098         if (IMAP->num_msgs > 0) {
1099                 for (i = 0; i < IMAP->num_msgs; ++i) {
1100
1101                         /* Abort the fetch loop if the session breaks.
1102                          * This is important for users who keep mailboxes
1103                          * that are too big *and* are too impatient to
1104                          * let them finish loading.  :)
1105                          */
1106                         if (CC->kill_me) return;
1107
1108                         /* Get any message marked for fetch. */
1109                         if (IMAP->flags[i] & IMAP_SELECTED) {
1110                                 imap_do_fetch_msg(i+1, Cmd);
1111                         }
1112                 }
1113         }
1114 }
1115
1116
1117
1118 /*
1119  * Back end for imap_handle_macros()
1120  * Note that this function *only* looks at the beginning of the string.  It
1121  * is not a generic search-and-replace function.
1122  */
1123 void imap_macro_replace(StrBuf *Buf, long where, 
1124                         StrBuf *TmpBuf,
1125                         char *find, long findlen, 
1126                         char *replace, long replacelen) 
1127 {
1128
1129         if (StrLength(Buf) - where > findlen)
1130                 return;
1131
1132         if (!strncasecmp(ChrPtr(Buf) + where, find, findlen)) {
1133                 if (ChrPtr(Buf)[where + findlen] == ' ') {
1134                         StrBufPlain(TmpBuf, replace, replacelen);
1135                         StrBufAppendBufPlain(TmpBuf, HKEY(" "), 0);
1136                         StrBufReplaceToken(Buf, where, findlen, 
1137                                            SKEY(TmpBuf));
1138                 }
1139                 if (where + findlen == StrLength(Buf)) {
1140                         StrBufReplaceToken(Buf, where, findlen, 
1141                                            replace, replacelen);
1142                 }
1143         }
1144 }
1145
1146
1147
1148 /*
1149  * Handle macros embedded in FETCH data items.
1150  * (What the heck are macros doing in a wire protocol?  Are we trying to save
1151  * the computer at the other end the trouble of typing a lot of characters?)
1152  */
1153 void imap_handle_macros(citimap_command *Cmd) {
1154         long i;
1155         int nest = 0;
1156         StrBuf *Tmp = NewStrBuf();
1157
1158         for (i=0; i < StrLength(Cmd->CmdBuf); ++i) {
1159                 char ch = ChrPtr(Cmd->CmdBuf)[i];
1160                 if ((ch=='(') ||
1161                     (ch=='[') ||
1162                     (ch=='<') ||
1163                     (ch=='{')) ++nest;
1164                 else if ((ch==')') ||
1165                          (ch==']') ||
1166                          (ch=='>') ||
1167                          (ch=='}')) --nest;
1168
1169                 if (nest <= 0) {
1170                         imap_macro_replace(Cmd->CmdBuf, i,
1171                                            Tmp, 
1172                                            HKEY("ALL"),
1173                                            HKEY("FLAGS INTERNALDATE RFC822.SIZE ENVELOPE")
1174                         );
1175                         imap_macro_replace(Cmd->CmdBuf, i,
1176                                            Tmp, 
1177                                            HKEY("BODY"),
1178                                            HKEY("BODYSTRUCTURE")
1179                         );
1180                         imap_macro_replace(Cmd->CmdBuf, i,
1181                                            Tmp, 
1182                                            HKEY("FAST"),
1183                                            HKEY("FLAGS INTERNALDATE RFC822.SIZE")
1184                         );
1185                         imap_macro_replace(Cmd->CmdBuf, i,
1186                                            Tmp, 
1187                                            HKEY("FULL"),
1188                                            HKEY("FLAGS INTERNALDATE RFC822.SIZE ENVELOPE BODY")
1189                         );
1190                 }
1191         }
1192         FreeStrBuf(&Tmp);
1193 }
1194
1195
1196 /*
1197  * Break out the data items requested, possibly a parenthesized list.
1198  * Returns the number of data items, or -1 if the list is invalid.
1199  * NOTE: this function alters the string it is fed, and uses it as a buffer
1200  * to hold the data for the pointers it returns.
1201  */
1202 int imap_extract_data_items(citimap_command *Cmd) 
1203 {
1204         int nArgs;
1205         int nest = 0;
1206         const char *pch, *end;
1207         long initial_len;
1208
1209         /* Convert all whitespace to ordinary space characters. */
1210         pch = ChrPtr(Cmd->CmdBuf);
1211         end = pch + StrLength(Cmd->CmdBuf);
1212
1213         while (pch < end)
1214         {
1215                 if (isspace(*pch)) 
1216                         StrBufPeek(Cmd->CmdBuf, pch, 0, ' ');
1217                 pch++;
1218         }
1219
1220         /* Strip leading and trailing whitespace, then strip leading and
1221          * trailing parentheses if it's a list
1222          */
1223         StrBufTrim(Cmd->CmdBuf);
1224         pch = ChrPtr(Cmd->CmdBuf);
1225         if ( (pch[0]=='(') && 
1226              (pch[StrLength(Cmd->CmdBuf)-1]==')') ) 
1227         {
1228                 StrBufCutRight(Cmd->CmdBuf, 1);
1229                 StrBufCutLeft(Cmd->CmdBuf, 1);
1230                 StrBufTrim(Cmd->CmdBuf);
1231         }
1232
1233         /* Parse any macro data items */
1234         imap_handle_macros(Cmd);
1235
1236         /*
1237          * Now break out the data items.  We throw in one trailing space in
1238          * order to avoid having to break out the last one manually.
1239          */
1240         nArgs = StrLength(Cmd->CmdBuf) / 10 + 10;
1241         nArgs = CmdAdjust(Cmd, nArgs, 0);
1242         initial_len = StrLength(Cmd->CmdBuf);
1243         Cmd->num_parms = 0;
1244         Cmd->Params[Cmd->num_parms].Key = pch = ChrPtr(Cmd->CmdBuf);
1245         end = Cmd->Params[Cmd->num_parms].Key + StrLength(Cmd->CmdBuf);
1246
1247         while (pch < end) 
1248         {
1249                 if ((*pch=='(') ||
1250                     (*pch=='[') ||
1251                     (*pch=='<') ||
1252                     (*pch=='{'))
1253                         ++nest;
1254
1255                 else if ((*pch==')') ||
1256                          (*pch==']') ||
1257                          (*pch=='>') ||
1258                          (*pch=='}'))
1259                         --nest;
1260
1261                 if ((nest <= 0) && (*pch==' ')) {
1262                         StrBufPeek(Cmd->CmdBuf, pch, 0, '\0');
1263                         Cmd->Params[Cmd->num_parms].len = 
1264                                 pch - Cmd->Params[Cmd->num_parms].Key;
1265
1266                         if (Cmd->num_parms + 1 >= Cmd->avail_parms) {
1267                                 nArgs = CmdAdjust(Cmd, nArgs * 2, 1);
1268                         }
1269                         Cmd->num_parms++;                       
1270                         Cmd->Params[Cmd->num_parms].Key = ++pch;
1271                 }
1272                 else if (pch + 1 == end) {
1273                         Cmd->Params[Cmd->num_parms].len = 
1274                                 pch - Cmd->Params[Cmd->num_parms].Key + 1;
1275
1276                         Cmd->num_parms++;                       
1277                 }
1278                 pch ++;
1279         }
1280         return Cmd->num_parms;
1281
1282 }
1283
1284
1285 /*
1286  * One particularly hideous aspect of IMAP is that we have to allow the client
1287  * to specify arbitrary ranges and/or sets of messages to fetch.  Citadel IMAP
1288  * handles this by setting the IMAP_SELECTED flag for each message specified in
1289  * the ranges/sets, then looping through the message array, outputting messages
1290  * with the flag set.  We don't bother returning an error if an out-of-range
1291  * number is specified (we just return quietly) because any client braindead
1292  * enough to request a bogus message number isn't going to notice the
1293  * difference anyway.
1294  *
1295  * This function clears out the IMAP_SELECTED bits, then sets that bit for each
1296  * message included in the specified range.
1297  *
1298  * Set is_uid to 1 to fetch by UID instead of sequence number.
1299  */
1300 void imap_pick_range(const char *supplied_range, int is_uid) {
1301         int i;
1302         int num_sets;
1303         int s;
1304         char setstr[SIZ], lostr[SIZ], histr[SIZ];
1305         long lo, hi;
1306         char actual_range[SIZ];
1307         citimap *Imap;
1308
1309         /* 
1310          * Handle the "ALL" macro
1311          */
1312         if (!strcasecmp(supplied_range, "ALL")) {
1313                 safestrncpy(actual_range, "1:*", sizeof actual_range);
1314         }
1315         else {
1316                 safestrncpy(actual_range, supplied_range, sizeof actual_range);
1317         }
1318
1319         Imap = IMAP;
1320         /*
1321          * Clear out the IMAP_SELECTED flags for all messages.
1322          */
1323         for (i = 0; i < Imap->num_msgs; ++i) {
1324                 Imap->flags[i] = Imap->flags[i] & ~IMAP_SELECTED;
1325         }
1326
1327         /*
1328          * Now set it for all specified messages.
1329          */
1330         num_sets = num_tokens(actual_range, ',');
1331         for (s=0; s<num_sets; ++s) {
1332                 extract_token(setstr, actual_range, s, ',', sizeof setstr);
1333
1334                 extract_token(lostr, setstr, 0, ':', sizeof lostr);
1335                 if (num_tokens(setstr, ':') >= 2) {
1336                         extract_token(histr, setstr, 1, ':', sizeof histr);
1337                         if (!strcmp(histr, "*")) snprintf(histr, sizeof histr, "%ld", LONG_MAX);
1338                 } 
1339                 else {
1340                         safestrncpy(histr, lostr, sizeof histr);
1341                 }
1342                 lo = atol(lostr);
1343                 hi = atol(histr);
1344
1345                 /* Loop through the array, flipping bits where appropriate */
1346                 for (i = 1; i <= Imap->num_msgs; ++i) {
1347                         if (is_uid) {   /* fetch by sequence number */
1348                                 if ( (Imap->msgids[i-1]>=lo)
1349                                    && (Imap->msgids[i-1]<=hi)) {
1350                                         Imap->flags[i-1] |= IMAP_SELECTED;
1351                                 }
1352                         }
1353                         else {          /* fetch by uid */
1354                                 if ( (i>=lo) && (i<=hi)) {
1355                                         Imap->flags[i-1] |= IMAP_SELECTED;
1356                                 }
1357                         }
1358                 }
1359         }
1360 }
1361
1362
1363
1364 /*
1365  * This function is called by the main command loop.
1366  */
1367 void imap_fetch(int num_parms, ConstStr *Params) {
1368         citimap_command Cmd;
1369         int num_items;
1370         
1371         if (num_parms < 4) {
1372                 cprintf("%s BAD invalid parameters\r\n", Params[0].Key);
1373                 return;
1374         }
1375
1376         imap_pick_range(Params[2].Key, 0);
1377
1378         memset(&Cmd, 0, sizeof(citimap_command));
1379         Cmd.CmdBuf = NewStrBufPlain(NULL, StrLength(IMAP->Cmd.CmdBuf));
1380         MakeStringOf(Cmd.CmdBuf, 3);
1381
1382         num_items = imap_extract_data_items(&Cmd);
1383         if (num_items < 1) {
1384                 cprintf("%s BAD invalid data item list\r\n", Params[0].Key);
1385                 FreeStrBuf(&Cmd.CmdBuf);
1386                 free(Cmd.Params);
1387                 return;
1388         }
1389
1390         imap_do_fetch(&Cmd);
1391         cprintf("%s OK FETCH completed\r\n", Params[0].Key);
1392         FreeStrBuf(&Cmd.CmdBuf);
1393         free(Cmd.Params);
1394 }
1395
1396 /*
1397  * This function is called by the main command loop.
1398  */
1399 void imap_uidfetch(int num_parms, ConstStr *Params) {
1400         citimap_command Cmd;
1401         int num_items;
1402         int i;
1403         int have_uid_item = 0;
1404
1405         if (num_parms < 5) {
1406                 cprintf("%s BAD invalid parameters\r\n", Params[0].Key);
1407                 return;
1408         }
1409
1410         imap_pick_range(Params[3].Key, 1);
1411
1412         memset(&Cmd, 0, sizeof(citimap_command));
1413         Cmd.CmdBuf = NewStrBufPlain(NULL, StrLength(IMAP->Cmd.CmdBuf));
1414
1415         MakeStringOf(Cmd.CmdBuf, 4);
1416 #if 0
1417         CtdlLogPrintf(CTDL_DEBUG, "-------%s--------\n", ChrPtr(Cmd.CmdBuf));
1418 #endif
1419         num_items = imap_extract_data_items(&Cmd);
1420         if (num_items < 1) {
1421                 cprintf("%s BAD invalid data item list\r\n", Params[0].Key);
1422                 FreeStrBuf(&Cmd.CmdBuf);
1423                 free(Cmd.Params);
1424                 return;
1425         }
1426
1427         /* If the "UID" item was not included, we include it implicitly
1428          * (at the beginning) because this is a UID FETCH command
1429          */
1430         for (i=0; i<num_items; ++i) {
1431                 if (!strcasecmp(Cmd.Params[i].Key, "UID")) ++have_uid_item;
1432         }
1433         if (have_uid_item == 0) {
1434                 if (Cmd.num_parms + 1 >= Cmd.avail_parms)
1435                         CmdAdjust(&Cmd, Cmd.avail_parms + 1, 1);
1436                 memmove(&Cmd.Params[1], 
1437                         &Cmd.Params[0], 
1438                         sizeof(ConstStr) * Cmd.num_parms);
1439
1440                 Cmd.num_parms++;
1441                 Cmd.Params[0] = (ConstStr){HKEY("UID")};
1442         }
1443
1444         imap_do_fetch(&Cmd);
1445         cprintf("%s OK UID FETCH completed\r\n", Params[0].Key);
1446         FreeStrBuf(&Cmd.CmdBuf);
1447         free(Cmd.Params);
1448 }
1449
1450