* Add error responses to imap_rename() and set up subfolder framework
[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.  It is now good enough to
9  * be usable with much of the popular IMAP client software available, but it
10  * is by no means perfect.  Some commands (particularly SEARCH and RENAME)
11  * are implemented either incompletely or not at all.
12  *
13  * WARNING: Mark Crispin is an idiot.  IMAP is the most brain-damaged protocol
14  * you will ever have the profound lack of pleasure to encounter.
15  * 
16  */
17
18 #include "sysdep.h"
19 #include <stdlib.h>
20 #include <unistd.h>
21 #include <stdio.h>
22 #include <fcntl.h>
23 #include <signal.h>
24 #include <pwd.h>
25 #include <errno.h>
26 #include <sys/types.h>
27
28 #if TIME_WITH_SYS_TIME
29 # include <sys/time.h>
30 # include <time.h>
31 #else
32 # if HAVE_SYS_TIME_H
33 #  include <sys/time.h>
34 # else
35 #  include <time.h>
36 # endif
37 #endif
38
39 #include <sys/wait.h>
40 #include <ctype.h>
41 #include <string.h>
42 #include <limits.h>
43 #include "citadel.h"
44 #include "server.h"
45 #include "sysdep_decls.h"
46 #include "citserver.h"
47 #include "support.h"
48 #include "config.h"
49 #include "dynloader.h"
50 #include "room_ops.h"
51 #include "user_ops.h"
52 #include "policy.h"
53 #include "database.h"
54 #include "msgbase.h"
55 #include "tools.h"
56 #include "internet_addressing.h"
57 #include "serv_imap.h"
58 #include "imap_tools.h"
59 #include "imap_fetch.h"
60 #include "imap_search.h"
61 #include "imap_store.h"
62 #include "imap_misc.h"
63
64
65 long SYM_IMAP;
66
67
68 /*
69  * If there is a message ID map in memory, free it
70  */
71 void imap_free_msgids(void) {
72         if (IMAP->msgids != NULL) {
73                 phree(IMAP->msgids);
74                 IMAP->msgids = NULL;
75                 IMAP->num_msgs = 0;
76         }
77         if (IMAP->flags != NULL) {
78                 phree(IMAP->flags);
79                 IMAP->flags = NULL;
80         }
81 }
82
83
84 /*
85  * If there is a transmitted message in memory, free it
86  */
87 void imap_free_transmitted_message(void) {
88         if (IMAP->transmitted_message != NULL) {
89                 phree(IMAP->transmitted_message);
90                 IMAP->transmitted_message = NULL;
91                 IMAP->transmitted_length = 0;
92         }
93 }
94
95
96 /*
97  * Set the \\Seen flag for messages which aren't new
98  */
99 void imap_set_seen_flags(void) {
100         struct visit vbuf;
101         int i;
102
103         CtdlGetRelationship(&vbuf, &CC->usersupp, &CC->quickroom);
104         if (IMAP->num_msgs > 0) {
105                 for (i=0; i<IMAP->num_msgs; ++i) {
106                         if (is_msg_in_mset(vbuf.v_seen, IMAP->msgids[i])) {
107                                 IMAP->flags[i] |= IMAP_SEEN;
108                         }
109                 }
110         }
111 }
112
113
114
115
116 /*
117  * Back end for imap_load_msgids()
118  *
119  * Optimization: instead of calling realloc() to add each message, we
120  * allocate space in the list for REALLOC_INCREMENT messages at a time.  This
121  * allows the mapping to proceed much faster.
122  */
123 void imap_add_single_msgid(long msgnum, void *userdata) {
124         
125         IMAP->num_msgs = IMAP->num_msgs + 1;
126         if (IMAP->msgids == NULL) {
127                 IMAP->msgids = mallok(IMAP->num_msgs * sizeof(long)
128                                         * REALLOC_INCREMENT);
129         }
130         else if (IMAP->num_msgs % REALLOC_INCREMENT == 0) {
131                 IMAP->msgids = reallok(IMAP->msgids,
132                         (IMAP->num_msgs + REALLOC_INCREMENT) * sizeof(long));
133         }
134         if (IMAP->flags == NULL) {
135                 IMAP->flags = mallok(IMAP->num_msgs * sizeof(long)
136                                         * REALLOC_INCREMENT);
137         }
138         else if (IMAP->num_msgs % REALLOC_INCREMENT == 0) {
139                 IMAP->flags = reallok(IMAP->flags,
140                         (IMAP->num_msgs + REALLOC_INCREMENT) * sizeof(long));
141         }
142         IMAP->msgids[IMAP->num_msgs - 1] = msgnum;
143         IMAP->flags[IMAP->num_msgs - 1] = 0;
144 }
145
146
147
148 /*
149  * Set up a message ID map for the current room (folder)
150  */
151 void imap_load_msgids(void) {
152          
153         if (IMAP->selected == 0) {
154                 lprintf(5, "imap_load_msgids() can't run; no room selected\n");
155                 return;
156         }
157
158         imap_free_msgids();     /* If there was already a map, free it */
159
160         CtdlForEachMessage(MSGS_ALL, 0L, (-63), NULL, NULL,
161                 imap_add_single_msgid, NULL);
162
163         imap_set_seen_flags();
164         lprintf(9, "imap_load_msgids() mapped %d messages\n", IMAP->num_msgs);
165 }
166
167
168 /*
169  * Re-scan the selected room (folder) and see if it's been changed at all
170  */
171 void imap_rescan_msgids(void) {
172
173         int original_num_msgs = 0;
174         long original_highest = 0L;
175         int i;
176         int count;
177
178         if (IMAP->selected == 0) {
179                 lprintf(5, "imap_load_msgids() can't run; no room selected\n");
180                 return;
181         }
182
183
184         /*
185          * Check to see if any of the messages we know about have been expunged
186          */
187         if (IMAP->num_msgs > 0)
188          for (i=0; i<IMAP->num_msgs; ++i) {
189
190                 count = CtdlForEachMessage(MSGS_EQ, IMAP->msgids[i],
191                         (-63), NULL, NULL, NULL, NULL);
192
193                 if (count == 0) {
194                         cprintf("* %d EXPUNGE\r\n", i+1);
195
196                         /* Here's some nice stupid nonsense.  When a message
197                          * is expunged, we have to slide all the existing
198                          * messages up in the message array.
199                          */
200                         --IMAP->num_msgs;
201                         memcpy(&IMAP->msgids[i], &IMAP->msgids[i+1],
202                                 (sizeof(long)*(IMAP->num_msgs-i)) );
203                         memcpy(&IMAP->flags[i], &IMAP->flags[i+1],
204                                 (sizeof(long)*(IMAP->num_msgs-i)) );
205
206                         --i;
207                 }
208
209         }
210
211         /*
212          * Remember how many messages were here before we re-scanned.
213          */
214         original_num_msgs = IMAP->num_msgs;
215         if (IMAP->num_msgs > 0) {
216                 original_highest = IMAP->msgids[IMAP->num_msgs - 1];
217         }
218         else {
219                 original_highest = 0L;
220         }
221
222         /*
223          * Now peruse the room for *new* messages only.
224          */
225         CtdlForEachMessage(MSGS_GT, original_highest, (-63), NULL, NULL,
226                 imap_add_single_msgid, NULL);
227
228         imap_set_seen_flags();
229
230         /*
231          * If new messages have arrived, tell the client about them.
232          */
233         if (IMAP->num_msgs > original_num_msgs) {
234                 cprintf("* %d EXISTS\r\n", IMAP->num_msgs);
235         }
236
237 }
238
239
240
241
242
243
244
245 /*
246  * This cleanup function blows away the temporary memory and files used by
247  * the IMAP server.
248  */
249 void imap_cleanup_function(void) {
250
251         /* Don't do this stuff if this is not a IMAP session! */
252         if (CC->h_command_function != imap_command_loop) return;
253
254         lprintf(9, "Performing IMAP cleanup hook\n");
255         imap_free_msgids();
256         imap_free_transmitted_message();
257         lprintf(9, "Finished IMAP cleanup hook\n");
258 }
259
260
261
262 /*
263  * Here's where our IMAP session begins its happy day.
264  */
265 void imap_greeting(void) {
266
267         strcpy(CC->cs_clientname, "IMAP session");
268         CtdlAllocUserData(SYM_IMAP, sizeof(struct citimap));
269         IMAP->authstate = imap_as_normal;
270
271         cprintf("* OK %s Citadel/UX IMAP4rev1 server ready\r\n",
272                 config.c_fqdn);
273 }
274
275
276 /*
277  * implements the LOGIN command (ordinary username/password login)
278  */
279 void imap_login(int num_parms, char *parms[]) {
280         if (CtdlLoginExistingUser(parms[2]) == login_ok) {
281                 if (CtdlTryPassword(parms[3]) == pass_ok) {
282                         cprintf("%s OK login successful\r\n", parms[0]);
283                         return;
284                 }
285         }
286
287         cprintf("%s BAD Login incorrect\r\n", parms[0]);
288 }
289
290
291 /*
292  * Implements the AUTHENTICATE command
293  */
294 void imap_authenticate(int num_parms, char *parms[]) {
295         char buf[SIZ];
296
297         if (num_parms != 3) {
298                 cprintf("%s BAD incorrect number of parameters\r\n", parms[0]);
299                 return;
300         }
301
302         if (!strcasecmp(parms[2], "LOGIN")) {
303                 encode_base64(buf, "Username:");
304                 cprintf("+ %s\r\n", buf);
305                 IMAP->authstate = imap_as_expecting_username;
306                 strcpy(IMAP->authseq, parms[0]);
307                 return;
308         }
309
310         else {
311                 cprintf("%s NO AUTHENTICATE %s failed\r\n",
312                         parms[0], parms[1]);
313         }
314 }
315
316 void imap_auth_login_user(char *cmd) {
317         char buf[SIZ];
318
319         decode_base64(buf, cmd, SIZ);
320         CtdlLoginExistingUser(buf);
321         encode_base64(buf, "Password:");
322         cprintf("+ %s\r\n", buf);
323         IMAP->authstate = imap_as_expecting_password;
324         return;
325 }
326
327 void imap_auth_login_pass(char *cmd) {
328         char buf[SIZ];
329
330         decode_base64(buf, cmd, SIZ);
331         if (CtdlTryPassword(buf) == pass_ok) {
332                 cprintf("%s OK authentication succeeded\r\n", IMAP->authseq);
333         }
334         else {
335                 cprintf("%s NO authentication failed\r\n", IMAP->authseq);
336         }
337         IMAP->authstate = imap_as_normal;
338         return;
339 }
340
341
342
343 /*
344  * implements the CAPABILITY command
345  */
346 void imap_capability(int num_parms, char *parms[]) {
347         cprintf("* CAPABILITY IMAP4 IMAP4REV1 AUTH=LOGIN\r\n");
348         cprintf("%s OK CAPABILITY completed\r\n", parms[0]);
349 }
350
351
352
353
354
355 /*
356  * implements the SELECT command
357  */
358 void imap_select(int num_parms, char *parms[]) {
359         char towhere[SIZ];
360         char augmented_roomname[ROOMNAMELEN];
361         int c = 0;
362         int ok = 0;
363         int ra = 0;
364         struct quickroom QRscratch;
365         int msgs, new;
366         int floornum;
367         int roomflags;
368         int i;
369
370         /* Convert the supplied folder name to a roomname */
371         i = imap_roomname(towhere, sizeof towhere, parms[2]);
372         if (i < 0) {
373                 cprintf("%s NO Invalid mailbox name.\r\n", parms[0]);
374                 IMAP->selected = 0;
375                 return;
376         }
377         floornum = (i & 0x00ff);
378         roomflags = (i & 0xff00);
379
380         /* First try a regular match */
381         c = getroom(&QRscratch, towhere);
382
383         /* Then try a mailbox name match */
384         if (c != 0) {
385                 MailboxName(augmented_roomname, sizeof augmented_roomname,
386                             &CC->usersupp, towhere);
387                 c = getroom(&QRscratch, augmented_roomname);
388                 if (c == 0)
389                         strcpy(towhere, augmented_roomname);
390         }
391
392         /* If the room exists, check security/access */
393         if (c == 0) {
394                 /* See if there is an existing user/room relationship */
395                 ra = CtdlRoomAccess(&QRscratch, &CC->usersupp);
396
397                 /* normal clients have to pass through security */
398                 if (ra & UA_KNOWN) {
399                         ok = 1;
400                 }
401         }
402
403         /* Fail here if no such room */
404         if (!ok) {
405                 cprintf("%s NO ... no such room, or access denied\r\n",
406                         parms[0]);
407                 IMAP->selected = 0;
408                 return;
409         }
410
411         /*
412          * usergoto() formally takes us to the desired room, happily returning
413          * the number of messages and number of new messages.
414          */
415         usergoto(QRscratch.QRname, 0, &msgs, &new);
416         IMAP->selected = 1;
417
418         if (!strcasecmp(parms[1], "EXAMINE")) {
419                 IMAP->readonly = 1;
420         }
421         else {
422                 IMAP->readonly = 0;
423         }
424
425         imap_load_msgids();
426
427         /* FIXME ... much more info needs to be supplied here */
428         cprintf("* %d EXISTS\r\n", msgs);
429         cprintf("* %d RECENT\r\n", new);
430         cprintf("* FLAGS (\\Deleted \\Seen)\r\n");
431         cprintf("* OK [PERMANENTFLAGS (\\Deleted \\Seen)] permanent flags\r\n");
432         cprintf("* OK [UIDVALIDITY 0] UIDs valid\r\n");
433         cprintf("%s OK [%s] %s completed\r\n",
434                 parms[0],
435                 (IMAP->readonly ? "READ-ONLY" : "READ-WRITE"),
436                 parms[1]);
437 }
438
439
440
441 /*
442  * does the real work for expunge
443  */
444 int imap_do_expunge(void) {
445         int i;
446         int num_expunged = 0;
447
448         if (IMAP->num_msgs > 0) for (i=0; i<IMAP->num_msgs; ++i) {
449                 if (IMAP->flags[i] & IMAP_DELETED) {
450                         CtdlDeleteMessages(CC->quickroom.QRname,
451                                         IMAP->msgids[i], "");
452                         ++num_expunged;
453                 }
454         }
455
456         if (num_expunged > 0) {
457                 imap_rescan_msgids();
458         }
459
460         return(num_expunged);
461 }
462
463
464 /*
465  * implements the EXPUNGE command syntax
466  */
467 void imap_expunge(int num_parms, char *parms[]) {
468         int num_expunged = 0;
469         imap_do_expunge();
470         cprintf("%s OK expunged %d messages.\r\n", parms[0], num_expunged);
471 }
472
473
474 /*
475  * implements the CLOSE command
476  */
477 void imap_close(int num_parms, char *parms[]) {
478
479         /* Yes, we always expunge on close. */
480         imap_do_expunge();
481
482         IMAP->selected = 0;
483         IMAP->readonly = 0;
484         imap_free_msgids();
485         cprintf("%s OK CLOSE completed\r\n", parms[0]);
486 }
487
488
489
490
491 /*
492  * Used by LIST and LSUB to show the floors in the listing
493  */
494 void imap_list_floors(char *cmd, char *pattern) {
495         int i;
496         struct floor *fl;
497
498         for (i=0; i<MAXFLOORS; ++i) {
499                 fl = cgetfloor(i);
500                 if (fl->f_flags & F_INUSE) {
501                         if (imap_mailbox_matches_pattern(pattern, fl->f_name)) {
502                                 cprintf("* %s (\\NoSelect) \"|\" ", cmd);
503                                 imap_strout(fl->f_name);
504                                 cprintf("\r\n");
505                         }
506                 }
507         }
508 }
509
510
511
512 /*
513  * Back end for imap_lsub()
514  *
515  * IMAP "subscribed folder" is equivocated to Citadel "known rooms."  This
516  * may or may not be the desired behavior in the future.
517  */
518 void imap_lsub_listroom(struct quickroom *qrbuf, void *data) {
519         char buf[SIZ];
520         int ra;
521         char *pattern;
522
523         pattern = (char *)data;
524
525         /* Only list rooms to which the user has access!! */
526         ra = CtdlRoomAccess(qrbuf, &CC->usersupp);
527         if (ra & UA_KNOWN) {
528                 imap_mailboxname(buf, sizeof buf, qrbuf);
529                 if (imap_mailbox_matches_pattern(pattern, buf)) {
530                         cprintf("* LSUB () \"|\" ");
531                         imap_strout(buf);
532                         cprintf("\r\n");
533                 }
534         }
535 }
536
537
538 /*
539  * Implements the LSUB command
540  */
541 void imap_lsub(int num_parms, char *parms[]) {
542         char pattern[SIZ];
543         if (num_parms < 4) {
544                 cprintf("%s BAD arguments invalid\r\n", parms[0]);
545                 return;
546         }
547         snprintf(pattern, sizeof pattern, "%s%s", parms[2], parms[3]);
548
549         if (strlen(parms[3])==0) {
550                 cprintf("* LIST (\\Noselect) \"|\" \"\"\r\n");
551         }
552
553         else {
554                 imap_list_floors("LSUB", pattern);
555                 ForEachRoom(imap_lsub_listroom, pattern);
556         }
557
558         cprintf("%s OK LSUB completed\r\n", parms[0]);
559 }
560
561
562
563 /*
564  * Back end for imap_list()
565  */
566 void imap_list_listroom(struct quickroom *qrbuf, void *data) {
567         char buf[SIZ];
568         int ra;
569         char *pattern;
570
571         pattern = (char *)data;
572
573         /* Only list rooms to which the user has access!! */
574         ra = CtdlRoomAccess(qrbuf, &CC->usersupp);
575         if ( (ra & UA_KNOWN) 
576           || ((ra & UA_GOTOALLOWED) && (ra & UA_ZAPPED))) {
577                 imap_mailboxname(buf, sizeof buf, qrbuf);
578                 if (imap_mailbox_matches_pattern(pattern, buf)) {
579                         cprintf("* LIST () \"|\" ");
580                         imap_strout(buf);
581                         cprintf("\r\n");
582                 }
583         }
584 }
585
586
587 /*
588  * Implements the LIST command
589  */
590 void imap_list(int num_parms, char *parms[]) {
591         char pattern[SIZ];
592         if (num_parms < 4) {
593                 cprintf("%s BAD arguments invalid\r\n", parms[0]);
594                 return;
595         }
596         snprintf(pattern, sizeof pattern, "%s%s", parms[2], parms[3]);
597
598         if (strlen(parms[3])==0) {
599                 cprintf("* LIST (\\Noselect) \"|\" \"\"\r\n");
600         }
601
602         else {
603                 imap_list_floors("LIST", pattern);
604                 ForEachRoom(imap_list_listroom, pattern);
605         }
606
607         cprintf("%s OK LIST completed\r\n", parms[0]);
608 }
609
610
611
612 /*
613  * Implements the CREATE command
614  *
615  */
616 void imap_create(int num_parms, char *parms[]) {
617         int ret;
618         char roomname[ROOMNAMELEN];
619         int floornum;
620         int flags;
621         int newroomtype;
622
623         ret = imap_roomname(roomname, sizeof roomname, parms[2]);
624         if (ret < 0) {
625                 cprintf("%s NO Invalid mailbox name or location\r\n",
626                         parms[0]);
627                 return;
628         }
629         floornum = ( ret & 0x00ff );    /* lower 8 bits = floor number */
630         flags =    ( ret & 0xff00 );    /* upper 8 bits = flags        */
631
632         if (flags & IR_MAILBOX) {
633                 newroomtype = 4;        /* private mailbox */
634         }
635         else {
636                 newroomtype = 0;        /* public folder */
637         }
638
639         lprintf(7, "Create new room <%s> on floor <%d> with type <%d>\n",
640                 roomname, floornum, newroomtype);
641
642         ret = create_room(roomname, newroomtype, "", floornum, 1);
643         if (ret == 0) {
644                 cprintf("%s NO Mailbox already exists, or create failed\r\n",
645                         parms[0]);
646         }
647         else {
648                 cprintf("%s OK CREATE completed\r\n", parms[0]);
649         }
650 }
651
652
653 /*
654  * Locate a room by its IMAP folder name, and check access to it
655  */
656 int imap_grabroom(char *returned_roomname, char *foldername) {
657         int ret;
658         char augmented_roomname[ROOMNAMELEN];
659         char roomname[ROOMNAMELEN];
660         int c;
661         struct quickroom QRscratch;
662         int ra;
663         int ok = 0;
664
665         ret = imap_roomname(roomname, sizeof roomname, foldername);
666         if (ret < 0) {
667                 return(1);
668         }
669
670         /* First try a regular match */
671         c = getroom(&QRscratch, roomname);
672
673         /* Then try a mailbox name match */
674         if (c != 0) {
675                 MailboxName(augmented_roomname, sizeof augmented_roomname,
676                             &CC->usersupp, roomname);
677                 c = getroom(&QRscratch, augmented_roomname);
678                 if (c == 0)
679                         strcpy(roomname, augmented_roomname);
680         }
681
682         /* If the room exists, check security/access */
683         if (c == 0) {
684                 /* See if there is an existing user/room relationship */
685                 ra = CtdlRoomAccess(&QRscratch, &CC->usersupp);
686
687                 /* normal clients have to pass through security */
688                 if (ra & UA_KNOWN) {
689                         ok = 1;
690                 }
691         }
692
693         /* Fail here if no such room */
694         if (!ok) {
695                 strcpy(returned_roomname, "");
696                 return(2);
697         }
698         else {
699                 strcpy(returned_roomname, QRscratch.QRname);
700                 return(0);
701         }
702 }
703
704
705 /*
706  * Implements the STATUS command (sort of)
707  *
708  */
709 void imap_status(int num_parms, char *parms[]) {
710         int ret;
711         char roomname[ROOMNAMELEN];
712         char buf[SIZ];
713         char savedroom[ROOMNAMELEN];
714         int msgs, new;
715
716         ret = imap_grabroom(roomname, parms[2]);
717         if (ret != 0) {
718                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
719                         parms[0]);
720                 return;
721         }
722
723         /*
724          * usergoto() formally takes us to the desired room, happily returning
725          * the number of messages and number of new messages.  (If another
726          * folder is selected, save its name so we can return there!!!!!)
727          */
728         if (IMAP->selected) {
729                 strcpy(savedroom, CC->quickroom.QRname);
730         }
731         usergoto(roomname, 0, &msgs, &new);
732
733         /*
734          * Tell the client what it wants to know.  In fact, tell it *more* than
735          * it wants to know.  We happily IGnore the supplied status data item
736          * names and simply spew all possible data items.  It's far easier to
737          * code and probably saves us some processing time too.
738          */
739         imap_mailboxname(buf, sizeof buf, &CC->quickroom);
740         cprintf("* STATUS ");
741         imap_strout(buf);
742         cprintf(" (MESSAGES %d ", msgs);
743         cprintf("RECENT 0 ");   /* FIXME we need to implement this */
744         cprintf("UIDNEXT %ld ", CitControl.MMhighest + 1);
745         cprintf("UNSEEN %d)\r\n", new);
746
747         /*
748          * If another folder is selected, go back to that room so we can resume
749          * our happy day without violent explosions.
750          */
751         if (IMAP->selected) {
752                 usergoto(savedroom, 0, &msgs, &new);
753         }
754
755         /*
756          * Oooh, look, we're done!
757          */
758         cprintf("%s OK STATUS completed\r\n", parms[0]);
759 }
760
761
762
763 /*
764  * Implements the SUBSCRIBE command
765  *
766  */
767 void imap_subscribe(int num_parms, char *parms[]) {
768         int ret;
769         char roomname[ROOMNAMELEN];
770         char savedroom[ROOMNAMELEN];
771         int msgs, new;
772
773         ret = imap_grabroom(roomname, parms[2]);
774         if (ret != 0) {
775                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
776                         parms[0]);
777                 return;
778         }
779
780         /*
781          * usergoto() formally takes us to the desired room, which has the side
782          * effect of marking the room as not-zapped ... exactly the effect
783          * we're looking for.
784          */
785         if (IMAP->selected) {
786                 strcpy(savedroom, CC->quickroom.QRname);
787         }
788         usergoto(roomname, 0, &msgs, &new);
789
790         /*
791          * If another folder is selected, go back to that room so we can resume
792          * our happy day without violent explosions.
793          */
794         if (IMAP->selected) {
795                 usergoto(savedroom, 0, &msgs, &new);
796         }
797
798         cprintf("%s OK SUBSCRIBE completed\r\n", parms[0]);
799 }
800
801
802 /*
803  * Implements the UNSUBSCRIBE command
804  *
805  */
806 void imap_unsubscribe(int num_parms, char *parms[]) {
807         int ret;
808         char roomname[ROOMNAMELEN];
809         char savedroom[ROOMNAMELEN];
810         int msgs, new;
811
812         ret = imap_grabroom(roomname, parms[2]);
813         if (ret != 0) {
814                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
815                         parms[0]);
816                 return;
817         }
818
819         /*
820          * usergoto() formally takes us to the desired room.
821          */
822         if (IMAP->selected) {
823                 strcpy(savedroom, CC->quickroom.QRname);
824         }
825         usergoto(roomname, 0, &msgs, &new);
826
827         /* 
828          * Now make the API call to zap the room
829          */
830         if (CtdlForgetThisRoom() == 0) {
831                 cprintf("%s OK UNSUBSCRIBE completed\r\n", parms[0]);
832         }
833         else {
834                 cprintf("%s NO You may not unsubscribe from this folder.\r\n",
835                         parms[0]);
836         }
837
838         /*
839          * If another folder is selected, go back to that room so we can resume
840          * our happy day without violent explosions.
841          */
842         if (IMAP->selected) {
843                 usergoto(savedroom, 0, &msgs, &new);
844         }
845 }
846
847
848
849 /*
850  * Implements the DELETE command
851  *
852  */
853 void imap_delete(int num_parms, char *parms[]) {
854         int ret;
855         char roomname[ROOMNAMELEN];
856         char savedroom[ROOMNAMELEN];
857         int msgs, new;
858
859         ret = imap_grabroom(roomname, parms[2]);
860         if (ret != 0) {
861                 cprintf("%s NO Invalid mailbox name, or access denied\r\n",
862                         parms[0]);
863                 return;
864         }
865
866         /*
867          * usergoto() formally takes us to the desired room, happily returning
868          * the number of messages and number of new messages.  (If another
869          * folder is selected, save its name so we can return there!!!!!)
870          */
871         if (IMAP->selected) {
872                 strcpy(savedroom, CC->quickroom.QRname);
873         }
874         usergoto(roomname, 0, &msgs, &new);
875
876         /*
877          * Now delete the room.
878          */
879         if (CtdlDoIHavePermissionToDeleteThisRoom(&CC->quickroom)) {
880                 cprintf("%s OK DELETE completed\r\n", parms[0]);
881                 delete_room(&CC->quickroom);
882         }
883         else {
884                 cprintf("%s NO Can't delete this folder.\r\n", parms[0]);
885         }
886
887         /*
888          * If another folder is selected, go back to that room so we can resume
889          * our happy day without violent explosions.
890          */
891         if (IMAP->selected) {
892                 usergoto(savedroom, 0, &msgs, &new);
893         }
894 }
895
896
897
898
899 /*
900  * Back end function for imap_rename()
901  */
902 void imap_rename_backend(struct quickroom *qrbuf, void *data) {
903 }
904
905
906
907
908 /*
909  * Implements the RENAME command
910  *
911  */
912 void imap_rename(int num_parms, char *parms[]) {
913         char old_room[ROOMNAMELEN];
914         char new_room[ROOMNAMELEN];
915         int oldr, newr;
916         int new_floor;
917         int r;
918
919         oldr = imap_roomname(old_room, sizeof old_room, parms[2]);
920         newr = imap_roomname(new_room, sizeof new_room, parms[3]);
921         new_floor = (newr & 0xFF);
922
923         r = CtdlRenameRoom(old_room, new_room, new_floor);
924
925         if (r == crr_room_not_found) {
926                 cprintf("%s NO Could not locate this folder\r\n", parms[0]);
927                 return;
928         }
929         if (r == crr_already_exists) {
930                 cprintf("%s '%s' already exists.\r\n", parms[0], parms[2]);
931                 return;
932         }
933         if (r == crr_noneditable) {
934                 cprintf("%s This folder is not editable.\r\n", parms[0]);
935                 return;
936         }
937         if (r == crr_invalid_floor) {
938                 cprintf("%s Folder root does not exist.\r\n", parms[0]);
939                 return;
940         }
941         if (r == crr_access_denied) {
942                 cprintf("%s You do not have permission to edit "
943                         "this folder.\r\n", parms[0]);
944                 return;
945         }
946         if (r != crr_ok) {
947                 cprintf("%s NO Rename failed - undefined error %d\r\n",
948                         parms[0], r);
949                 return;
950         }
951
952         /* FIXME supply something */
953         ForEachRoom(imap_rename_backend, NULL);
954
955         cprintf("%s OK RENAME completed\r\n", parms[0]);
956 }
957
958
959
960
961 /* 
962  * Main command loop for IMAP sessions.
963  */
964 void imap_command_loop(void) {
965         char cmdbuf[SIZ];
966         char *parms[SIZ];
967         int num_parms;
968
969         time(&CC->lastcmd);
970         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
971         if (client_gets(cmdbuf) < 1) {
972                 lprintf(3, "IMAP socket is broken.  Ending session.\r\n");
973                 CC->kill_me = 1;
974                 return;
975         }
976
977         lprintf(5, "IMAP: %s\r\n", cmdbuf);
978         while (strlen(cmdbuf) < 5) strcat(cmdbuf, " ");
979
980
981         /* strip off l/t whitespace and CRLF */
982         if (cmdbuf[strlen(cmdbuf)-1]=='\n') cmdbuf[strlen(cmdbuf)-1]=0;
983         if (cmdbuf[strlen(cmdbuf)-1]=='\r') cmdbuf[strlen(cmdbuf)-1]=0;
984         striplt(cmdbuf);
985
986         /* If we're in the middle of a multi-line command, handle that */
987         if (IMAP->authstate == imap_as_expecting_username) {
988                 imap_auth_login_user(cmdbuf);
989                 return;
990         }
991         if (IMAP->authstate == imap_as_expecting_password) {
992                 imap_auth_login_pass(cmdbuf);
993                 return;
994         }
995
996
997         /* Ok, at this point we're in normal command mode.  The first thing
998          * we do is print any incoming pages (yeah! we really do!)
999          */
1000         imap_print_express_messages();
1001
1002         /*
1003          * Before processing the command that was just entered... if we happen
1004          * to have a folder selected, we'd like to rescan that folder for new
1005          * messages, and for deletions/changes of existing messages.  This
1006          * could probably be optimized somehow, but IMAP sucks...
1007          */
1008         if (IMAP->selected) {
1009                 imap_rescan_msgids();
1010         }
1011
1012         /* Now for the command set. */
1013
1014         /* Grab the tag, command, and parameters.  Check syntax. */
1015         num_parms = imap_parameterize(parms, cmdbuf);
1016         if (num_parms < 2) {
1017                 cprintf("BAD syntax error\r\n");
1018         }
1019
1020         /* The commands below may be executed in any state */
1021
1022         else if ( (!strcasecmp(parms[1], "NOOP"))
1023            || (!strcasecmp(parms[1], "CHECK")) ) {
1024                 cprintf("%s OK This command successfully did nothing.\r\n",
1025                         parms[0]);
1026         }
1027
1028         else if (!strcasecmp(parms[1], "LOGOUT")) {
1029                 cprintf("* BYE %s logging out\r\n", config.c_fqdn);
1030                 cprintf("%s OK thank you for using Citadel IMAP\r\n", parms[0]);
1031                 CC->kill_me = 1;
1032                 return;
1033         }
1034
1035         else if (!strcasecmp(parms[1], "LOGIN")) {
1036                 imap_login(num_parms, parms);
1037         }
1038
1039         else if (!strcasecmp(parms[1], "AUTHENTICATE")) {
1040                 imap_authenticate(num_parms, parms);
1041         }
1042
1043         else if (!strcasecmp(parms[1], "CAPABILITY")) {
1044                 imap_capability(num_parms, parms);
1045         }
1046
1047         else if (!CC->logged_in) {
1048                 cprintf("%s BAD Not logged in.\r\n", parms[0]);
1049         }
1050
1051         /* The commans below require a logged-in state */
1052
1053         else if (!strcasecmp(parms[1], "SELECT")) {
1054                 imap_select(num_parms, parms);
1055         }
1056
1057         else if (!strcasecmp(parms[1], "EXAMINE")) {
1058                 imap_select(num_parms, parms);
1059         }
1060
1061         else if (!strcasecmp(parms[1], "LSUB")) {
1062                 imap_lsub(num_parms, parms);
1063         }
1064
1065         else if (!strcasecmp(parms[1], "LIST")) {
1066                 imap_list(num_parms, parms);
1067         }
1068
1069         else if (!strcasecmp(parms[1], "CREATE")) {
1070                 imap_create(num_parms, parms);
1071         }
1072
1073         else if (!strcasecmp(parms[1], "DELETE")) {
1074                 imap_delete(num_parms, parms);
1075         }
1076
1077         else if (!strcasecmp(parms[1], "RENAME")) {
1078                 imap_rename(num_parms, parms);
1079         }
1080
1081         else if (!strcasecmp(parms[1], "STATUS")) {
1082                 imap_status(num_parms, parms);
1083         }
1084
1085         else if (!strcasecmp(parms[1], "SUBSCRIBE")) {
1086                 imap_subscribe(num_parms, parms);
1087         }
1088
1089         else if (!strcasecmp(parms[1], "UNSUBSCRIBE")) {
1090                 imap_unsubscribe(num_parms, parms);
1091         }
1092
1093         else if (!strcasecmp(parms[1], "APPEND")) {
1094                 imap_append(num_parms, parms);
1095         }
1096
1097         else if (IMAP->selected == 0) {
1098                 cprintf("%s BAD no folder selected\r\n", parms[0]);
1099         }
1100
1101         /* The commands below require the SELECT state on a mailbox */
1102
1103         else if (!strcasecmp(parms[1], "FETCH")) {
1104                 imap_fetch(num_parms, parms);
1105         }
1106
1107         else if ( (!strcasecmp(parms[1], "UID"))
1108                 && (!strcasecmp(parms[2], "FETCH")) ) {
1109                 imap_uidfetch(num_parms, parms);
1110         }
1111
1112         else if (!strcasecmp(parms[1], "SEARCH")) {
1113                 imap_search(num_parms, parms);
1114         }
1115
1116         else if ( (!strcasecmp(parms[1], "UID"))
1117                 && (!strcasecmp(parms[2], "SEARCH")) ) {
1118                 imap_uidsearch(num_parms, parms);
1119         }
1120
1121         else if (!strcasecmp(parms[1], "STORE")) {
1122                 imap_store(num_parms, parms);
1123         }
1124
1125         else if ( (!strcasecmp(parms[1], "UID"))
1126                 && (!strcasecmp(parms[2], "STORE")) ) {
1127                 imap_uidstore(num_parms, parms);
1128         }
1129
1130         else if (!strcasecmp(parms[1], "COPY")) {
1131                 imap_copy(num_parms, parms);
1132         }
1133
1134         else if ( (!strcasecmp(parms[1], "UID"))
1135                 && (!strcasecmp(parms[2], "COPY")) ) {
1136                 imap_uidcopy(num_parms, parms);
1137         }
1138
1139         else if (!strcasecmp(parms[1], "EXPUNGE")) {
1140                 imap_expunge(num_parms, parms);
1141         }
1142
1143         else if (!strcasecmp(parms[1], "CLOSE")) {
1144                 imap_close(num_parms, parms);
1145         }
1146
1147         /* End of commands.  If we get here, the command is either invalid
1148          * or unimplemented.
1149          */
1150
1151         else {
1152                 cprintf("%s BAD command unrecognized\r\n", parms[0]);
1153         }
1154
1155         /* If the client transmitted a message we can free it now */
1156         imap_free_transmitted_message();
1157 }
1158
1159
1160
1161 /*
1162  * This function is called by dynloader.c to register the IMAP module
1163  * with the Citadel server.
1164  */
1165 char *Dynamic_Module_Init(void)
1166 {
1167         SYM_IMAP = CtdlGetDynamicSymbol();
1168         CtdlRegisterServiceHook(config.c_imap_port,
1169                                 NULL,
1170                                 imap_greeting,
1171                                 imap_command_loop);
1172         CtdlRegisterSessionHook(imap_cleanup_function, EVT_STOP);
1173         return "$Id$";
1174 }