]> code.citadel.org Git - citadel.git/blob - citadel/imap_misc.c
* Ok, now we accept *all* the flags transmitted during an IMAP APPEND, not
[citadel.git] / citadel / imap_misc.c
1 /*
2  * $Id$
3  *
4  *
5  */
6
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <signal.h>
14 #include <pwd.h>
15 #include <errno.h>
16 #include <sys/types.h>
17
18 #if TIME_WITH_SYS_TIME
19 # include <sys/time.h>
20 # include <time.h>
21 #else
22 # if HAVE_SYS_TIME_H
23 #  include <sys/time.h>
24 # else
25 #  include <time.h>
26 # endif
27 #endif
28
29 #include <sys/wait.h>
30 #include <ctype.h>
31 #include <string.h>
32 #include <limits.h>
33 #include "citadel.h"
34 #include "server.h"
35 #include "sysdep_decls.h"
36 #include "citserver.h"
37 #include "support.h"
38 #include "config.h"
39 #include "serv_extensions.h"
40 #include "room_ops.h"
41 #include "user_ops.h"
42 #include "policy.h"
43 #include "database.h"
44 #include "msgbase.h"
45 #include "tools.h"
46 #include "internet_addressing.h"
47 #include "serv_imap.h"
48 #include "imap_tools.h"
49 #include "imap_fetch.h"
50 #include "imap_misc.h"
51 #include "genstamp.h"
52
53
54
55
56
57
58 /*
59  * imap_copy() calls imap_do_copy() to do its actual work, once it's
60  * validated and boiled down the request a bit.  (returns 0 on success)
61  */
62 int imap_do_copy(char *destination_folder) {
63         int i;
64         char roomname[ROOMNAMELEN];
65
66         i = imap_grabroom(roomname, destination_folder, 0);
67         if (i != 0) return(i);
68
69         if (IMAP->num_msgs > 0) {
70                 for (i = 0; i < IMAP->num_msgs; ++i) {
71                         if (IMAP->flags[i] & IMAP_SELECTED) {
72                                 CtdlCopyMsgToRoom(
73                                         IMAP->msgids[i], roomname);
74                         }
75                 }
76         }
77
78         return(0);
79 }
80
81
82 /*
83  * This function is called by the main command loop.
84  */
85 void imap_copy(int num_parms, char *parms[]) {
86         int ret;
87
88         if (num_parms != 4) {
89                 cprintf("%s BAD invalid parameters\r\n", parms[0]);
90                 return;
91         }
92
93         if (imap_is_message_set(parms[2])) {
94                 imap_pick_range(parms[2], 0);
95         }
96         else {
97                 cprintf("%s BAD invalid parameters\r\n", parms[0]);
98                 return;
99         }
100
101         ret = imap_do_copy(parms[3]);
102         if (!ret) {
103                 cprintf("%s OK COPY completed\r\n", parms[0]);
104         }
105         else {
106                 cprintf("%s NO COPY failed (error %d)\r\n", parms[0], ret);
107         }
108 }
109
110 /*
111  * This function is called by the main command loop.
112  */
113 void imap_uidcopy(int num_parms, char *parms[]) {
114
115         if (num_parms != 5) {
116                 cprintf("%s BAD invalid parameters\r\n", parms[0]);
117                 return;
118         }
119
120         if (imap_is_message_set(parms[3])) {
121                 imap_pick_range(parms[3], 1);
122         }
123         else {
124                 cprintf("%s BAD invalid parameters\r\n", parms[0]);
125                 return;
126         }
127
128         if (imap_do_copy(parms[4]) == 0) {
129                 cprintf("%s OK UID COPY completed\r\n", parms[0]);
130         }
131         else {
132                 cprintf("%s NO UID COPY failed\r\n", parms[0]);
133         }
134 }
135
136
137 /*
138  * Poll for instant messages (yeah, we can do this in IMAP ... I think)
139  */
140 void imap_print_instant_messages(void) {
141         struct ExpressMessage *ptr, *holdptr;
142         char *dumpomatic = NULL;
143         char tmp[SIZ];
144         int i;
145         size_t size, size2;
146         struct tm stamp;
147
148         if (CC->FirstExpressMessage == NULL) {
149                 return;
150         }
151         begin_critical_section(S_SESSION_TABLE);
152         ptr = CC->FirstExpressMessage;
153         CC->FirstExpressMessage = NULL;
154         end_critical_section(S_SESSION_TABLE);
155
156         while (ptr != NULL) {
157                 localtime_r(&(ptr->timestamp), &stamp);
158                 size = strlen(ptr->text) + SIZ;
159                 dumpomatic = malloc(size);
160                 strcpy(dumpomatic, "");
161                 if (ptr->flags && EM_BROADCAST)
162                         strcat(dumpomatic, "Broadcast message ");
163                 else if (ptr->flags && EM_CHAT)
164                         strcat(dumpomatic, "Chat request ");
165                 else if (ptr->flags && EM_GO_AWAY)
166                         strcat(dumpomatic, "Please logoff now, as requested ");
167                 else
168                         strcat(dumpomatic, "Message ");
169
170                 /* Timestamp.  Can this be improved? */
171                 if (stamp.tm_hour == 0 || stamp.tm_hour == 12)
172                         sprintf(tmp, "at 12:%02d%cm",
173                                 stamp.tm_min, 
174                                 stamp.tm_hour ? 'p' : 'a');
175                 else if (stamp.tm_hour > 12)            /* pm */
176                         sprintf(tmp, "at %d:%02dpm",
177                                 stamp.tm_hour - 12,
178                                 stamp.tm_min);
179                 else                                    /* am */
180                         sprintf(tmp, "at %d:%02dam",
181                                 stamp.tm_hour, stamp.tm_min);
182                 strcat(dumpomatic, tmp);
183
184                 size2 = strlen(dumpomatic);
185                 snprintf(&dumpomatic[size2], size - size2,
186                         " from %s:\n", ptr->sender);
187                 if (ptr->text != NULL)
188                         strcat(dumpomatic, ptr->text);
189
190                 holdptr = ptr->next;
191                 if (ptr->text != NULL) free(ptr->text);
192                 free(ptr);
193                 ptr = holdptr;
194
195                 for (i=0; i<strlen(dumpomatic); ++i) {
196                         if (!isprint(dumpomatic[i])) dumpomatic[i] = ' ';
197                         if (dumpomatic[i]=='\\') dumpomatic[i]='/';
198                         if (dumpomatic[i]=='\"') dumpomatic[i]='\'';
199                 }
200
201                 cprintf("* OK [ALERT] %s\r\n", dumpomatic);
202                 free(dumpomatic);
203         }
204         cprintf("000\n");
205 }
206
207
208 /*
209  * imap_do_append_flags() is called by imap_append() to set any flags that
210  * the client specified at append time.
211  *
212  * FIXME find a way to do these in bulk so we don't max out our db journal
213  */
214 void imap_do_append_flags(long new_msgnum, char *new_message_flags) {
215         char flags[32];
216         char this_flag[sizeof flags];
217         int i;
218
219         if (new_message_flags == NULL) return;
220         if (strlen(new_message_flags) == 0) return;
221
222         safestrncpy(flags, new_message_flags, sizeof flags);
223
224         for (i=0; i<num_tokens(flags, ' '); ++i) {
225                 extract_token(this_flag, flags, i, ' ');
226                 if (this_flag[0] == '\\') strcpy(this_flag, &this_flag[1]);
227                 if (!strcasecmp(this_flag, "Seen")) {
228                         CtdlSetSeen(new_msgnum, 1, ctdlsetseen_seen);
229                 }
230                 if (!strcasecmp(this_flag, "Answered")) {
231                         CtdlSetSeen(new_msgnum, 1, ctdlsetseen_answered);
232                 }
233         }
234 }
235
236
237 /*
238  * This function is called by the main command loop.
239  */
240 void imap_append(int num_parms, char *parms[]) {
241         long literal_length;
242         long bytes_transferred;
243         long stripped_length = 0;
244         struct CtdlMessage *msg;
245         long new_msgnum = (-1L);
246         int ret = 0;
247         size_t blksize;
248         char roomname[ROOMNAMELEN];
249         char buf[SIZ];
250         char savedroom[ROOMNAMELEN];
251         int msgs, new;
252         int i;
253         char new_message_flags[SIZ];
254
255         if (num_parms < 4) {
256                 cprintf("%s BAD usage error\r\n", parms[0]);
257                 return;
258         }
259
260         if ( (parms[num_parms-1][0] != '{')
261            || (parms[num_parms-1][strlen(parms[num_parms-1])-1] != '}') )  {
262                 cprintf("%s BAD no message literal supplied\r\n", parms[0]);
263                 return;
264         }
265
266         strcpy(new_message_flags, "");
267         if (num_parms >= 5) {
268                 for (i=3; i<num_parms; ++i) {
269                         strcat(new_message_flags, parms[i]);
270                         strcat(new_message_flags, " ");
271                 }
272                 stripallbut(new_message_flags, '(', ')');
273         }
274
275         /* This is how we'd do this if it were relevant in our data store.
276          * if (num_parms >= 6) {
277          *  new_message_internaldate = parms[4];
278          * }
279          */
280
281         literal_length = atol(&parms[num_parms-1][1]);
282         if (literal_length < 1) {
283                 cprintf("%s BAD Message length must be at least 1.\r\n",
284                         parms[0]);
285                 return;
286         }
287
288         imap_free_transmitted_message();        /* just in case. */
289         IMAP->transmitted_message = malloc(literal_length + 1);
290         if (IMAP->transmitted_message == NULL) {
291                 cprintf("%s NO Cannot allocate memory.\r\n", parms[0]);
292                 return;
293         }
294         IMAP->transmitted_length = literal_length;
295
296         cprintf("+ Transmit message now.\r\n");
297
298         bytes_transferred = 0;
299
300         do {
301                 blksize = literal_length - bytes_transferred;
302                 if (blksize > SIZ) blksize = SIZ;
303
304                 flush_output();
305                 ret = client_read(&IMAP->transmitted_message[bytes_transferred],
306                          blksize);
307                 if (ret < 1) {
308                         bytes_transferred = literal_length;     /* bail out */
309                 }
310                 else {
311                         bytes_transferred += blksize;           /* keep going */
312                 }
313         } while (bytes_transferred < literal_length);
314
315         IMAP->transmitted_message[literal_length] = 0;
316         if (ret != 1) {
317                 cprintf("%s NO Read failed.\r\n", parms[0]);
318                 return;
319         }
320
321         /* Client will transmit a trailing CRLF after the literal (the message
322          * text) is received.  This call to client_getln() absorbs it.
323          */
324         flush_output();
325         client_getln(buf, sizeof buf);
326
327         /* Convert RFC822 newlines (CRLF) to Unix newlines (LF) */
328         stripped_length = 0;
329         for (i=0; i<literal_length; ++i) {
330                 if (strncmp(&IMAP->transmitted_message[i], "\r\n", 2)) {
331                         IMAP->transmitted_message[stripped_length++] = IMAP->transmitted_message[i];
332                 }
333         }
334         literal_length = stripped_length;
335         IMAP->transmitted_message[literal_length] = 0;  /* reterminate it */
336
337         lprintf(CTDL_DEBUG, "Converting message format\n");
338         msg = convert_internet_message(IMAP->transmitted_message);
339         IMAP->transmitted_message = NULL;
340         IMAP->transmitted_length = 0;
341
342         ret = imap_grabroom(roomname, parms[2], 0);
343         if (ret != 0) {
344                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
345                         parms[0]);
346                 return;
347         }
348
349         /*
350          * usergoto() formally takes us to the desired room.  (If another
351          * folder is selected, save its name so we can return there!!!!!)
352          */
353         if (IMAP->selected) {
354                 strcpy(savedroom, CC->room.QRname);
355         }
356         usergoto(roomname, 0, 0, &msgs, &new);
357
358         /* If the user is locally authenticated, FORCE the From: header to
359          * show up as the real sender.  FIXME do we really want to do this?
360          * Probably should make it site-definable or even room-definable.
361          *
362          * For now, we allow "forgeries" if the room is one of the user's
363          * private mailboxes.
364          */
365         if (CC->logged_in) {
366            if ( (CC->room.QRflags & QR_MAILBOX) == 0) {
367                 if (msg->cm_fields['A'] != NULL) free(msg->cm_fields['A']);
368                 if (msg->cm_fields['N'] != NULL) free(msg->cm_fields['N']);
369                 if (msg->cm_fields['H'] != NULL) free(msg->cm_fields['H']);
370                 msg->cm_fields['A'] = strdup(CC->user.fullname);
371                 msg->cm_fields['N'] = strdup(config.c_nodename);
372                 msg->cm_fields['H'] = strdup(config.c_humannode);
373             }
374         }
375
376         /* 
377          * Can we post here?
378          */
379         ret = CtdlDoIHavePermissionToPostInThisRoom(buf, sizeof buf);
380
381         if (ret) {
382                 /* Nope ... print an error message */
383                 cprintf("%s NO %s\r\n", parms[0], buf);
384         }
385
386         else {
387                 /* Yes ... go ahead and post! */
388                 if (msg != NULL) {
389                         new_msgnum = CtdlSubmitMsg(msg, NULL, "");
390                 }
391                 if (new_msgnum >= 0L) {
392                         cprintf("%s OK APPEND completed\r\n", parms[0]);
393                 }
394                 else {
395                         cprintf("%s BAD Error %ld saving message to disk.\r\n",
396                                 parms[0], new_msgnum);
397                 }
398         }
399
400         /*
401          * IMAP protocol response to client has already been sent by now.
402          *
403          * If another folder is selected, go back to that room so we can resume
404          * our happy day without violent explosions.
405          */
406         if (IMAP->selected) {
407                 usergoto(savedroom, 0, 0, &msgs, &new);
408         }
409
410         /* We don't need this buffer anymore */
411         CtdlFreeMessage(msg);
412
413         if (new_message_flags != NULL) {
414                 imap_do_append_flags(new_msgnum, new_message_flags);
415         }
416 }