]> code.citadel.org Git - citadel.git/blob - citadel/serv_imap.c
* imap
[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         char *pattern;
468
469         pattern = (char *)data;
470         lprintf(9, "lsub pattern: <%s>\n", pattern);
471
472         /* Only list rooms to which the user has access!! */
473         ra = CtdlRoomAccess(qrbuf, &CC->usersupp);
474         if (ra & UA_KNOWN) {
475                 imap_mailboxname(buf, sizeof buf, qrbuf);
476                 if (imap_mailbox_matches_pattern(pattern, buf)) {
477                         cprintf("* LSUB () \"|\" ");
478                         imap_strout(buf);
479                         cprintf("\r\n");
480                 }
481         }
482 }
483
484
485 /*
486  * Implements the LSUB command
487  *
488  * FIXME: Handle wildcards, please.
489  */
490 void imap_lsub(int num_parms, char *parms[]) {
491         char pattern[SIZ];
492         if (num_parms < 4) {
493                 cprintf("%s BAD arguments invalid\r\n", parms[0]);
494                 return;
495         }
496         sprintf(pattern, "%s%s", parms[2], parms[3]);
497
498         if (strlen(parms[3])==0) {
499                 cprintf("* LIST (\\Noselect) \"|\" \"\"\r\n");
500         }
501
502         else {
503                 imap_list_floors("LSUB");
504                 ForEachRoom(imap_lsub_listroom, pattern);
505         }
506
507         cprintf("%s OK LSUB completed\r\n", parms[0]);
508 }
509
510
511
512 /*
513  * Back end for imap_list()
514  */
515 void imap_list_listroom(struct quickroom *qrbuf, void *data) {
516         char buf[SIZ];
517         int ra;
518         char *pattern;
519
520         pattern = (char *)data;
521         lprintf(9, "list pattern: <%s>\n", pattern);
522
523         /* Only list rooms to which the user has access!! */
524         ra = CtdlRoomAccess(qrbuf, &CC->usersupp);
525         if ( (ra & UA_KNOWN) 
526           || ((ra & UA_GOTOALLOWED) && (ra & UA_ZAPPED))) {
527                 imap_mailboxname(buf, sizeof buf, qrbuf);
528                 if (imap_mailbox_matches_pattern(pattern, buf)) {
529                         cprintf("* LIST () \"|\" ");
530                         imap_strout(buf);
531                         cprintf("\r\n");
532                 }
533         }
534 }
535
536
537 /*
538  * Implements the LIST command
539  *
540  * FIXME: Handle wildcards, please.
541  */
542 void imap_list(int num_parms, char *parms[]) {
543         char pattern[SIZ];
544         if (num_parms < 4) {
545                 cprintf("%s BAD arguments invalid\r\n", parms[0]);
546                 return;
547         }
548         sprintf(pattern, "%s%s", parms[2], parms[3]);
549
550         if (strlen(parms[3])==0) {
551                 cprintf("* LIST (\\Noselect) \"|\" \"\"\r\n");
552         }
553
554         else {
555                 imap_list_floors("LIST");
556                 ForEachRoom(imap_list_listroom, pattern);
557         }
558
559         cprintf("%s OK LIST completed\r\n", parms[0]);
560 }
561
562
563
564 /*
565  * Implements the CREATE command
566  *
567  */
568 void imap_create(int num_parms, char *parms[]) {
569         int ret;
570         char roomname[ROOMNAMELEN];
571         int floornum;
572         int flags;
573         int newroomtype;
574
575         ret = imap_roomname(roomname, sizeof roomname, parms[2]);
576         if (ret < 0) {
577                 cprintf("%s NO Invalid mailbox name or location\r\n",
578                         parms[0]);
579                 return;
580         }
581         floornum = ( ret & 0x00ff );    /* lower 8 bits = floor number */
582         flags =    ( ret & 0xff00 );    /* upper 8 bits = flags        */
583
584         if (flags & IR_MAILBOX) {
585                 newroomtype = 4;        /* private mailbox */
586         }
587         else {
588                 newroomtype = 0;        /* public folder */
589         }
590
591         lprintf(7, "Create new room <%s> on floor <%d> with type <%d>\n",
592                 roomname, floornum, newroomtype);
593
594         ret = create_room(roomname, newroomtype, "", floornum, 1);
595         if (ret == 0) {
596                 cprintf("%s NO Mailbox already exists, or create failed\r\n",
597                         parms[0]);
598         }
599         else {
600                 cprintf("%s OK CREATE completed\r\n", parms[0]);
601         }
602 }
603
604
605 /*
606  * Locate a room by its IMAP folder name, and check access to it
607  */
608 int imap_grabroom(char *returned_roomname, char *foldername) {
609         int ret;
610         char augmented_roomname[ROOMNAMELEN];
611         char roomname[ROOMNAMELEN];
612         int c;
613         struct quickroom QRscratch;
614         int ra;
615         int ok = 0;
616
617         ret = imap_roomname(roomname, sizeof roomname, foldername);
618         if (ret < 0) {
619                 return(1);
620         }
621
622         /* First try a regular match */
623         c = getroom(&QRscratch, roomname);
624
625         /* Then try a mailbox name match */
626         if (c != 0) {
627                 MailboxName(augmented_roomname, &CC->usersupp, roomname);
628                 c = getroom(&QRscratch, augmented_roomname);
629                 if (c == 0)
630                         strcpy(roomname, augmented_roomname);
631         }
632
633         /* If the room exists, check security/access */
634         if (c == 0) {
635                 /* See if there is an existing user/room relationship */
636                 ra = CtdlRoomAccess(&QRscratch, &CC->usersupp);
637
638                 /* normal clients have to pass through security */
639                 if (ra & UA_KNOWN) {
640                         ok = 1;
641                 }
642         }
643
644         /* Fail here if no such room */
645         if (!ok) {
646                 strcpy(returned_roomname, "");
647                 return(2);
648         }
649         else {
650                 strcpy(returned_roomname, QRscratch.QRname);
651                 return(0);
652         }
653 }
654
655
656 /*
657  * Implements the STATUS command (sort of)
658  *
659  */
660 void imap_status(int num_parms, char *parms[]) {
661         int ret;
662         char roomname[ROOMNAMELEN];
663         char buf[SIZ];
664         char savedroom[ROOMNAMELEN];
665         int msgs, new;
666
667         ret = imap_grabroom(roomname, parms[2]);
668         if (ret != 0) {
669                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
670                         parms[0]);
671                 return;
672         }
673
674         /*
675          * usergoto() formally takes us to the desired room, happily returning
676          * the number of messages and number of new messages.  (If another
677          * folder is selected, save its name so we can return there!!!!!)
678          */
679         if (IMAP->selected) {
680                 strcpy(savedroom, CC->quickroom.QRname);
681         }
682         usergoto(roomname, 0, &msgs, &new);
683
684         /*
685          * Tell the client what it wants to know.  In fact, tell it *more* than
686          * it wants to know.  We happily IGnore the supplied status data item
687          * names and simply spew all possible data items.  It's far easier to
688          * code and probably saves us some processing time too.
689          *
690          * FIXME we need to implement RECENT and UNSEEN eventually...
691          */
692
693         imap_mailboxname(buf, sizeof buf, &CC->quickroom);
694         cprintf("* STATUS ");
695         imap_strout(buf);
696         cprintf(" (MESSAGES %d RECENT 0 UIDNEXT %ld "
697                 "UIDVALIDITY 0 UNSEEN 0)\r\n",
698                 msgs,
699                 CitControl.MMhighest + 1
700         );
701
702         /*
703          * If another folder is selected, go back to that room so we can resume
704          * our happy day without violent explosions.
705          */
706         if (IMAP->selected) {
707                 usergoto(savedroom, 0, &msgs, &new);
708         }
709
710         /*
711          * Oooh, look, we're done!
712          */
713         cprintf("%s OK STATUS completed\r\n", parms[0]);
714 }
715
716
717
718 /*
719  * Implements the SUBSCRIBE command
720  *
721  */
722 void imap_subscribe(int num_parms, char *parms[]) {
723         int ret;
724         char roomname[ROOMNAMELEN];
725         char savedroom[ROOMNAMELEN];
726         int msgs, new;
727
728         ret = imap_grabroom(roomname, parms[2]);
729         if (ret != 0) {
730                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
731                         parms[0]);
732                 return;
733         }
734
735         /*
736          * usergoto() formally takes us to the desired room, which has the side
737          * effect of marking the room as not-zapped ... exactly the effect
738          * we're looking for.
739          */
740         if (IMAP->selected) {
741                 strcpy(savedroom, CC->quickroom.QRname);
742         }
743         usergoto(roomname, 0, &msgs, &new);
744
745         /*
746          * If another folder is selected, go back to that room so we can resume
747          * our happy day without violent explosions.
748          */
749         if (IMAP->selected) {
750                 usergoto(savedroom, 0, &msgs, &new);
751         }
752
753         cprintf("%s OK SUBSCRIBE completed\r\n", parms[0]);
754 }
755
756
757 /*
758  * Implements the UNSUBSCRIBE command
759  *
760  */
761 void imap_unsubscribe(int num_parms, char *parms[]) {
762         int ret;
763         char roomname[ROOMNAMELEN];
764         char savedroom[ROOMNAMELEN];
765         int msgs, new;
766
767         ret = imap_grabroom(roomname, parms[2]);
768         if (ret != 0) {
769                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
770                         parms[0]);
771                 return;
772         }
773
774         /*
775          * usergoto() formally takes us to the desired room.
776          */
777         if (IMAP->selected) {
778                 strcpy(savedroom, CC->quickroom.QRname);
779         }
780         usergoto(roomname, 0, &msgs, &new);
781
782         /* 
783          * Now make the API call to zap the room
784          */
785         if (CtdlForgetThisRoom() == 0) {
786                 cprintf("%s OK UNSUBSCRIBE completed\r\n", parms[0]);
787         }
788         else {
789                 cprintf("%s NO You may not unsubscribe from this folder.\r\n",
790                         parms[0]);
791         }
792
793         /*
794          * If another folder is selected, go back to that room so we can resume
795          * our happy day without violent explosions.
796          */
797         if (IMAP->selected) {
798                 usergoto(savedroom, 0, &msgs, &new);
799         }
800 }
801
802
803
804 /*
805  * Implements the DELETE command
806  *
807  */
808 void imap_delete(int num_parms, char *parms[]) {
809         int ret;
810         char roomname[ROOMNAMELEN];
811         char savedroom[ROOMNAMELEN];
812         int msgs, new;
813
814         ret = imap_grabroom(roomname, parms[2]);
815         if (ret != 0) {
816                 cprintf("%s NO Invalid mailbox name, or access denied\r\n",
817                         parms[0]);
818                 return;
819         }
820
821         /*
822          * usergoto() formally takes us to the desired room, happily returning
823          * the number of messages and number of new messages.  (If another
824          * folder is selected, save its name so we can return there!!!!!)
825          */
826         if (IMAP->selected) {
827                 strcpy(savedroom, CC->quickroom.QRname);
828         }
829         usergoto(roomname, 0, &msgs, &new);
830
831         /*
832          * Now delete the room.
833          */
834         if (CtdlDoIHavePermissionToDeleteThisRoom(&CC->quickroom)) {
835                 cprintf("%s OK DELETE completed\r\n", parms[0]);
836                 delete_room(&CC->quickroom);
837         }
838         else {
839                 cprintf("%s NO Can't delete this folder.\r\n", parms[0]);
840         }
841
842         /*
843          * If another folder is selected, go back to that room so we can resume
844          * our happy day without violent explosions.
845          */
846         if (IMAP->selected) {
847                 usergoto(savedroom, 0, &msgs, &new);
848         }
849 }
850
851
852
853 /*
854  * Implements the RENAME command
855  *
856  */
857 void imap_rename(int num_parms, char *parms[]) {
858         cprintf("%s NO The RENAME command is not yet implemented (FIXME)\r\n",
859                 parms[0]);
860 }
861
862
863
864 /* 
865  * Main command loop for IMAP sessions.
866  */
867 void imap_command_loop(void) {
868         char cmdbuf[SIZ];
869         char *parms[SIZ];
870         int num_parms;
871
872         time(&CC->lastcmd);
873         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
874         if (client_gets(cmdbuf) < 1) {
875                 lprintf(3, "IMAP socket is broken.  Ending session.\r\n");
876                 CC->kill_me = 1;
877                 return;
878         }
879
880         lprintf(5, "citserver[%3d]: %s\r\n", CC->cs_pid, cmdbuf);
881         while (strlen(cmdbuf) < 5) strcat(cmdbuf, " ");
882
883
884         /* strip off l/t whitespace and CRLF */
885         if (cmdbuf[strlen(cmdbuf)-1]=='\n') cmdbuf[strlen(cmdbuf)-1]=0;
886         if (cmdbuf[strlen(cmdbuf)-1]=='\r') cmdbuf[strlen(cmdbuf)-1]=0;
887         striplt(cmdbuf);
888
889         /* If we're in the middle of a multi-line command, handle that */
890         if (IMAP->authstate == imap_as_expecting_username) {
891                 imap_auth_login_user(cmdbuf);
892                 return;
893         }
894         if (IMAP->authstate == imap_as_expecting_password) {
895                 imap_auth_login_pass(cmdbuf);
896                 return;
897         }
898
899
900         /* Ok, at this point we're in normal command mode.  The first thing
901          * we do is print any incoming pages (yeah! we really do!)
902          */
903         imap_print_express_messages();
904
905         /*
906          * Before processing the command that was just entered... if we happen
907          * to have a folder selected, we'd like to rescan that folder for new
908          * messages, and for deletions/changes of existing messages.  This
909          * could probably be optimized somehow, but IMAP sucks...
910          */
911         if (IMAP->selected) {
912                 imap_rescan_msgids();
913         }
914
915         /* Now for the command set. */
916
917         /* Grab the tag, command, and parameters.  Check syntax. */
918         num_parms = imap_parameterize(parms, cmdbuf);
919         if (num_parms < 2) {
920                 cprintf("BAD syntax error\r\n");
921         }
922
923         /* The commands below may be executed in any state */
924
925         else if ( (!strcasecmp(parms[1], "NOOP"))
926            || (!strcasecmp(parms[1], "CHECK")) ) {
927                 cprintf("%s OK This command successfully did nothing.\r\n",
928                         parms[0]);
929         }
930
931         else if (!strcasecmp(parms[1], "LOGOUT")) {
932                 cprintf("* BYE %s logging out\r\n", config.c_fqdn);
933                 cprintf("%s OK thank you for using Citadel IMAP\r\n", parms[0]);
934                 CC->kill_me = 1;
935                 return;
936         }
937
938         else if (!strcasecmp(parms[1], "LOGIN")) {
939                 imap_login(num_parms, parms);
940         }
941
942         else if (!strcasecmp(parms[1], "AUTHENTICATE")) {
943                 imap_authenticate(num_parms, parms);
944         }
945
946         else if (!strcasecmp(parms[1], "CAPABILITY")) {
947                 imap_capability(num_parms, parms);
948         }
949
950         else if (!CC->logged_in) {
951                 cprintf("%s BAD Not logged in.\r\n", parms[0]);
952         }
953
954         /* The commans below require a logged-in state */
955
956         else if (!strcasecmp(parms[1], "SELECT")) {
957                 imap_select(num_parms, parms);
958         }
959
960         else if (!strcasecmp(parms[1], "EXAMINE")) {
961                 imap_select(num_parms, parms);
962         }
963
964         else if (!strcasecmp(parms[1], "LSUB")) {
965                 imap_lsub(num_parms, parms);
966         }
967
968         else if (!strcasecmp(parms[1], "LIST")) {
969                 imap_list(num_parms, parms);
970         }
971
972         else if (!strcasecmp(parms[1], "CREATE")) {
973                 imap_create(num_parms, parms);
974         }
975
976         else if (!strcasecmp(parms[1], "DELETE")) {
977                 imap_delete(num_parms, parms);
978         }
979
980         else if (!strcasecmp(parms[1], "RENAME")) {
981                 imap_rename(num_parms, parms);
982         }
983
984         else if (!strcasecmp(parms[1], "STATUS")) {
985                 imap_status(num_parms, parms);
986         }
987
988         else if (!strcasecmp(parms[1], "SUBSCRIBE")) {
989                 imap_subscribe(num_parms, parms);
990         }
991
992         else if (!strcasecmp(parms[1], "UNSUBSCRIBE")) {
993                 imap_unsubscribe(num_parms, parms);
994         }
995
996         else if (IMAP->selected == 0) {
997                 cprintf("%s BAD no folder selected\r\n", parms[0]);
998         }
999
1000         /* The commands below require the SELECT state on a mailbox */
1001
1002         else if (!strcasecmp(parms[1], "FETCH")) {
1003                 imap_fetch(num_parms, parms);
1004         }
1005
1006         else if ( (!strcasecmp(parms[1], "UID"))
1007                 && (!strcasecmp(parms[2], "FETCH")) ) {
1008                 imap_uidfetch(num_parms, parms);
1009         }
1010
1011         else if (!strcasecmp(parms[1], "SEARCH")) {
1012                 imap_search(num_parms, parms);
1013         }
1014
1015         else if ( (!strcasecmp(parms[1], "UID"))
1016                 && (!strcasecmp(parms[2], "SEARCH")) ) {
1017                 imap_uidsearch(num_parms, parms);
1018         }
1019
1020         else if (!strcasecmp(parms[1], "STORE")) {
1021                 imap_store(num_parms, parms);
1022         }
1023
1024         else if ( (!strcasecmp(parms[1], "UID"))
1025                 && (!strcasecmp(parms[2], "STORE")) ) {
1026                 imap_uidstore(num_parms, parms);
1027         }
1028
1029         else if (!strcasecmp(parms[1], "COPY")) {
1030                 imap_copy(num_parms, parms);
1031         }
1032
1033         else if ( (!strcasecmp(parms[1], "UID"))
1034                 && (!strcasecmp(parms[2], "COPY")) ) {
1035                 imap_uidcopy(num_parms, parms);
1036         }
1037
1038         else if (!strcasecmp(parms[1], "EXPUNGE")) {
1039                 imap_expunge(num_parms, parms);
1040         }
1041
1042         else if (!strcasecmp(parms[1], "CLOSE")) {
1043                 imap_close(num_parms, parms);
1044         }
1045
1046         /* End of commands.  If we get here, the command is either invalid
1047          * or unimplemented.
1048          */
1049
1050         else {
1051                 cprintf("%s BAD command unrecognized\r\n", parms[0]);
1052         }
1053
1054 }
1055
1056
1057
1058 /*
1059  * This function is called by dynloader.c to register the IMAP module
1060  * with the Citadel server.
1061  */
1062 char *Dynamic_Module_Init(void)
1063 {
1064         SYM_IMAP = CtdlGetDynamicSymbol();
1065         CtdlRegisterServiceHook(config.c_imap_port,
1066                                 NULL,
1067                                 imap_greeting,
1068                                 imap_command_loop);
1069         CtdlRegisterSessionHook(imap_cleanup_function, EVT_STOP);
1070         return "$Id$";
1071 }