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