]> code.citadel.org Git - citadel.git/blob - citadel/serv_imap.c
* IMAP COPY
[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("* OK [UIDVALIDITY 0] UIDs valid\r\n");
379         cprintf("%s OK [%s] %s completed\r\n",
380                 parms[0],
381                 (IMAP->readonly ? "READ-ONLY" : "READ-WRITE"),
382                 parms[1]);
383 }
384
385
386
387 /*
388  * implements the CLOSE command
389  */
390 void imap_close(int num_parms, char *parms[]) {
391         IMAP->selected = 0;
392         IMAP->readonly = 0;
393         imap_free_msgids();
394         cprintf("%s OK CLOSE completed\r\n", parms[0]);
395 }
396
397
398
399
400 /*
401  * Used by LIST and LSUB to show the floors in the listing
402  */
403 void imap_list_floors(char *cmd) {
404         int i;
405         struct floor *fl;
406
407         for (i=0; i<MAXFLOORS; ++i) {
408                 fl = cgetfloor(i);
409                 if (fl->f_flags & F_INUSE) {
410                         cprintf("* %s (\\NoSelect) \"|\" ", cmd);
411                         imap_strout(fl->f_name);
412                         cprintf("\r\n");
413                 }
414         }
415 }
416
417
418
419 /*
420  * Back end for imap_lsub()
421  *
422  * IMAP "subscribed folder" is equivocated to Citadel "known rooms."  This
423  * may or may not be the desired behavior in the future.
424  */
425 void imap_lsub_listroom(struct quickroom *qrbuf, void *data) {
426         char buf[SIZ];
427         int ra;
428
429         /* Only list rooms to which the user has access!! */
430         ra = CtdlRoomAccess(qrbuf, &CC->usersupp);
431         if (ra & UA_KNOWN) {
432                 imap_mailboxname(buf, sizeof buf, qrbuf);
433                 cprintf("* LSUB () \"|\" ");
434                 imap_strout(buf);
435                 cprintf("\r\n");
436         }
437 }
438
439
440 /*
441  * Implements the LSUB command
442  *
443  * FIXME: Handle wildcards, please.
444  */
445 void imap_lsub(int num_parms, char *parms[]) {
446         imap_list_floors("LSUB");
447         ForEachRoom(imap_lsub_listroom, NULL);
448         cprintf("%s OK LSUB completed\r\n", parms[0]);
449 }
450
451
452
453 /*
454  * Back end for imap_list()
455  */
456 void imap_list_listroom(struct quickroom *qrbuf, void *data) {
457         char buf[SIZ];
458         int ra;
459
460         /* Only list rooms to which the user has access!! */
461         ra = CtdlRoomAccess(qrbuf, &CC->usersupp);
462         if ( (ra & UA_KNOWN) 
463           || ((ra & UA_GOTOALLOWED) && (ra & UA_ZAPPED))) {
464                 imap_mailboxname(buf, sizeof buf, qrbuf);
465                 cprintf("* LIST () \"|\" ");
466                 imap_strout(buf);
467                 cprintf("\r\n");
468         }
469 }
470
471
472 /*
473  * Implements the LIST command
474  *
475  * FIXME: Handle wildcards, please.
476  */
477 void imap_list(int num_parms, char *parms[]) {
478         imap_list_floors("LIST");
479         ForEachRoom(imap_list_listroom, NULL);
480         cprintf("%s OK LIST completed\r\n", parms[0]);
481 }
482
483
484
485 /*
486  * Implements the CREATE command
487  *
488  */
489 void imap_create(int num_parms, char *parms[]) {
490         int ret;
491         char roomname[ROOMNAMELEN];
492         int floornum;
493         int flags;
494         int newroomtype;
495
496         ret = imap_roomname(roomname, sizeof roomname, parms[2]);
497         if (ret < 0) {
498                 cprintf("%s NO Invalid mailbox name or location\r\n",
499                         parms[0]);
500                 return;
501         }
502         floornum = ( ret & 0x00ff );    /* lower 8 bits = floor number */
503         flags =    ( ret & 0xff00 );    /* upper 8 bits = flags        */
504
505         if (flags & IR_MAILBOX) {
506                 newroomtype = 4;        /* private mailbox */
507         }
508         else {
509                 newroomtype = 0;        /* public folder */
510         }
511
512         lprintf(7, "Create new room <%s> on floor <%d> with type <%d>\n",
513                 roomname, floornum, newroomtype);
514
515         ret = create_room(roomname, newroomtype, "", floornum, 1);
516         if (ret == 0) {
517                 cprintf("%s NO Mailbox already exists, or create failed\r\n",
518                         parms[0]);
519         }
520         else {
521                 cprintf("%s OK CREATE completed\r\n", parms[0]);
522         }
523 }
524
525
526 /*
527  * Locate a room by its IMAP folder name, and check access to it
528  */
529 int imap_grabroom(char *returned_roomname, char *foldername) {
530         int ret;
531         char augmented_roomname[ROOMNAMELEN];
532         char roomname[ROOMNAMELEN];
533         int c;
534         struct quickroom QRscratch;
535         int ra;
536         int ok = 0;
537
538         ret = imap_roomname(roomname, sizeof roomname, foldername);
539         if (ret < 0) {
540                 return(1);
541         }
542
543         /* First try a regular match */
544         c = getroom(&QRscratch, roomname);
545
546         /* Then try a mailbox name match */
547         if (c != 0) {
548                 MailboxName(augmented_roomname, &CC->usersupp, roomname);
549                 c = getroom(&QRscratch, augmented_roomname);
550                 if (c == 0)
551                         strcpy(roomname, augmented_roomname);
552         }
553
554         /* If the room exists, check security/access */
555         if (c == 0) {
556                 /* See if there is an existing user/room relationship */
557                 ra = CtdlRoomAccess(&QRscratch, &CC->usersupp);
558
559                 /* normal clients have to pass through security */
560                 if (ra & UA_KNOWN) {
561                         ok = 1;
562                 }
563         }
564
565         /* Fail here if no such room */
566         if (!ok) {
567                 strcpy(returned_roomname, "");
568                 return(1);
569         }
570         else {
571                 strcpy(returned_roomname, QRscratch.QRname);
572                 return(0);
573         }
574 }
575
576
577 /*
578  * Implements the STATUS command (sort of)
579  *
580  */
581 void imap_status(int num_parms, char *parms[]) {
582         int ret;
583         char roomname[ROOMNAMELEN];
584         char buf[SIZ];
585         struct quickroom QRscratch;
586         char savedroom[ROOMNAMELEN];
587         int msgs, new;
588
589         ret = imap_grabroom(roomname, parms[2]);
590         if (ret != 0) {
591                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
592                         parms[0]);
593                 return;
594         }
595
596         /*
597          * usergoto() formally takes us to the desired room, happily returning
598          * the number of messages and number of new messages.  (If another
599          * folder is selected, save its name so we can return there!!!!!)
600          */
601         if (IMAP->selected) {
602                 strcpy(savedroom, CC->quickroom.QRname);
603         }
604         usergoto(roomname, 0, &msgs, &new);
605
606         /*
607          * Tell the client what it wants to know.  In fact, tell it *more* than
608          * it wants to know.  We happily IGnore the supplied status data item
609          * names and simply spew all possible data items.  It's far easier to
610          * code and probably saves us some processing time too.
611          *
612          * FIXME we need to implement RECENT and UNSEEN eventually...
613          */
614
615         imap_mailboxname(buf, sizeof buf, &QRscratch);
616         cprintf("* STATUS ");
617         imap_strout(buf);
618         cprintf(" (MESSAGES %d RECENT 0 UIDNEXT %ld "
619                 "UIDVALIDITY 0 UNSEEN 0)\r\n",
620                 msgs,
621                 CitControl.MMhighest + 1
622         );
623
624         /*
625          * If another folder is selected, go back to that room so we can resume
626          * our happy day without violent explosions.
627          */
628         if (IMAP->selected) {
629                 usergoto(savedroom, 0, &msgs, &new);
630         }
631
632         /*
633          * Oooh, look, we're done!
634          */
635         cprintf("%s OK STATUS completed\r\n", parms[0]);
636 }
637
638
639
640
641 /* 
642  * Main command loop for IMAP sessions.
643  */
644 void imap_command_loop(void) {
645         char cmdbuf[SIZ];
646         char *parms[SIZ];
647         int num_parms;
648
649         time(&CC->lastcmd);
650         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
651         if (client_gets(cmdbuf) < 1) {
652                 lprintf(3, "IMAP socket is broken.  Ending session.\r\n");
653                 CC->kill_me = 1;
654                 return;
655         }
656
657         lprintf(5, "citserver[%3d]: %s\r\n", CC->cs_pid, cmdbuf);
658         while (strlen(cmdbuf) < 5) strcat(cmdbuf, " ");
659
660
661         /* strip off l/t whitespace and CRLF */
662         if (cmdbuf[strlen(cmdbuf)-1]=='\n') cmdbuf[strlen(cmdbuf)-1]=0;
663         if (cmdbuf[strlen(cmdbuf)-1]=='\r') cmdbuf[strlen(cmdbuf)-1]=0;
664         striplt(cmdbuf);
665
666         /* If we're in the middle of a multi-line command, handle that */
667         if (IMAP->authstate == imap_as_expecting_username) {
668                 imap_auth_login_user(cmdbuf);
669                 return;
670         }
671         if (IMAP->authstate == imap_as_expecting_password) {
672                 imap_auth_login_pass(cmdbuf);
673                 return;
674         }
675
676
677         /* Ok, at this point we're in normal command mode */
678
679         /*
680          * Before processing the command that was just entered... if we happen
681          * to have a folder selected, we'd like to rescan that folder for new
682          * messages, and for deletions/changes of existing messages.  This
683          * could probably be optimized somehow, but IMAP sucks...
684          */
685         if (IMAP->selected) {
686                 imap_rescan_msgids();
687         }
688
689         /* Now for the command set. */
690
691         /* Grab the tag, command, and parameters.  Check syntax. */
692         num_parms = imap_parameterize(parms, cmdbuf);
693         if (num_parms < 2) {
694                 cprintf("BAD syntax error\r\n");
695         }
696
697         /* The commands below may be executed in any state */
698
699         else if ( (!strcasecmp(parms[1], "NOOP"))
700            || (!strcasecmp(parms[1], "CHECK")) ) {
701                 cprintf("%s OK This command successfully did nothing.\r\n",
702                         parms[0]);
703         }
704
705         else if (!strcasecmp(parms[1], "LOGOUT")) {
706                 cprintf("* BYE %s logging out\r\n", config.c_fqdn);
707                 cprintf("%s OK thank you for using Citadel IMAP\r\n", parms[0]);
708                 CC->kill_me = 1;
709                 return;
710         }
711
712         else if (!strcasecmp(parms[1], "LOGIN")) {
713                 imap_login(num_parms, parms);
714         }
715
716         else if (!strcasecmp(parms[1], "AUTHENTICATE")) {
717                 imap_authenticate(num_parms, parms);
718         }
719
720         else if (!strcasecmp(parms[1], "CAPABILITY")) {
721                 imap_capability(num_parms, parms);
722         }
723
724         else if (!CC->logged_in) {
725                 cprintf("%s BAD Not logged in.\r\n", parms[0]);
726         }
727
728         /* The commans below require a logged-in state */
729
730         else if (!strcasecmp(parms[1], "SELECT")) {
731                 imap_select(num_parms, parms);
732         }
733
734         else if (!strcasecmp(parms[1], "EXAMINE")) {
735                 imap_select(num_parms, parms);
736         }
737
738         else if (!strcasecmp(parms[1], "LSUB")) {
739                 imap_lsub(num_parms, parms);
740         }
741
742         else if (!strcasecmp(parms[1], "LIST")) {
743                 imap_list(num_parms, parms);
744         }
745
746         else if (!strcasecmp(parms[1], "CREATE")) {
747                 imap_create(num_parms, parms);
748         }
749
750         else if (!strcasecmp(parms[1], "STATUS")) {
751                 imap_status(num_parms, parms);
752         }
753
754         else if (IMAP->selected == 0) {
755                 cprintf("%s BAD no folder selected\r\n", parms[0]);
756         }
757
758         /* The commands below require the SELECT state on a mailbox */
759
760         else if (!strcasecmp(parms[1], "FETCH")) {
761                 imap_fetch(num_parms, parms);
762         }
763
764         else if ( (!strcasecmp(parms[1], "UID"))
765                 && (!strcasecmp(parms[2], "FETCH")) ) {
766                 imap_uidfetch(num_parms, parms);
767         }
768
769         else if (!strcasecmp(parms[1], "SEARCH")) {
770                 imap_search(num_parms, parms);
771         }
772
773         else if ( (!strcasecmp(parms[1], "UID"))
774                 && (!strcasecmp(parms[2], "SEARCH")) ) {
775                 imap_uidsearch(num_parms, parms);
776         }
777
778         else if (!strcasecmp(parms[1], "STORE")) {
779                 imap_store(num_parms, parms);
780         }
781
782         else if ( (!strcasecmp(parms[1], "UID"))
783                 && (!strcasecmp(parms[2], "STORE")) ) {
784                 imap_uidstore(num_parms, parms);
785         }
786
787         else if (!strcasecmp(parms[1], "COPY")) {
788                 imap_copy(num_parms, parms);
789         }
790
791         else if ( (!strcasecmp(parms[1], "UID"))
792                 && (!strcasecmp(parms[2], "COPY")) ) {
793                 imap_uidcopy(num_parms, parms);
794         }
795
796         else if (!strcasecmp(parms[1], "CLOSE")) {
797                 imap_close(num_parms, parms);
798         }
799
800         /* End of commands.  If we get here, the command is either invalid
801          * or unimplemented.
802          */
803
804         else {
805                 cprintf("%s BAD command unrecognized\r\n", parms[0]);
806         }
807
808 }
809
810
811
812 /*
813  * This function is called by dynloader.c to register the IMAP module
814  * with the Citadel server.
815  */
816 char *Dynamic_Module_Init(void)
817 {
818         SYM_IMAP = CtdlGetDynamicSymbol();
819         CtdlRegisterServiceHook(config.c_imap_port,
820                                 NULL,
821                                 imap_greeting,
822                                 imap_command_loop);
823         CtdlRegisterSessionHook(imap_cleanup_function, EVT_STOP);
824         return "$Id$";
825 }