fc68ae3b2ecc2f09e7adebd5269a06a5f3177418
[citadel.git] / citadel / serv_imap.c
1 /*
2  * $Id$ 
3  *
4  * IMAP server for the Citadel/UX system
5  * Copyright (C) 2000-2001 by Art Cancro and others.
6  * This code is released under the terms of the GNU General Public License.
7  *
8  * WARNING: this is an incomplete implementation, still in progress.  Parts of
9  * it work, but it's not really usable yet from a user perspective.
10  *
11  * WARNING: Mark Crispin is an idiot.  IMAP is the most brain-damaged protocol
12  * you will ever have the profound lack of pleasure to encounter.
13  * 
14  */
15
16 #include "sysdep.h"
17 #include <stdlib.h>
18 #include <unistd.h>
19 #include <stdio.h>
20 #include <fcntl.h>
21 #include <signal.h>
22 #include <pwd.h>
23 #include <errno.h>
24 #include <sys/types.h>
25 #include <sys/time.h>
26 #include <sys/wait.h>
27 #include <ctype.h>
28 #include <string.h>
29 #include <limits.h>
30 #include "citadel.h"
31 #include "server.h"
32 #include <time.h>
33 #include "sysdep_decls.h"
34 #include "citserver.h"
35 #include "support.h"
36 #include "config.h"
37 #include "dynloader.h"
38 #include "room_ops.h"
39 #include "user_ops.h"
40 #include "policy.h"
41 #include "database.h"
42 #include "msgbase.h"
43 #include "tools.h"
44 #include "internet_addressing.h"
45 #include "serv_imap.h"
46 #include "imap_tools.h"
47 #include "imap_fetch.h"
48 #include "imap_search.h"
49 #include "imap_store.h"
50 #include "imap_misc.h"
51
52
53 long SYM_IMAP;
54
55
56 /*
57  * If there is a message ID map in memory, free it
58  */
59 void imap_free_msgids(void) {
60         if (IMAP->msgids != NULL) {
61                 phree(IMAP->msgids);
62                 IMAP->msgids = NULL;
63                 IMAP->num_msgs = 0;
64         }
65         if (IMAP->flags != NULL) {
66                 phree(IMAP->flags);
67                 IMAP->flags = NULL;
68         }
69 }
70
71
72 /*
73  * Back end for imap_load_msgids()
74  *
75  * FIXME: this should be optimized by figuring out a way to allocate memory
76  * once rather than doing a reallok() for each message.
77  */
78 void imap_add_single_msgid(long msgnum, void *userdata) {
79         
80         IMAP->num_msgs = IMAP->num_msgs + 1;
81         if (IMAP->msgids == NULL) {
82                 IMAP->msgids = mallok(IMAP->num_msgs * sizeof(long));
83         }
84         else {
85                 IMAP->msgids = reallok(IMAP->msgids,
86                         IMAP->num_msgs * sizeof(long));
87         }
88         if (IMAP->flags == NULL) {
89                 IMAP->flags = mallok(IMAP->num_msgs * sizeof(long));
90         }
91         else {
92                 IMAP->flags = reallok(IMAP->flags,
93                         IMAP->num_msgs * sizeof(long));
94         }
95         IMAP->msgids[IMAP->num_msgs - 1] = msgnum;
96         IMAP->flags[IMAP->num_msgs - 1] = 0;
97 }
98
99
100
101 /*
102  * Set up a message ID map for the current room (folder)
103  */
104 void imap_load_msgids(void) {
105          
106         if (IMAP->selected == 0) {
107                 lprintf(5, "imap_load_msgids() can't run; no room selected\n");
108                 return;
109         }
110
111         imap_free_msgids();     /* If there was already a map, free it */
112
113         CtdlForEachMessage(MSGS_ALL, 0L, (-63), NULL, NULL,
114                 imap_add_single_msgid, NULL);
115
116         lprintf(9, "imap_load_msgids() mapped %d messages\n", IMAP->num_msgs);
117 }
118
119
120 /*
121  * Re-scan the selected room (folder) and see if it's been changed at all
122  */
123 void imap_rescan_msgids(void) {
124
125         int original_num_msgs = 0;
126         long original_highest = 0L;
127         int i;
128         int count;
129
130         if (IMAP->selected == 0) {
131                 lprintf(5, "imap_load_msgids() can't run; no room selected\n");
132                 return;
133         }
134
135
136         /*
137          * Check to see if any of the messages we know about have been expunged
138          */
139         if (IMAP->num_msgs > 0)
140          for (i=0; i<IMAP->num_msgs; ++i) {
141
142                 count = CtdlForEachMessage(MSGS_EQ, IMAP->msgids[i],
143                         (-63), NULL, NULL, NULL, NULL);
144
145                 if (count == 0) {
146                         cprintf("* %d EXPUNGE\r\n", i+1);
147
148                         /* Here's some nice stupid nonsense.  When a message
149                          * is expunged, we have to slide all the existing
150                          * messages up in the message array.
151                          */
152                         --IMAP->num_msgs;
153                         memcpy(&IMAP->msgids[i], &IMAP->msgids[i+1],
154                                 (sizeof(long)*(IMAP->num_msgs-i)) );
155                         memcpy(&IMAP->flags[i], &IMAP->flags[i+1],
156                                 (sizeof(long)*(IMAP->num_msgs-i)) );
157
158                         --i;
159                 }
160
161         }
162
163         /*
164          * Remember how many messages were here before we re-scanned.
165          */
166         original_num_msgs = IMAP->num_msgs;
167         if (IMAP->num_msgs > 0) {
168                 original_highest = IMAP->msgids[IMAP->num_msgs - 1];
169         }
170         else {
171                 original_highest = 0L;
172         }
173
174         /*
175          * Now peruse the room for *new* messages only.
176          */
177         CtdlForEachMessage(MSGS_GT, original_highest, (-63), NULL, NULL,
178                 imap_add_single_msgid, NULL);
179
180         /*
181          * If new messages have arrived, tell the client about them.
182          */
183         if (IMAP->num_msgs > original_num_msgs) {
184                 cprintf("* %d EXISTS\r\n", IMAP->num_msgs);
185         }
186
187 }
188
189
190
191
192
193
194
195 /*
196  * This cleanup function blows away the temporary memory and files used by
197  * the IMAP server.
198  */
199 void imap_cleanup_function(void) {
200
201         /* Don't do this stuff if this is not a IMAP session! */
202         if (CC->h_command_function != imap_command_loop) return;
203
204         lprintf(9, "Performing IMAP cleanup hook\n");
205         imap_free_msgids();
206         lprintf(9, "Finished IMAP cleanup hook\n");
207 }
208
209
210
211 /*
212  * Here's where our IMAP session begins its happy day.
213  */
214 void imap_greeting(void) {
215
216         strcpy(CC->cs_clientname, "IMAP session");
217         CtdlAllocUserData(SYM_IMAP, sizeof(struct citimap));
218         IMAP->authstate = imap_as_normal;
219
220         cprintf("* OK %s Citadel/UX IMAP4rev1 server ready\r\n",
221                 config.c_fqdn);
222 }
223
224
225 /*
226  * implements the LOGIN command (ordinary username/password login)
227  */
228 void imap_login(int num_parms, char *parms[]) {
229         if (CtdlLoginExistingUser(parms[2]) == login_ok) {
230                 if (CtdlTryPassword(parms[3]) == pass_ok) {
231                         cprintf("%s OK login successful\r\n", parms[0]);
232                         return;
233                 }
234         }
235
236         cprintf("%s BAD Login incorrect\r\n", parms[0]);
237 }
238
239
240 /*
241  * Implements the AUTHENTICATE command
242  */
243 void imap_authenticate(int num_parms, char *parms[]) {
244         char buf[SIZ];
245
246         if (num_parms != 3) {
247                 cprintf("%s BAD incorrect number of parameters\r\n", parms[0]);
248                 return;
249         }
250
251         if (!strcasecmp(parms[2], "LOGIN")) {
252                 encode_base64(buf, "Username:");
253                 cprintf("+ %s\r\n", buf);
254                 IMAP->authstate = imap_as_expecting_username;
255                 strcpy(IMAP->authseq, parms[0]);
256                 return;
257         }
258
259         else {
260                 cprintf("%s NO AUTHENTICATE %s failed\r\n",
261                         parms[0], parms[1]);
262         }
263 }
264
265 void imap_auth_login_user(char *cmd) {
266         char buf[SIZ];
267
268         decode_base64(buf, cmd);
269         CtdlLoginExistingUser(buf);
270         encode_base64(buf, "Password:");
271         cprintf("+ %s\r\n", buf);
272         IMAP->authstate = imap_as_expecting_password;
273         return;
274 }
275
276 void imap_auth_login_pass(char *cmd) {
277         char buf[SIZ];
278
279         decode_base64(buf, cmd);
280         if (CtdlTryPassword(buf) == pass_ok) {
281                 cprintf("%s OK authentication succeeded\r\n", IMAP->authseq);
282         }
283         else {
284                 cprintf("%s NO authentication failed\r\n", IMAP->authseq);
285         }
286         IMAP->authstate = imap_as_normal;
287         return;
288 }
289
290
291
292 /*
293  * implements the CAPABILITY command
294  */
295 void imap_capability(int num_parms, char *parms[]) {
296         cprintf("* CAPABILITY IMAP4 IMAP4REV1 AUTH=LOGIN\r\n");
297         cprintf("%s OK CAPABILITY completed\r\n", parms[0]);
298 }
299
300
301
302
303
304 /*
305  * implements the SELECT command
306  */
307 void imap_select(int num_parms, char *parms[]) {
308         char towhere[SIZ];
309         char augmented_roomname[ROOMNAMELEN];
310         int c = 0;
311         int ok = 0;
312         int ra = 0;
313         struct quickroom QRscratch;
314         int msgs, new;
315         int floornum;
316         int roomflags;
317         int i;
318
319         /* Convert the supplied folder name to a roomname */
320         i = imap_roomname(towhere, sizeof towhere, parms[2]);
321         if (i < 0) {
322                 cprintf("%s NO Invalid mailbox name.\r\n", parms[0]);
323                 IMAP->selected = 0;
324                 return;
325         }
326         floornum = (i & 0x00ff);
327         roomflags = (i & 0xff00);
328
329         /* First try a regular match */
330         c = getroom(&QRscratch, towhere);
331
332         /* Then try a mailbox name match */
333         if (c != 0) {
334                 MailboxName(augmented_roomname, &CC->usersupp, towhere);
335                 c = getroom(&QRscratch, augmented_roomname);
336                 if (c == 0)
337                         strcpy(towhere, augmented_roomname);
338         }
339
340         /* If the room exists, check security/access */
341         if (c == 0) {
342                 /* See if there is an existing user/room relationship */
343                 ra = CtdlRoomAccess(&QRscratch, &CC->usersupp);
344
345                 /* normal clients have to pass through security */
346                 if (ra & UA_KNOWN) {
347                         ok = 1;
348                 }
349         }
350
351         /* Fail here if no such room */
352         if (!ok) {
353                 cprintf("%s NO ... no such room, or access denied\r\n",
354                         parms[0]);
355                 IMAP->selected = 0;
356                 return;
357         }
358
359         /*
360          * usergoto() formally takes us to the desired room, happily returning
361          * the number of messages and number of new messages.
362          */
363         usergoto(QRscratch.QRname, 0, &msgs, &new);
364         IMAP->selected = 1;
365
366         if (!strcasecmp(parms[1], "EXAMINE")) {
367                 IMAP->readonly = 1;
368         }
369         else {
370                 IMAP->readonly = 0;
371         }
372
373         imap_load_msgids();
374
375         /* FIXME ... much more info needs to be supplied here */
376         cprintf("* %d EXISTS\r\n", msgs);
377         cprintf("* %d RECENT\r\n", new);
378         cprintf("* FLAGS (\\Deleted)\r\n");
379         cprintf("* OK [PERMANENTFLAGS (\\Deleted)] permanent flags\r\n");
380         cprintf("* OK [UIDVALIDITY 0] UIDs valid\r\n");
381         cprintf("%s OK [%s] %s completed\r\n",
382                 parms[0],
383                 (IMAP->readonly ? "READ-ONLY" : "READ-WRITE"),
384                 parms[1]);
385 }
386
387
388
389 /*
390  * does the real work for expunge
391  */
392 int imap_do_expunge(void) {
393         int i;
394         int num_expunged = 0;
395
396         if (IMAP->num_msgs > 0) for (i=0; i<IMAP->num_msgs; ++i) {
397                 if (IMAP->flags[i] & IMAP_DELETED) {
398                         CtdlDeleteMessages(CC->quickroom.QRname,
399                                         IMAP->msgids[i], "");
400                         ++num_expunged;
401                 }
402         }
403
404         if (num_expunged > 0) {
405                 imap_rescan_msgids();
406         }
407
408         return(num_expunged);
409 }
410
411
412 /*
413  * implements the EXPUNGE command syntax
414  */
415 void imap_expunge(int num_parms, char *parms[]) {
416         int num_expunged = 0;
417         imap_do_expunge();
418         cprintf("%s OK expunged %d messages.\r\n", parms[0], num_expunged);
419 }
420
421
422 /*
423  * implements the CLOSE command
424  */
425 void imap_close(int num_parms, char *parms[]) {
426
427         /* Yes, we always expunge on close. */
428         imap_do_expunge();
429
430         IMAP->selected = 0;
431         IMAP->readonly = 0;
432         imap_free_msgids();
433         cprintf("%s OK CLOSE completed\r\n", parms[0]);
434 }
435
436
437
438
439 /*
440  * Used by LIST and LSUB to show the floors in the listing
441  */
442 void imap_list_floors(char *cmd) {
443         int i;
444         struct floor *fl;
445
446         for (i=0; i<MAXFLOORS; ++i) {
447                 fl = cgetfloor(i);
448                 if (fl->f_flags & F_INUSE) {
449                         cprintf("* %s (\\NoSelect) \"|\" ", cmd);
450                         imap_strout(fl->f_name);
451                         cprintf("\r\n");
452                 }
453         }
454 }
455
456
457
458 /*
459  * Back end for imap_lsub()
460  *
461  * IMAP "subscribed folder" is equivocated to Citadel "known rooms."  This
462  * may or may not be the desired behavior in the future.
463  */
464 void imap_lsub_listroom(struct quickroom *qrbuf, void *data) {
465         char buf[SIZ];
466         int ra;
467
468         /* Only list rooms to which the user has access!! */
469         ra = CtdlRoomAccess(qrbuf, &CC->usersupp);
470         if (ra & UA_KNOWN) {
471                 imap_mailboxname(buf, sizeof buf, qrbuf);
472                 cprintf("* LSUB () \"|\" ");
473                 imap_strout(buf);
474                 cprintf("\r\n");
475         }
476 }
477
478
479 /*
480  * Implements the LSUB command
481  *
482  * FIXME: Handle wildcards, please.
483  */
484 void imap_lsub(int num_parms, char *parms[]) {
485         imap_list_floors("LSUB");
486         ForEachRoom(imap_lsub_listroom, NULL);
487         cprintf("%s OK LSUB completed\r\n", parms[0]);
488 }
489
490
491
492 /*
493  * Back end for imap_list()
494  */
495 void imap_list_listroom(struct quickroom *qrbuf, void *data) {
496         char buf[SIZ];
497         int ra;
498
499         /* Only list rooms to which the user has access!! */
500         ra = CtdlRoomAccess(qrbuf, &CC->usersupp);
501         if ( (ra & UA_KNOWN) 
502           || ((ra & UA_GOTOALLOWED) && (ra & UA_ZAPPED))) {
503                 imap_mailboxname(buf, sizeof buf, qrbuf);
504                 cprintf("* LIST () \"|\" ");
505                 imap_strout(buf);
506                 cprintf("\r\n");
507         }
508 }
509
510
511 /*
512  * Implements the LIST command
513  *
514  * FIXME: Handle wildcards, please.
515  */
516 void imap_list(int num_parms, char *parms[]) {
517         imap_list_floors("LIST");
518         ForEachRoom(imap_list_listroom, NULL);
519         cprintf("%s OK LIST completed\r\n", parms[0]);
520 }
521
522
523
524 /*
525  * Implements the CREATE command
526  *
527  */
528 void imap_create(int num_parms, char *parms[]) {
529         int ret;
530         char roomname[ROOMNAMELEN];
531         int floornum;
532         int flags;
533         int newroomtype;
534
535         ret = imap_roomname(roomname, sizeof roomname, parms[2]);
536         if (ret < 0) {
537                 cprintf("%s NO Invalid mailbox name or location\r\n",
538                         parms[0]);
539                 return;
540         }
541         floornum = ( ret & 0x00ff );    /* lower 8 bits = floor number */
542         flags =    ( ret & 0xff00 );    /* upper 8 bits = flags        */
543
544         if (flags & IR_MAILBOX) {
545                 newroomtype = 4;        /* private mailbox */
546         }
547         else {
548                 newroomtype = 0;        /* public folder */
549         }
550
551         lprintf(7, "Create new room <%s> on floor <%d> with type <%d>\n",
552                 roomname, floornum, newroomtype);
553
554         ret = create_room(roomname, newroomtype, "", floornum, 1);
555         if (ret == 0) {
556                 cprintf("%s NO Mailbox already exists, or create failed\r\n",
557                         parms[0]);
558         }
559         else {
560                 cprintf("%s OK CREATE completed\r\n", parms[0]);
561         }
562 }
563
564
565 /*
566  * Locate a room by its IMAP folder name, and check access to it
567  */
568 int imap_grabroom(char *returned_roomname, char *foldername) {
569         int ret;
570         char augmented_roomname[ROOMNAMELEN];
571         char roomname[ROOMNAMELEN];
572         int c;
573         struct quickroom QRscratch;
574         int ra;
575         int ok = 0;
576
577         ret = imap_roomname(roomname, sizeof roomname, foldername);
578         if (ret < 0) {
579                 return(1);
580         }
581
582         /* First try a regular match */
583         c = getroom(&QRscratch, roomname);
584
585         /* Then try a mailbox name match */
586         if (c != 0) {
587                 MailboxName(augmented_roomname, &CC->usersupp, roomname);
588                 c = getroom(&QRscratch, augmented_roomname);
589                 if (c == 0)
590                         strcpy(roomname, augmented_roomname);
591         }
592
593         /* If the room exists, check security/access */
594         if (c == 0) {
595                 /* See if there is an existing user/room relationship */
596                 ra = CtdlRoomAccess(&QRscratch, &CC->usersupp);
597
598                 /* normal clients have to pass through security */
599                 if (ra & UA_KNOWN) {
600                         ok = 1;
601                 }
602         }
603
604         /* Fail here if no such room */
605         if (!ok) {
606                 strcpy(returned_roomname, "");
607                 return(2);
608         }
609         else {
610                 strcpy(returned_roomname, QRscratch.QRname);
611                 return(0);
612         }
613 }
614
615
616 /*
617  * Implements the STATUS command (sort of)
618  *
619  */
620 void imap_status(int num_parms, char *parms[]) {
621         int ret;
622         char roomname[ROOMNAMELEN];
623         char buf[SIZ];
624         char savedroom[ROOMNAMELEN];
625         int msgs, new;
626
627         ret = imap_grabroom(roomname, parms[2]);
628         if (ret != 0) {
629                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
630                         parms[0]);
631                 return;
632         }
633
634         /*
635          * usergoto() formally takes us to the desired room, happily returning
636          * the number of messages and number of new messages.  (If another
637          * folder is selected, save its name so we can return there!!!!!)
638          */
639         if (IMAP->selected) {
640                 strcpy(savedroom, CC->quickroom.QRname);
641         }
642         usergoto(roomname, 0, &msgs, &new);
643
644         /*
645          * Tell the client what it wants to know.  In fact, tell it *more* than
646          * it wants to know.  We happily IGnore the supplied status data item
647          * names and simply spew all possible data items.  It's far easier to
648          * code and probably saves us some processing time too.
649          *
650          * FIXME we need to implement RECENT and UNSEEN eventually...
651          */
652
653         imap_mailboxname(buf, sizeof buf, &CC->quickroom);
654         cprintf("* STATUS ");
655         imap_strout(buf);
656         cprintf(" (MESSAGES %d RECENT 0 UIDNEXT %ld "
657                 "UIDVALIDITY 0 UNSEEN 0)\r\n",
658                 msgs,
659                 CitControl.MMhighest + 1
660         );
661
662         /*
663          * If another folder is selected, go back to that room so we can resume
664          * our happy day without violent explosions.
665          */
666         if (IMAP->selected) {
667                 usergoto(savedroom, 0, &msgs, &new);
668         }
669
670         /*
671          * Oooh, look, we're done!
672          */
673         cprintf("%s OK STATUS completed\r\n", parms[0]);
674 }
675
676
677
678 /*
679  * Implements the DELETE command
680  *
681  */
682 void imap_delete(int num_parms, char *parms[]) {
683         int ret;
684         char roomname[ROOMNAMELEN];
685         char savedroom[ROOMNAMELEN];
686         int msgs, new;
687
688         ret = imap_grabroom(roomname, parms[2]);
689         if (ret != 0) {
690                 cprintf("%s NO Invalid mailbox name, or access denied\r\n",
691                         parms[0]);
692                 return;
693         }
694
695         /*
696          * usergoto() formally takes us to the desired room, happily returning
697          * the number of messages and number of new messages.  (If another
698          * folder is selected, save its name so we can return there!!!!!)
699          */
700         if (IMAP->selected) {
701                 strcpy(savedroom, CC->quickroom.QRname);
702         }
703         usergoto(roomname, 0, &msgs, &new);
704
705         /*
706          * Now delete the room.
707          */
708         if (CtdlDoIHavePermissionToDeleteThisRoom(&CC->quickroom)) {
709                 cprintf("%s OK DELETE completed\r\n", parms[0]);
710                 delete_room(&CC->quickroom);
711         }
712         else {
713                 cprintf("%s NO Can't delete this folder.\r\n", parms[0]);
714         }
715
716         /*
717          * If another folder is selected, go back to that room so we can resume
718          * our happy day without violent explosions.
719          */
720         if (IMAP->selected) {
721                 usergoto(savedroom, 0, &msgs, &new);
722         }
723 }
724
725
726
727
728 /* 
729  * Main command loop for IMAP sessions.
730  */
731 void imap_command_loop(void) {
732         char cmdbuf[SIZ];
733         char *parms[SIZ];
734         int num_parms;
735
736         time(&CC->lastcmd);
737         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
738         if (client_gets(cmdbuf) < 1) {
739                 lprintf(3, "IMAP socket is broken.  Ending session.\r\n");
740                 CC->kill_me = 1;
741                 return;
742         }
743
744         lprintf(5, "citserver[%3d]: %s\r\n", CC->cs_pid, cmdbuf);
745         while (strlen(cmdbuf) < 5) strcat(cmdbuf, " ");
746
747
748         /* strip off l/t whitespace and CRLF */
749         if (cmdbuf[strlen(cmdbuf)-1]=='\n') cmdbuf[strlen(cmdbuf)-1]=0;
750         if (cmdbuf[strlen(cmdbuf)-1]=='\r') cmdbuf[strlen(cmdbuf)-1]=0;
751         striplt(cmdbuf);
752
753         /* If we're in the middle of a multi-line command, handle that */
754         if (IMAP->authstate == imap_as_expecting_username) {
755                 imap_auth_login_user(cmdbuf);
756                 return;
757         }
758         if (IMAP->authstate == imap_as_expecting_password) {
759                 imap_auth_login_pass(cmdbuf);
760                 return;
761         }
762
763
764         /* Ok, at this point we're in normal command mode.  The first thing
765          * we do is print any incoming pages (yeah! we really do!)
766          */
767         imap_print_express_messages();
768
769         /*
770          * Before processing the command that was just entered... if we happen
771          * to have a folder selected, we'd like to rescan that folder for new
772          * messages, and for deletions/changes of existing messages.  This
773          * could probably be optimized somehow, but IMAP sucks...
774          */
775         if (IMAP->selected) {
776                 imap_rescan_msgids();
777         }
778
779         /* Now for the command set. */
780
781         /* Grab the tag, command, and parameters.  Check syntax. */
782         num_parms = imap_parameterize(parms, cmdbuf);
783         if (num_parms < 2) {
784                 cprintf("BAD syntax error\r\n");
785         }
786
787         /* The commands below may be executed in any state */
788
789         else if ( (!strcasecmp(parms[1], "NOOP"))
790            || (!strcasecmp(parms[1], "CHECK")) ) {
791                 cprintf("%s OK This command successfully did nothing.\r\n",
792                         parms[0]);
793         }
794
795         else if (!strcasecmp(parms[1], "LOGOUT")) {
796                 cprintf("* BYE %s logging out\r\n", config.c_fqdn);
797                 cprintf("%s OK thank you for using Citadel IMAP\r\n", parms[0]);
798                 CC->kill_me = 1;
799                 return;
800         }
801
802         else if (!strcasecmp(parms[1], "LOGIN")) {
803                 imap_login(num_parms, parms);
804         }
805
806         else if (!strcasecmp(parms[1], "AUTHENTICATE")) {
807                 imap_authenticate(num_parms, parms);
808         }
809
810         else if (!strcasecmp(parms[1], "CAPABILITY")) {
811                 imap_capability(num_parms, parms);
812         }
813
814         else if (!CC->logged_in) {
815                 cprintf("%s BAD Not logged in.\r\n", parms[0]);
816         }
817
818         /* The commans below require a logged-in state */
819
820         else if (!strcasecmp(parms[1], "SELECT")) {
821                 imap_select(num_parms, parms);
822         }
823
824         else if (!strcasecmp(parms[1], "EXAMINE")) {
825                 imap_select(num_parms, parms);
826         }
827
828         else if (!strcasecmp(parms[1], "LSUB")) {
829                 imap_lsub(num_parms, parms);
830         }
831
832         else if (!strcasecmp(parms[1], "LIST")) {
833                 imap_list(num_parms, parms);
834         }
835
836         else if (!strcasecmp(parms[1], "CREATE")) {
837                 imap_create(num_parms, parms);
838         }
839
840         else if (!strcasecmp(parms[1], "DELETE")) {
841                 imap_delete(num_parms, parms);
842         }
843
844         else if (!strcasecmp(parms[1], "STATUS")) {
845                 imap_status(num_parms, parms);
846         }
847
848         else if (IMAP->selected == 0) {
849                 cprintf("%s BAD no folder selected\r\n", parms[0]);
850         }
851
852         /* The commands below require the SELECT state on a mailbox */
853
854         else if (!strcasecmp(parms[1], "FETCH")) {
855                 imap_fetch(num_parms, parms);
856         }
857
858         else if ( (!strcasecmp(parms[1], "UID"))
859                 && (!strcasecmp(parms[2], "FETCH")) ) {
860                 imap_uidfetch(num_parms, parms);
861         }
862
863         else if (!strcasecmp(parms[1], "SEARCH")) {
864                 imap_search(num_parms, parms);
865         }
866
867         else if ( (!strcasecmp(parms[1], "UID"))
868                 && (!strcasecmp(parms[2], "SEARCH")) ) {
869                 imap_uidsearch(num_parms, parms);
870         }
871
872         else if (!strcasecmp(parms[1], "STORE")) {
873                 imap_store(num_parms, parms);
874         }
875
876         else if ( (!strcasecmp(parms[1], "UID"))
877                 && (!strcasecmp(parms[2], "STORE")) ) {
878                 imap_uidstore(num_parms, parms);
879         }
880
881         else if (!strcasecmp(parms[1], "COPY")) {
882                 imap_copy(num_parms, parms);
883         }
884
885         else if ( (!strcasecmp(parms[1], "UID"))
886                 && (!strcasecmp(parms[2], "COPY")) ) {
887                 imap_uidcopy(num_parms, parms);
888         }
889
890         else if (!strcasecmp(parms[1], "EXPUNGE")) {
891                 imap_expunge(num_parms, parms);
892         }
893
894         else if (!strcasecmp(parms[1], "CLOSE")) {
895                 imap_close(num_parms, parms);
896         }
897
898         /* End of commands.  If we get here, the command is either invalid
899          * or unimplemented.
900          */
901
902         else {
903                 cprintf("%s BAD command unrecognized\r\n", parms[0]);
904         }
905
906 }
907
908
909
910 /*
911  * This function is called by dynloader.c to register the IMAP module
912  * with the Citadel server.
913  */
914 char *Dynamic_Module_Init(void)
915 {
916         SYM_IMAP = CtdlGetDynamicSymbol();
917         CtdlRegisterServiceHook(config.c_imap_port,
918                                 NULL,
919                                 imap_greeting,
920                                 imap_command_loop);
921         CtdlRegisterSessionHook(imap_cleanup_function, EVT_STOP);
922         return "$Id$";
923 }