d6b0fd89636c382b99265a9a098b62543aeb7969
[citadel.git] / citadel / serv_imap.c
1 /*
2  * $Id$ 
3  *
4  * IMAP server for the Citadel system
5  * Copyright (C) 2000-2007 by Art Cancro and others.
6  * This code is released under the terms of the GNU General Public License.
7  *
8  * WARNING: the IMAP protocol is badly designed.  No implementation of it
9  * is perfect.  Indeed, with so much gratuitous complexity, *all* IMAP
10  * implementations have bugs.
11  */
12
13 #include "sysdep.h"
14 #include <stdlib.h>
15 #include <unistd.h>
16 #include <stdio.h>
17 #include <fcntl.h>
18 #include <signal.h>
19 #include <pwd.h>
20 #include <errno.h>
21 #include <sys/types.h>
22
23 #if TIME_WITH_SYS_TIME
24 # include <sys/time.h>
25 # include <time.h>
26 #else
27 # if HAVE_SYS_TIME_H
28 #  include <sys/time.h>
29 # else
30 #  include <time.h>
31 # endif
32 #endif
33
34 #include <sys/wait.h>
35 #include <ctype.h>
36 #include <string.h>
37 #include <limits.h>
38 #include "citadel.h"
39 #include "server.h"
40 #include "sysdep_decls.h"
41 #include "citserver.h"
42 #include "support.h"
43 #include "config.h"
44 #include "serv_extensions.h"
45 #include "room_ops.h"
46 #include "user_ops.h"
47 #include "policy.h"
48 #include "database.h"
49 #include "msgbase.h"
50 #include "tools.h"
51 #include "internet_addressing.h"
52 #include "serv_imap.h"
53 #include "imap_tools.h"
54 #include "imap_list.h"
55 #include "imap_fetch.h"
56 #include "imap_search.h"
57 #include "imap_store.h"
58 #include "imap_acl.h"
59 #include "imap_metadata.h"
60 #include "imap_misc.h"
61
62 #ifdef HAVE_OPENSSL
63 #include "serv_crypto.h"
64 #endif
65
66 /* imap_rename() uses this struct containing list of rooms to rename */
67 struct irl {
68         struct irl *next;
69         char irl_oldroom[ROOMNAMELEN];
70         char irl_newroom[ROOMNAMELEN];
71         int irl_newfloor;
72 };
73
74 /* Data which is passed between imap_rename() and imap_rename_backend() */
75 struct irlparms {
76         char *oldname;
77         char *newname;
78         struct irl **irl;
79 };
80
81
82 /*
83  * If there is a message ID map in memory, free it
84  */
85 void imap_free_msgids(void)
86 {
87         if (IMAP->msgids != NULL) {
88                 free(IMAP->msgids);
89                 IMAP->msgids = NULL;
90                 IMAP->num_msgs = 0;
91                 IMAP->num_alloc = 0;
92         }
93         if (IMAP->flags != NULL) {
94                 free(IMAP->flags);
95                 IMAP->flags = NULL;
96         }
97         IMAP->last_mtime = (-1);
98 }
99
100
101 /*
102  * If there is a transmitted message in memory, free it
103  */
104 void imap_free_transmitted_message(void)
105 {
106         if (IMAP->transmitted_message != NULL) {
107                 free(IMAP->transmitted_message);
108                 IMAP->transmitted_message = NULL;
109                 IMAP->transmitted_length = 0;
110         }
111 }
112
113
114 /*
115  * Set the \Seen, \Recent. and \Answered flags, based on the sequence
116  * sets stored in the visit record for this user/room.  Note that we have
117  * to parse each sequence set manually here, because calling the utility
118  * function is_msg_in_sequence_set() over and over again is too expensive.
119  *
120  * first_msg should be set to 0 to rescan the flags for every message in the
121  * room, or some other value if we're only interested in an incremental
122  * update.
123  */
124 void imap_set_seen_flags(int first_msg)
125 {
126         struct visit vbuf;
127         int i;
128         int num_sets;
129         int s;
130         char setstr[64], lostr[64], histr[64];
131         long lo, hi;
132
133         if (IMAP->num_msgs < 1) return;
134         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
135
136         for (i = first_msg; i < IMAP->num_msgs; ++i) {
137                 IMAP->flags[i] = IMAP->flags[i] & ~IMAP_SEEN;
138                 IMAP->flags[i] |= IMAP_RECENT;
139                 IMAP->flags[i] = IMAP->flags[i] & ~IMAP_ANSWERED;
140         }
141
142         /*
143          * Do the "\Seen" flag.
144          * (Any message not "\Seen" is considered "\Recent".)
145          */
146         num_sets = num_tokens(vbuf.v_seen, ',');
147         for (s=0; s<num_sets; ++s) {
148                 extract_token(setstr, vbuf.v_seen, s, ',', sizeof setstr);
149
150                 extract_token(lostr, setstr, 0, ':', sizeof lostr);
151                 if (num_tokens(setstr, ':') >= 2) {
152                         extract_token(histr, setstr, 1, ':', sizeof histr);
153                         if (!strcmp(histr, "*")) {
154                                 snprintf(histr, sizeof histr, "%ld", LONG_MAX);
155                         }
156                 } 
157                 else {
158                         strcpy(histr, lostr);
159                 }
160                 lo = atol(lostr);
161                 hi = atol(histr);
162
163                 for (i = first_msg; i < IMAP->num_msgs; ++i) {
164                         if ((IMAP->msgids[i] >= lo) && (IMAP->msgids[i] <= hi)){
165                                 IMAP->flags[i] |= IMAP_SEEN;
166                                 IMAP->flags[i] = IMAP->flags[i] & ~IMAP_RECENT;
167                         }
168                 }
169         }
170
171         /* Do the ANSWERED flag */
172         num_sets = num_tokens(vbuf.v_answered, ',');
173         for (s=0; s<num_sets; ++s) {
174                 extract_token(setstr, vbuf.v_answered, s, ',', sizeof setstr);
175
176                 extract_token(lostr, setstr, 0, ':', sizeof lostr);
177                 if (num_tokens(setstr, ':') >= 2) {
178                         extract_token(histr, setstr, 1, ':', sizeof histr);
179                         if (!strcmp(histr, "*")) {
180                                 snprintf(histr, sizeof histr, "%ld", LONG_MAX);
181                         }
182                 } 
183                 else {
184                         strcpy(histr, lostr);
185                 }
186                 lo = atol(lostr);
187                 hi = atol(histr);
188
189                 for (i = first_msg; i < IMAP->num_msgs; ++i) {
190                         if ((IMAP->msgids[i] >= lo) && (IMAP->msgids[i] <= hi)){
191                                 IMAP->flags[i] |= IMAP_ANSWERED;
192                         }
193                 }
194         }
195
196 }
197
198
199
200 /*
201  * Back end for imap_load_msgids()
202  *
203  * Optimization: instead of calling realloc() to add each message, we
204  * allocate space in the list for REALLOC_INCREMENT messages at a time.  This
205  * allows the mapping to proceed much faster.
206  */
207 void imap_add_single_msgid(long msgnum, void *userdata)
208 {
209
210         ++IMAP->num_msgs;
211         if (IMAP->num_msgs > IMAP->num_alloc) {
212                 IMAP->num_alloc += REALLOC_INCREMENT;
213                 IMAP->msgids = realloc(IMAP->msgids,
214                                         (IMAP->num_alloc * sizeof(long)) );
215                 IMAP->flags = realloc(IMAP->flags,
216                                         (IMAP->num_alloc * sizeof(long)) );
217         }
218         IMAP->msgids[IMAP->num_msgs - 1] = msgnum;
219         IMAP->flags[IMAP->num_msgs - 1] = 0;
220 }
221
222
223
224 /*
225  * Set up a message ID map for the current room (folder)
226  */
227 void imap_load_msgids(void)
228 {
229         struct cdbdata *cdbfr;
230
231         if (IMAP->selected == 0) {
232                 lprintf(CTDL_ERR,
233                         "imap_load_msgids() can't run; no room selected\n");
234                 return;
235         }
236
237         imap_free_msgids();     /* If there was already a map, free it */
238
239         /* Load the message list */
240         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
241         if (cdbfr != NULL) {
242                 IMAP->msgids = malloc(cdbfr->len);
243                 memcpy(IMAP->msgids, cdbfr->ptr, cdbfr->len);
244                 IMAP->num_msgs = cdbfr->len / sizeof(long);
245                 IMAP->num_alloc = cdbfr->len / sizeof(long);
246                 cdb_free(cdbfr);
247         }
248
249         if (IMAP->num_msgs) {
250                 IMAP->flags = malloc(IMAP->num_alloc * sizeof(long));
251                 memset(IMAP->flags, 0, (IMAP->num_alloc * sizeof(long)) );
252         }
253
254         imap_set_seen_flags(0);
255 }
256
257
258 /*
259  * Re-scan the selected room (folder) and see if it's been changed at all
260  */
261 void imap_rescan_msgids(void)
262 {
263
264         int original_num_msgs = 0;
265         long original_highest = 0L;
266         int i, j, jstart;
267         int message_still_exists;
268         struct cdbdata *cdbfr;
269         long *msglist = NULL;
270         int num_msgs = 0;
271         int num_recent = 0;
272
273         if (IMAP->selected == 0) {
274                 lprintf(CTDL_ERR,
275                         "imap_load_msgids() can't run; no room selected\n");
276                 return;
277         }
278
279         /*
280          * Check to see if the room's contents have changed.
281          * If not, we can avoid this rescan.
282          */
283         getroom(&CC->room, CC->room.QRname);
284         if (IMAP->last_mtime == CC->room.QRmtime) {     /* No changes! */
285                 return;
286         }
287
288         /* Load the *current* message list from disk, so we can compare it
289          * to what we have in memory.
290          */
291         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
292         if (cdbfr != NULL) {
293                 msglist = malloc(cdbfr->len);
294                 if (msglist == NULL) {
295                         lprintf(CTDL_CRIT, "malloc() failed\n");
296                         abort();
297                 }
298                 memcpy(msglist, cdbfr->ptr, (size_t)cdbfr->len);
299                 num_msgs = cdbfr->len / sizeof(long);
300                 cdb_free(cdbfr);
301         } else {
302                 num_msgs = 0;
303         }
304
305         /*
306          * Check to see if any of the messages we know about have been expunged
307          */
308         if (IMAP->num_msgs > 0) {
309                 jstart = 0;
310                 for (i = 0; i < IMAP->num_msgs; ++i) {
311
312                         message_still_exists = 0;
313                         if (num_msgs > 0) {
314                                 for (j = jstart; j < num_msgs; ++j) {
315                                         if (msglist[j] == IMAP->msgids[i]) {
316                                                 message_still_exists = 1;
317                                                 jstart = j;
318                                                 break;
319                                         }
320                                 }
321                         }
322
323                         if (message_still_exists == 0) {
324                                 cprintf("* %d EXPUNGE\r\n", i + 1);
325
326                                 /* Here's some nice stupid nonsense.  When a
327                                  * message is expunged, we have to slide all
328                                  * the existing messages up in the message
329                                  * array.
330                                  */
331                                 --IMAP->num_msgs;
332                                 memcpy(&IMAP->msgids[i],
333                                        &IMAP->msgids[i + 1],
334                                        (sizeof(long) *
335                                         (IMAP->num_msgs - i)));
336                                 memcpy(&IMAP->flags[i],
337                                        &IMAP->flags[i + 1],
338                                        (sizeof(long) *
339                                         (IMAP->num_msgs - i)));
340
341                                 --i;
342                         }
343
344                 }
345         }
346
347         /*
348          * Remember how many messages were here before we re-scanned.
349          */
350         original_num_msgs = IMAP->num_msgs;
351         if (IMAP->num_msgs > 0) {
352                 original_highest = IMAP->msgids[IMAP->num_msgs - 1];
353         } else {
354                 original_highest = 0L;
355         }
356
357         /*
358          * Now peruse the room for *new* messages only.
359          */
360         if (num_msgs > 0) {
361                 for (j = 0; j < num_msgs; ++j) {
362                         if (msglist[j] > original_highest) {
363                                 imap_add_single_msgid(msglist[j], NULL);
364                         }
365                 }
366         }
367         imap_set_seen_flags(original_num_msgs);
368
369         /*
370          * If new messages have arrived, tell the client about them.
371          */
372         if (IMAP->num_msgs > original_num_msgs) {
373
374                 for (j = 0; j < num_msgs; ++j) {
375                         if (IMAP->flags[j] & IMAP_RECENT) {
376                                 ++num_recent;
377                         }
378                 }
379
380                 cprintf("* %d EXISTS\r\n", IMAP->num_msgs);
381                 cprintf("* %d RECENT\r\n", num_recent);
382         }
383
384         if (num_msgs != 0) {
385                 free(msglist);
386         }
387         IMAP->last_mtime = CC->room.QRmtime;
388 }
389
390
391
392
393
394
395
396 /*
397  * This cleanup function blows away the temporary memory and files used by
398  * the IMAP server.
399  */
400 void imap_cleanup_function(void)
401 {
402
403         /* Don't do this stuff if this is not a IMAP session! */
404         if (CC->h_command_function != imap_command_loop)
405                 return;
406
407         /* If there is a mailbox selected, auto-expunge it. */
408         if (IMAP->selected) {
409                 imap_do_expunge();
410         }
411
412         lprintf(CTDL_DEBUG, "Performing IMAP cleanup hook\n");
413         imap_free_msgids();
414         imap_free_transmitted_message();
415
416         if (IMAP->cached_rfc822_data != NULL) {
417                 free(IMAP->cached_rfc822_data);
418                 IMAP->cached_rfc822_data = NULL;
419                 IMAP->cached_rfc822_msgnum = (-1);
420                 IMAP->cached_rfc822_withbody = 0;
421         }
422
423         if (IMAP->cached_body != NULL) {
424                 free(IMAP->cached_body);
425                 IMAP->cached_body = NULL;
426                 IMAP->cached_body_len = 0;
427                 IMAP->cached_bodymsgnum = (-1);
428         }
429
430         free(IMAP);
431         lprintf(CTDL_DEBUG, "Finished IMAP cleanup hook\n");
432 }
433
434
435 /*
436  * Does the actual work of the CAPABILITY command (because we need to
437  * output this stuff in other places as well)
438  */
439 void imap_output_capability_string(void) {
440         cprintf("CAPABILITY IMAP4REV1 NAMESPACE ID ACL AUTH=LOGIN");
441
442 #ifdef HAVE_OPENSSL
443         if (!CC->redirect_ssl) cprintf(" STARTTLS");
444 #endif
445
446         /* We are building a partial implementation of METADATA for the sole purpose
447          * of interoperating with the ical/vcard version of the Bynari Insight Connector.
448          * If you were expecting something else, comment out one or both of these
449          * extension advertisements.
450          */
451         cprintf(" METADATA");
452         /* cprintf(" LIST-EXTENDED"); */
453 }
454
455 /*
456  * implements the CAPABILITY command
457  */
458 void imap_capability(int num_parms, char *parms[])
459 {
460         cprintf("* ");
461         imap_output_capability_string();
462         cprintf("\r\n");
463         cprintf("%s OK CAPABILITY completed\r\n", parms[0]);
464 }
465
466
467
468 /*
469  * Implements the ID command (specified by RFC2971)
470  *
471  * We ignore the client-supplied information, and output a NIL response.
472  * Although this is technically a valid implementation of the extension, it
473  * is quite useless.  It exists only so that we may see which clients are
474  * making use of this extension.
475  * 
476  */
477 void imap_id(int num_parms, char *parms[])
478 {
479         cprintf("* ID NIL\r\n");
480         cprintf("%s OK ID completed\r\n", parms[0]);
481 }
482
483
484
485 /*
486  * Here's where our IMAP session begins its happy day.
487  */
488 void imap_greeting(void)
489 {
490
491         strcpy(CC->cs_clientname, "IMAP session");
492         IMAP = malloc(sizeof (struct citimap));
493         memset(IMAP, 0, sizeof(struct citimap));
494         IMAP->authstate = imap_as_normal;
495         IMAP->cached_rfc822_data = NULL;
496         IMAP->cached_rfc822_msgnum = (-1);
497         IMAP->cached_rfc822_withbody = 0;
498
499         cprintf("* OK [");
500         imap_output_capability_string();
501         cprintf("] %s IMAP4rev1 %s ready\r\n", config.c_fqdn, CITADEL);
502 }
503
504 /*
505  * IMAPS is just like IMAP, except it goes crypto right away.
506  */
507 #ifdef HAVE_OPENSSL
508 void imaps_greeting(void) {
509         CtdlStartTLS(NULL, NULL, NULL);
510         imap_greeting();
511 }
512 #endif
513
514
515 /*
516  * implements the LOGIN command (ordinary username/password login)
517  */
518 void imap_login(int num_parms, char *parms[])
519 {
520         if (num_parms != 4) {
521                 cprintf("%s BAD incorrect number of parameters\r\n", parms[0]);
522                 return;
523         }
524
525         if (CtdlLoginExistingUser(parms[2]) == login_ok) {
526                 if (CtdlTryPassword(parms[3]) == pass_ok) {
527                         cprintf("%s OK [", parms[0]);
528                         imap_output_capability_string();
529                         cprintf("] Hello, %s\r\n", CC->user.fullname);
530                         return;
531                 }
532         }
533
534         cprintf("%s BAD Login incorrect\r\n", parms[0]);
535 }
536
537
538 /*
539  * Implements the AUTHENTICATE command
540  */
541 void imap_authenticate(int num_parms, char *parms[])
542 {
543         char buf[SIZ];
544
545         if (num_parms != 3) {
546                 cprintf("%s BAD incorrect number of parameters\r\n",
547                         parms[0]);
548                 return;
549         }
550
551         if (CC->logged_in) {
552                 cprintf("%s BAD Already logged in.\r\n", parms[0]);
553                 return;
554         }
555
556         if (!strcasecmp(parms[2], "LOGIN")) {
557                 CtdlEncodeBase64(buf, "Username:", 9);
558                 cprintf("+ %s\r\n", buf);
559                 IMAP->authstate = imap_as_expecting_username;
560                 strcpy(IMAP->authseq, parms[0]);
561                 return;
562         }
563
564         else {
565                 cprintf("%s NO AUTHENTICATE %s failed\r\n",
566                         parms[0], parms[1]);
567         }
568 }
569
570 void imap_auth_login_user(char *cmd)
571 {
572         char buf[SIZ];
573
574         CtdlDecodeBase64(buf, cmd, SIZ);
575         CtdlLoginExistingUser(buf);
576         CtdlEncodeBase64(buf, "Password:", 9);
577         cprintf("+ %s\r\n", buf);
578         IMAP->authstate = imap_as_expecting_password;
579         return;
580 }
581
582 void imap_auth_login_pass(char *cmd)
583 {
584         char buf[SIZ];
585
586         CtdlDecodeBase64(buf, cmd, SIZ);
587         if (CtdlTryPassword(buf) == pass_ok) {
588                 cprintf("%s OK authentication succeeded\r\n",
589                         IMAP->authseq);
590         } else {
591                 cprintf("%s NO authentication failed\r\n", IMAP->authseq);
592         }
593         IMAP->authstate = imap_as_normal;
594         return;
595 }
596
597
598 /*
599  * implements the STARTTLS command (Citadel API version)
600  */
601 #ifdef HAVE_OPENSSL
602 void imap_starttls(int num_parms, char *parms[])
603 {
604         char ok_response[SIZ];
605         char nosup_response[SIZ];
606         char error_response[SIZ];
607
608         sprintf(ok_response,
609                 "%s OK begin TLS negotiation now\r\n",
610                 parms[0]);
611         sprintf(nosup_response,
612                 "%s NO TLS not supported here\r\n",
613                 parms[0]);
614         sprintf(error_response,
615                 "%s BAD Internal error\r\n",
616                 parms[0]);
617         CtdlStartTLS(ok_response, nosup_response, error_response);
618 }
619 #endif
620
621
622 /*
623  * implements the SELECT command
624  */
625 void imap_select(int num_parms, char *parms[])
626 {
627         char towhere[SIZ];
628         char augmented_roomname[ROOMNAMELEN];
629         int c = 0;
630         int ok = 0;
631         int ra = 0;
632         struct ctdlroom QRscratch;
633         int msgs, new;
634         int floornum;
635         int roomflags;
636         int i;
637
638         /* Convert the supplied folder name to a roomname */
639         i = imap_roomname(towhere, sizeof towhere, parms[2]);
640         if (i < 0) {
641                 cprintf("%s NO Invalid mailbox name.\r\n", parms[0]);
642                 IMAP->selected = 0;
643                 return;
644         }
645         floornum = (i & 0x00ff);
646         roomflags = (i & 0xff00);
647
648         /* First try a regular match */
649         c = getroom(&QRscratch, towhere);
650
651         /* Then try a mailbox name match */
652         if (c != 0) {
653                 MailboxName(augmented_roomname, sizeof augmented_roomname,
654                             &CC->user, towhere);
655                 c = getroom(&QRscratch, augmented_roomname);
656                 if (c == 0)
657                         strcpy(towhere, augmented_roomname);
658         }
659
660         /* If the room exists, check security/access */
661         if (c == 0) {
662                 /* See if there is an existing user/room relationship */
663                 CtdlRoomAccess(&QRscratch, &CC->user, &ra, NULL);
664
665                 /* normal clients have to pass through security */
666                 if (ra & UA_KNOWN) {
667                         ok = 1;
668                 }
669         }
670
671         /* Fail here if no such room */
672         if (!ok) {
673                 cprintf("%s NO ... no such room, or access denied\r\n",
674                         parms[0]);
675                 return;
676         }
677
678         /* If we already had some other folder selected, auto-expunge it */
679         imap_do_expunge();
680
681         /*
682          * usergoto() formally takes us to the desired room, happily returning
683          * the number of messages and number of new messages.
684          */
685         memcpy(&CC->room, &QRscratch, sizeof(struct ctdlroom));
686         usergoto(NULL, 0, 0, &msgs, &new);
687         IMAP->selected = 1;
688
689         if (!strcasecmp(parms[1], "EXAMINE")) {
690                 IMAP->readonly = 1;
691         } else {
692                 IMAP->readonly = 0;
693         }
694
695         imap_load_msgids();
696         IMAP->last_mtime = CC->room.QRmtime;
697
698         cprintf("* %d EXISTS\r\n", msgs);
699         cprintf("* %d RECENT\r\n", new);
700
701         cprintf("* OK [UIDVALIDITY 1] UID validity status\r\n");
702         cprintf("* OK [UIDNEXT %ld] Predicted next UID\r\n", CitControl.MMhighest + 1);
703
704         /* Note that \Deleted is a valid flag, but not a permanent flag,
705          * because we don't maintain its state across sessions.  Citadel
706          * automatically expunges mailboxes when they are de-selected.
707          */
708         cprintf("* FLAGS (\\Deleted \\Seen \\Answered)\r\n");
709         cprintf("* OK [PERMANENTFLAGS (\\Deleted \\Seen \\Answered)] "
710                 "permanent flags\r\n");
711
712         cprintf("%s OK [%s] %s completed\r\n",
713                 parms[0],
714                 (IMAP->readonly ? "READ-ONLY" : "READ-WRITE"), parms[1]);
715 }
716
717
718
719 /*
720  * Does the real work for expunge.
721  */
722 int imap_do_expunge(void)
723 {
724         int i;
725         int num_expunged = 0;
726         long *delmsgs = NULL;
727         int num_delmsgs = 0;
728
729         lprintf(CTDL_DEBUG, "imap_do_expunge() called\n");
730         if (IMAP->selected == 0) {
731                 return (0);
732         }
733
734         if (IMAP->num_msgs > 0) {
735                 delmsgs = malloc(IMAP->num_msgs * sizeof(long));
736                 for (i = 0; i < IMAP->num_msgs; ++i) {
737                         if (IMAP->flags[i] & IMAP_DELETED) {
738                                 delmsgs[num_delmsgs++] = IMAP->msgids[i];
739                         }
740                 }
741                 if (num_delmsgs > 0) {
742                         CtdlDeleteMessages(CC->room.QRname, delmsgs, num_delmsgs, "");
743                 }
744                 num_expunged += num_delmsgs;
745                 free(delmsgs);
746         }
747
748         if (num_expunged > 0) {
749                 imap_rescan_msgids();
750         }
751
752         lprintf(CTDL_DEBUG, "Expunged %d messages from <%s>\n",
753                 num_expunged, CC->room.QRname);
754         return (num_expunged);
755 }
756
757
758 /*
759  * implements the EXPUNGE command syntax
760  */
761 void imap_expunge(int num_parms, char *parms[])
762 {
763         int num_expunged = 0;
764
765         num_expunged = imap_do_expunge();
766         cprintf("%s OK expunged %d messages.\r\n", parms[0], num_expunged);
767 }
768
769
770 /*
771  * implements the CLOSE command
772  */
773 void imap_close(int num_parms, char *parms[])
774 {
775
776         /* Yes, we always expunge on close. */
777         if (IMAP->selected) {
778                 imap_do_expunge();
779         }
780
781         IMAP->selected = 0;
782         IMAP->readonly = 0;
783         imap_free_msgids();
784         cprintf("%s OK CLOSE completed\r\n", parms[0]);
785 }
786
787
788 /*
789  * Implements the NAMESPACE command.
790  */
791 void imap_namespace(int num_parms, char *parms[])
792 {
793         int i;
794         struct floor *fl;
795         int floors = 0;
796         char buf[SIZ];
797
798         cprintf("* NAMESPACE ");
799
800         /* All personal folders are subordinate to INBOX. */
801         cprintf("((\"INBOX/\" \"/\")) ");
802
803         /* Other users' folders ... coming soon! FIXME */
804         cprintf("NIL ");
805
806         /* Show all floors as shared namespaces.  Neato! */
807         cprintf("(");
808         for (i = 0; i < MAXFLOORS; ++i) {
809                 fl = cgetfloor(i);
810                 if (fl->f_flags & F_INUSE) {
811                         if (floors > 0) cprintf(" ");
812                         cprintf("(");
813                         sprintf(buf, "%s/", fl->f_name);
814                         imap_strout(buf);
815                         cprintf(" \"/\")");
816                         ++floors;
817                 }
818         }
819         cprintf(")");
820
821         /* Wind it up with a newline and a completion message. */
822         cprintf("\r\n");
823         cprintf("%s OK NAMESPACE completed\r\n", parms[0]);
824 }
825
826
827
828 /*
829  * Implements the CREATE command
830  *
831  */
832 void imap_create(int num_parms, char *parms[])
833 {
834         int ret;
835         char roomname[ROOMNAMELEN];
836         int floornum;
837         int flags;
838         int newroomtype = 0;
839         int newroomview = 0;
840
841         if (strchr(parms[2], '\\') != NULL) {
842                 cprintf("%s NO Invalid character in folder name\r\n",
843                         parms[0]);
844                 lprintf(CTDL_DEBUG, "invalid character in folder name\n");
845                 return;
846         }
847
848         ret = imap_roomname(roomname, sizeof roomname, parms[2]);
849         if (ret < 0) {
850                 cprintf("%s NO Invalid mailbox name or location\r\n",
851                         parms[0]);
852                 lprintf(CTDL_DEBUG, "invalid mailbox name or location\n");
853                 return;
854         }
855         floornum = (ret & 0x00ff);      /* lower 8 bits = floor number */
856         flags = (ret & 0xff00); /* upper 8 bits = flags        */
857
858         if (flags & IR_MAILBOX) {
859                 if (strncasecmp(parms[2], "INBOX/", 6)) {
860                         cprintf("%s NO Personal folders must be created under INBOX\r\n", parms[0]);
861                         lprintf(CTDL_DEBUG, "not subordinate to inbox\n");
862                         return;
863                 }
864         }
865
866         if (flags & IR_MAILBOX) {
867                 newroomtype = 4;                /* private mailbox */
868                 newroomview = VIEW_MAILBOX;
869         } else {
870                 newroomtype = 0;                /* public folder */
871                 newroomview = VIEW_BBS;
872         }
873
874         lprintf(CTDL_INFO, "Create new room <%s> on floor <%d> with type <%d>\n",
875                 roomname, floornum, newroomtype);
876
877         ret = create_room(roomname, newroomtype, "", floornum, 1, 0, newroomview);
878         if (ret == 0) {
879                 /*** DO NOT CHANGE THIS ERROR MESSAGE IN ANY WAY!  BYNARI CONNECTOR DEPENDS ON IT! ***/
880                 cprintf("%s NO Mailbox already exists, or create failed\r\n", parms[0]);
881         } else {
882                 cprintf("%s OK CREATE completed\r\n", parms[0]);
883         }
884         lprintf(CTDL_DEBUG, "imap_create() completed\n");
885 }
886
887
888 /*
889  * Locate a room by its IMAP folder name, and check access to it.
890  * If zapped_ok is nonzero, we can also look for the room in the zapped list.
891  */
892 int imap_grabroom(char *returned_roomname, char *foldername, int zapped_ok)
893 {
894         int ret;
895         char augmented_roomname[ROOMNAMELEN];
896         char roomname[ROOMNAMELEN];
897         int c;
898         struct ctdlroom QRscratch;
899         int ra;
900         int ok = 0;
901
902         ret = imap_roomname(roomname, sizeof roomname, foldername);
903         if (ret < 0) {
904                 return (1);
905         }
906
907         /* First try a regular match */
908         c = getroom(&QRscratch, roomname);
909
910         /* Then try a mailbox name match */
911         if (c != 0) {
912                 MailboxName(augmented_roomname, sizeof augmented_roomname,
913                             &CC->user, roomname);
914                 c = getroom(&QRscratch, augmented_roomname);
915                 if (c == 0)
916                         strcpy(roomname, augmented_roomname);
917         }
918
919         /* If the room exists, check security/access */
920         if (c == 0) {
921                 /* See if there is an existing user/room relationship */
922                 CtdlRoomAccess(&QRscratch, &CC->user, &ra, NULL);
923
924                 /* normal clients have to pass through security */
925                 if (ra & UA_KNOWN) {
926                         ok = 1;
927                 }
928                 if ((zapped_ok) && (ra & UA_ZAPPED)) {
929                         ok = 1;
930                 }
931         }
932
933         /* Fail here if no such room */
934         if (!ok) {
935                 strcpy(returned_roomname, "");
936                 return (2);
937         } else {
938                 strcpy(returned_roomname, QRscratch.QRname);
939                 return (0);
940         }
941 }
942
943
944 /*
945  * Implements the STATUS command (sort of)
946  *
947  */
948 void imap_status(int num_parms, char *parms[])
949 {
950         int ret;
951         char roomname[ROOMNAMELEN];
952         char buf[SIZ];
953         char savedroom[ROOMNAMELEN];
954         int msgs, new;
955
956         ret = imap_grabroom(roomname, parms[2], 0);
957         if (ret != 0) {
958                 cprintf
959                     ("%s NO Invalid mailbox name or location, or access denied\r\n",
960                      parms[0]);
961                 return;
962         }
963
964         /*
965          * usergoto() formally takes us to the desired room, happily returning
966          * the number of messages and number of new messages.  (If another
967          * folder is selected, save its name so we can return there!!!!!)
968          */
969         if (IMAP->selected) {
970                 strcpy(savedroom, CC->room.QRname);
971         }
972         usergoto(roomname, 0, 0, &msgs, &new);
973
974         /*
975          * Tell the client what it wants to know.  In fact, tell it *more* than
976          * it wants to know.  We happily IGnore the supplied status data item
977          * names and simply spew all possible data items.  It's far easier to
978          * code and probably saves us some processing time too.
979          */
980         imap_mailboxname(buf, sizeof buf, &CC->room);
981         cprintf("* STATUS ");
982         imap_strout(buf);
983         cprintf(" (MESSAGES %d ", msgs);
984         cprintf("RECENT %d ", new);     /* Initially, new==recent */
985         cprintf("UIDNEXT %ld ", CitControl.MMhighest + 1);
986         cprintf("UNSEEN %d)\r\n", new);
987
988         /*
989          * If another folder is selected, go back to that room so we can resume
990          * our happy day without violent explosions.
991          */
992         if (IMAP->selected) {
993                 usergoto(savedroom, 0, 0, &msgs, &new);
994         }
995
996         /*
997          * Oooh, look, we're done!
998          */
999         cprintf("%s OK STATUS completed\r\n", parms[0]);
1000 }
1001
1002
1003
1004 /*
1005  * Implements the SUBSCRIBE command
1006  *
1007  */
1008 void imap_subscribe(int num_parms, char *parms[])
1009 {
1010         int ret;
1011         char roomname[ROOMNAMELEN];
1012         char savedroom[ROOMNAMELEN];
1013         int msgs, new;
1014
1015         ret = imap_grabroom(roomname, parms[2], 1);
1016         if (ret != 0) {
1017                 cprintf(
1018                         "%s NO Error %d: invalid mailbox name or location, or access denied\r\n",
1019                         parms[0],
1020                         ret
1021                 );
1022                 return;
1023         }
1024
1025         /*
1026          * usergoto() formally takes us to the desired room, which has the side
1027          * effect of marking the room as not-zapped ... exactly the effect
1028          * we're looking for.
1029          */
1030         if (IMAP->selected) {
1031                 strcpy(savedroom, CC->room.QRname);
1032         }
1033         usergoto(roomname, 0, 0, &msgs, &new);
1034
1035         /*
1036          * If another folder is selected, go back to that room so we can resume
1037          * our happy day without violent explosions.
1038          */
1039         if (IMAP->selected) {
1040                 usergoto(savedroom, 0, 0, &msgs, &new);
1041         }
1042
1043         cprintf("%s OK SUBSCRIBE completed\r\n", parms[0]);
1044 }
1045
1046
1047 /*
1048  * Implements the UNSUBSCRIBE command
1049  *
1050  */
1051 void imap_unsubscribe(int num_parms, char *parms[])
1052 {
1053         int ret;
1054         char roomname[ROOMNAMELEN];
1055         char savedroom[ROOMNAMELEN];
1056         int msgs, new;
1057
1058         ret = imap_grabroom(roomname, parms[2], 0);
1059         if (ret != 0) {
1060                 cprintf
1061                     ("%s NO Invalid mailbox name or location, or access denied\r\n",
1062                      parms[0]);
1063                 return;
1064         }
1065
1066         /*
1067          * usergoto() formally takes us to the desired room.
1068          */
1069         if (IMAP->selected) {
1070                 strcpy(savedroom, CC->room.QRname);
1071         }
1072         usergoto(roomname, 0, 0, &msgs, &new);
1073
1074         /* 
1075          * Now make the API call to zap the room
1076          */
1077         if (CtdlForgetThisRoom() == 0) {
1078                 cprintf("%s OK UNSUBSCRIBE completed\r\n", parms[0]);
1079         } else {
1080                 cprintf
1081                     ("%s NO You may not unsubscribe from this folder.\r\n",
1082                      parms[0]);
1083         }
1084
1085         /*
1086          * If another folder is selected, go back to that room so we can resume
1087          * our happy day without violent explosions.
1088          */
1089         if (IMAP->selected) {
1090                 usergoto(savedroom, 0, 0, &msgs, &new);
1091         }
1092 }
1093
1094
1095
1096 /*
1097  * Implements the DELETE command
1098  *
1099  */
1100 void imap_delete(int num_parms, char *parms[])
1101 {
1102         int ret;
1103         char roomname[ROOMNAMELEN];
1104         char savedroom[ROOMNAMELEN];
1105         int msgs, new;
1106
1107         ret = imap_grabroom(roomname, parms[2], 1);
1108         if (ret != 0) {
1109                 cprintf("%s NO Invalid mailbox name, or access denied\r\n",
1110                         parms[0]);
1111                 return;
1112         }
1113
1114         /*
1115          * usergoto() formally takes us to the desired room, happily returning
1116          * the number of messages and number of new messages.  (If another
1117          * folder is selected, save its name so we can return there!!!!!)
1118          */
1119         if (IMAP->selected) {
1120                 strcpy(savedroom, CC->room.QRname);
1121         }
1122         usergoto(roomname, 0, 0, &msgs, &new);
1123
1124         /*
1125          * Now delete the room.
1126          */
1127         if (CtdlDoIHavePermissionToDeleteThisRoom(&CC->room)) {
1128                 schedule_room_for_deletion(&CC->room);
1129                 cprintf("%s OK DELETE completed\r\n", parms[0]);
1130         } else {
1131                 cprintf("%s NO Can't delete this folder.\r\n", parms[0]);
1132         }
1133
1134         /*
1135          * If another folder is selected, go back to that room so we can resume
1136          * our happy day without violent explosions.
1137          */
1138         if (IMAP->selected) {
1139                 usergoto(savedroom, 0, 0, &msgs, &new);
1140         }
1141 }
1142
1143
1144 /*
1145  * Back end function for imap_rename()
1146  */
1147 void imap_rename_backend(struct ctdlroom *qrbuf, void *data)
1148 {
1149         char foldername[SIZ];
1150         char newfoldername[SIZ];
1151         char newroomname[ROOMNAMELEN];
1152         int newfloor = 0;
1153         struct irl *irlp = NULL;        /* scratch pointer */
1154         struct irlparms *irlparms;
1155
1156         irlparms = (struct irlparms *) data;
1157         imap_mailboxname(foldername, sizeof foldername, qrbuf);
1158
1159         /* Rename subfolders */
1160         if ((!strncasecmp(foldername, irlparms->oldname,
1161                           strlen(irlparms->oldname))
1162              && (foldername[strlen(irlparms->oldname)] == '/'))) {
1163
1164                 sprintf(newfoldername, "%s/%s",
1165                         irlparms->newname,
1166                         &foldername[strlen(irlparms->oldname) + 1]
1167                     );
1168
1169                 newfloor = imap_roomname(newroomname,
1170                                          sizeof newroomname,
1171                                          newfoldername) & 0xFF;
1172
1173                 irlp = (struct irl *) malloc(sizeof(struct irl));
1174                 strcpy(irlp->irl_newroom, newroomname);
1175                 strcpy(irlp->irl_oldroom, qrbuf->QRname);
1176                 irlp->irl_newfloor = newfloor;
1177                 irlp->next = *(irlparms->irl);
1178                 *(irlparms->irl) = irlp;
1179         }
1180 }
1181
1182
1183 /*
1184  * Implements the RENAME command
1185  *
1186  */
1187 void imap_rename(int num_parms, char *parms[])
1188 {
1189         char old_room[ROOMNAMELEN];
1190         char new_room[ROOMNAMELEN];
1191         int oldr, newr;
1192         int new_floor;
1193         int r;
1194         struct irl *irl = NULL; /* the list */
1195         struct irl *irlp = NULL;        /* scratch pointer */
1196         struct irlparms irlparms;
1197
1198         if (strchr(parms[3], '\\') != NULL) {
1199                 cprintf("%s NO Invalid character in folder name\r\n",
1200                         parms[0]);
1201                 return;
1202         }
1203
1204         oldr = imap_roomname(old_room, sizeof old_room, parms[2]);
1205         newr = imap_roomname(new_room, sizeof new_room, parms[3]);
1206         new_floor = (newr & 0xFF);
1207
1208         r = CtdlRenameRoom(old_room, new_room, new_floor);
1209
1210         if (r == crr_room_not_found) {
1211                 cprintf("%s NO Could not locate this folder\r\n",
1212                         parms[0]);
1213                 return;
1214         }
1215         if (r == crr_already_exists) {
1216                 cprintf("%s '%s' already exists.\r\n", parms[0], parms[2]);
1217                 return;
1218         }
1219         if (r == crr_noneditable) {
1220                 cprintf("%s This folder is not editable.\r\n", parms[0]);
1221                 return;
1222         }
1223         if (r == crr_invalid_floor) {
1224                 cprintf("%s Folder root does not exist.\r\n", parms[0]);
1225                 return;
1226         }
1227         if (r == crr_access_denied) {
1228                 cprintf("%s You do not have permission to edit "
1229                         "this folder.\r\n", parms[0]);
1230                 return;
1231         }
1232         if (r != crr_ok) {
1233                 cprintf("%s NO Rename failed - undefined error %d\r\n",
1234                         parms[0], r);
1235                 return;
1236         }
1237
1238
1239         /* If this is the INBOX, then RFC2060 says we have to just move the
1240          * contents.  In a Citadel environment it's easier to rename the room
1241          * (already did that) and create a new inbox.
1242          */
1243         if (!strcasecmp(parms[2], "INBOX")) {
1244                 create_room(MAILROOM, 4, "", 0, 1, 0, VIEW_MAILBOX);
1245         }
1246
1247         /* Otherwise, do the subfolders.  Build a list of rooms to rename... */
1248         else {
1249                 irlparms.oldname = parms[2];
1250                 irlparms.newname = parms[3];
1251                 irlparms.irl = &irl;
1252                 ForEachRoom(imap_rename_backend, (void *) &irlparms);
1253
1254                 /* ... and now rename them. */
1255                 while (irl != NULL) {
1256                         r = CtdlRenameRoom(irl->irl_oldroom,
1257                                            irl->irl_newroom,
1258                                            irl->irl_newfloor);
1259                         if (r != crr_ok) {
1260                                 /* FIXME handle error returns better */
1261                                 lprintf(CTDL_ERR, "CtdlRenameRoom() error %d\n", r);
1262                         }
1263                         irlp = irl;
1264                         irl = irl->next;
1265                         free(irlp);
1266                 }
1267         }
1268
1269         cprintf("%s OK RENAME completed\r\n", parms[0]);
1270 }
1271
1272
1273
1274
1275 /* 
1276  * Main command loop for IMAP sessions.
1277  */
1278 void imap_command_loop(void)
1279 {
1280         char cmdbuf[SIZ];
1281         char *parms[SIZ];
1282         int num_parms;
1283         struct timeval tv1, tv2;
1284         suseconds_t total_time = 0;
1285
1286         gettimeofday(&tv1, NULL);
1287         CC->lastcmd = time(NULL);
1288         memset(cmdbuf, 0, sizeof cmdbuf);       /* Clear it, just in case */
1289         flush_output();
1290         if (client_getln(cmdbuf, sizeof cmdbuf) < 1) {
1291                 lprintf(CTDL_ERR, "Client disconnected: ending session.\r\n");
1292                 CC->kill_me = 1;
1293                 return;
1294         }
1295
1296         if (IMAP->authstate == imap_as_expecting_password) {
1297                 lprintf(CTDL_INFO, "IMAP: <password>\n");
1298         }
1299         else if (bmstrcasestr(cmdbuf, " LOGIN ")) {
1300                 lprintf(CTDL_INFO, "IMAP: LOGIN...\n");
1301         }
1302         else {
1303                 lprintf(CTDL_INFO, "IMAP: %s\n", cmdbuf);
1304         }
1305
1306         while (strlen(cmdbuf) < 5)
1307                 strcat(cmdbuf, " ");
1308
1309         /* strip off l/t whitespace and CRLF */
1310         if (cmdbuf[strlen(cmdbuf) - 1] == '\n')
1311                 cmdbuf[strlen(cmdbuf) - 1] = 0;
1312         if (cmdbuf[strlen(cmdbuf) - 1] == '\r')
1313                 cmdbuf[strlen(cmdbuf) - 1] = 0;
1314         striplt(cmdbuf);
1315
1316         /* If we're in the middle of a multi-line command, handle that */
1317         if (IMAP->authstate == imap_as_expecting_username) {
1318                 imap_auth_login_user(cmdbuf);
1319                 return;
1320         }
1321         if (IMAP->authstate == imap_as_expecting_password) {
1322                 imap_auth_login_pass(cmdbuf);
1323                 return;
1324         }
1325
1326         /* Ok, at this point we're in normal command mode.  The first thing
1327          * we do is print any incoming pages (yeah! we really do!)
1328          */
1329         imap_print_instant_messages();
1330
1331         /*
1332          * Before processing the command that was just entered... if we happen
1333          * to have a folder selected, we'd like to rescan that folder for new
1334          * messages, and for deletions/changes of existing messages.  This
1335          * could probably be optimized somehow, but IMAP sucks...
1336          */
1337         if (IMAP->selected) {
1338                 imap_rescan_msgids();
1339         }
1340
1341         /* Now for the command set. */
1342
1343         /* Grab the tag, command, and parameters.  Check syntax. */
1344         num_parms = imap_parameterize(parms, cmdbuf);
1345         if (num_parms < 2) {
1346                 cprintf("BAD syntax error\r\n");
1347         }
1348
1349         /* The commands below may be executed in any state */
1350
1351         else if ((!strcasecmp(parms[1], "NOOP"))
1352                  || (!strcasecmp(parms[1], "CHECK"))) {
1353                 cprintf("%s OK No operation\r\n",
1354                         parms[0]);
1355         }
1356
1357         else if (!strcasecmp(parms[1], "ID")) {
1358                 imap_id(num_parms, parms);
1359         }
1360
1361
1362         else if (!strcasecmp(parms[1], "LOGOUT")) {
1363                 if (IMAP->selected) {
1364                         imap_do_expunge();      /* yes, we auto-expunge */
1365                 }
1366                 cprintf("* BYE %s logging out\r\n", config.c_fqdn);
1367                 cprintf("%s OK Citadel IMAP session ended.\r\n",
1368                         parms[0]);
1369                 CC->kill_me = 1;
1370                 return;
1371         }
1372
1373         else if (!strcasecmp(parms[1], "LOGIN")) {
1374                 imap_login(num_parms, parms);
1375         }
1376
1377         else if (!strcasecmp(parms[1], "AUTHENTICATE")) {
1378                 imap_authenticate(num_parms, parms);
1379         }
1380
1381         else if (!strcasecmp(parms[1], "CAPABILITY")) {
1382                 imap_capability(num_parms, parms);
1383         }
1384 #ifdef HAVE_OPENSSL
1385         else if (!strcasecmp(parms[1], "STARTTLS")) {
1386                 imap_starttls(num_parms, parms);
1387         }
1388 #endif
1389         else if (!CC->logged_in) {
1390                 cprintf("%s BAD Not logged in.\r\n", parms[0]);
1391         }
1392
1393         /* The commans below require a logged-in state */
1394
1395         else if (!strcasecmp(parms[1], "SELECT")) {
1396                 imap_select(num_parms, parms);
1397         }
1398
1399         else if (!strcasecmp(parms[1], "EXAMINE")) {
1400                 imap_select(num_parms, parms);
1401         }
1402
1403         else if (!strcasecmp(parms[1], "LSUB")) {
1404                 imap_list(num_parms, parms);
1405         }
1406
1407         else if (!strcasecmp(parms[1], "LIST")) {
1408                 imap_list(num_parms, parms);
1409         }
1410
1411         else if (!strcasecmp(parms[1], "CREATE")) {
1412                 imap_create(num_parms, parms);
1413         }
1414
1415         else if (!strcasecmp(parms[1], "DELETE")) {
1416                 imap_delete(num_parms, parms);
1417         }
1418
1419         else if (!strcasecmp(parms[1], "RENAME")) {
1420                 imap_rename(num_parms, parms);
1421         }
1422
1423         else if (!strcasecmp(parms[1], "STATUS")) {
1424                 imap_status(num_parms, parms);
1425         }
1426
1427         else if (!strcasecmp(parms[1], "SUBSCRIBE")) {
1428                 imap_subscribe(num_parms, parms);
1429         }
1430
1431         else if (!strcasecmp(parms[1], "UNSUBSCRIBE")) {
1432                 imap_unsubscribe(num_parms, parms);
1433         }
1434
1435         else if (!strcasecmp(parms[1], "APPEND")) {
1436                 imap_append(num_parms, parms);
1437         }
1438
1439         else if (!strcasecmp(parms[1], "NAMESPACE")) {
1440                 imap_namespace(num_parms, parms);
1441         }
1442
1443         else if (!strcasecmp(parms[1], "SETACL")) {
1444                 imap_setacl(num_parms, parms);
1445         }
1446
1447         else if (!strcasecmp(parms[1], "DELETEACL")) {
1448                 imap_deleteacl(num_parms, parms);
1449         }
1450
1451         else if (!strcasecmp(parms[1], "GETACL")) {
1452                 imap_getacl(num_parms, parms);
1453         }
1454
1455         else if (!strcasecmp(parms[1], "LISTRIGHTS")) {
1456                 imap_listrights(num_parms, parms);
1457         }
1458
1459         else if (!strcasecmp(parms[1], "MYRIGHTS")) {
1460                 imap_myrights(num_parms, parms);
1461         }
1462
1463         else if (!strcasecmp(parms[1], "GETMETADATA")) {
1464                 imap_getmetadata(num_parms, parms);
1465         }
1466
1467         else if (!strcasecmp(parms[1], "SETMETADATA")) {
1468                 imap_setmetadata(num_parms, parms);
1469         }
1470
1471         else if (IMAP->selected == 0) {
1472                 cprintf("%s BAD no folder selected\r\n", parms[0]);
1473         }
1474
1475         /* The commands below require the SELECT state on a mailbox */
1476
1477         else if (!strcasecmp(parms[1], "FETCH")) {
1478                 imap_fetch(num_parms, parms);
1479         }
1480
1481         else if ((!strcasecmp(parms[1], "UID"))
1482                  && (!strcasecmp(parms[2], "FETCH"))) {
1483                 imap_uidfetch(num_parms, parms);
1484         }
1485
1486         else if (!strcasecmp(parms[1], "SEARCH")) {
1487                 imap_search(num_parms, parms);
1488         }
1489
1490         else if ((!strcasecmp(parms[1], "UID"))
1491                  && (!strcasecmp(parms[2], "SEARCH"))) {
1492                 imap_uidsearch(num_parms, parms);
1493         }
1494
1495         else if (!strcasecmp(parms[1], "STORE")) {
1496                 imap_store(num_parms, parms);
1497         }
1498
1499         else if ((!strcasecmp(parms[1], "UID"))
1500                  && (!strcasecmp(parms[2], "STORE"))) {
1501                 imap_uidstore(num_parms, parms);
1502         }
1503
1504         else if (!strcasecmp(parms[1], "COPY")) {
1505                 imap_copy(num_parms, parms);
1506         }
1507
1508         else if ((!strcasecmp(parms[1], "UID"))
1509                  && (!strcasecmp(parms[2], "COPY"))) {
1510                 imap_uidcopy(num_parms, parms);
1511         }
1512
1513         else if (!strcasecmp(parms[1], "EXPUNGE")) {
1514                 imap_expunge(num_parms, parms);
1515         }
1516
1517         else if (!strcasecmp(parms[1], "CLOSE")) {
1518                 imap_close(num_parms, parms);
1519         }
1520
1521         /* End of commands.  If we get here, the command is either invalid
1522          * or unimplemented.
1523          */
1524
1525         else {
1526                 cprintf("%s BAD command unrecognized\r\n", parms[0]);
1527         }
1528
1529         /* If the client transmitted a message we can free it now */
1530         imap_free_transmitted_message();
1531
1532         gettimeofday(&tv2, NULL);
1533         total_time = (tv2.tv_usec + (tv2.tv_sec * 1000000)) - (tv1.tv_usec + (tv1.tv_sec * 1000000));
1534         lprintf(CTDL_DEBUG, "IMAP command completed in %ld.%ld seconds\n",
1535                 (total_time / 1000000),
1536                 (total_time % 1000000)
1537         );
1538 }
1539
1540
1541 /*
1542  * This function is called to register the IMAP extension with Citadel.
1543  */
1544 char *serv_imap_init(void)
1545 {
1546         CtdlRegisterServiceHook(config.c_imap_port,
1547                                 NULL, imap_greeting, imap_command_loop, NULL);
1548 #ifdef HAVE_OPENSSL
1549         CtdlRegisterServiceHook(config.c_imaps_port,
1550                                 NULL, imaps_greeting, imap_command_loop, NULL);
1551 #endif
1552         CtdlRegisterSessionHook(imap_cleanup_function, EVT_STOP);
1553         return "$Id$";
1554 }