f4d501c9d3853dd56c8895e804ac0c5d943755ea
[citadel.git] / citadel / modules / imap / imap_misc.c
1 /*
2  * Copyright (c) 1987-2011 by the citadel.org team
3  *
4  * This program is open source software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #include "sysdep.h"
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include <stdio.h>
24 #include <fcntl.h>
25 #include <signal.h>
26 #include <pwd.h>
27 #include <errno.h>
28 #include <sys/types.h>
29
30 #if TIME_WITH_SYS_TIME
31 # include <sys/time.h>
32 # include <time.h>
33 #else
34 # if HAVE_SYS_TIME_H
35 #  include <sys/time.h>
36 # else
37 #  include <time.h>
38 # endif
39 #endif
40
41 #include <sys/wait.h>
42 #include <ctype.h>
43 #include <string.h>
44 #include <limits.h>
45 #include <libcitadel.h>
46 #include "citadel.h"
47 #include "server.h"
48 #include "sysdep_decls.h"
49 #include "citserver.h"
50 #include "support.h"
51 #include "config.h"
52 #include "user_ops.h"
53 #include "database.h"
54 #include "msgbase.h"
55 #include "room_ops.h"
56 #include "internet_addressing.h"
57 #include "serv_imap.h"
58 #include "imap_tools.h"
59 #include "imap_fetch.h"
60 #include "imap_misc.h"
61 #include "genstamp.h"
62 #include "ctdl_module.h"
63
64
65
66
67
68 /*
69  * imap_copy() calls imap_do_copy() to do its actual work, once it's
70  * validated and boiled down the request a bit.  (returns 0 on success)
71  */
72 int imap_do_copy(const char *destination_folder) {
73         citimap *Imap = IMAP;
74         int i;
75         char roomname[ROOMNAMELEN];
76         struct ctdlroom qrbuf;
77         long *selected_msgs = NULL;
78         int num_selected = 0;
79
80         if (Imap->num_msgs < 1) {
81                 return(0);
82         }
83
84         i = imap_grabroom(roomname, destination_folder, 1);
85         if (i != 0) return(i);
86
87         /*
88          * Copy all the message pointers in one shot.
89          */
90         selected_msgs = malloc(sizeof(long) * Imap->num_msgs);
91         if (selected_msgs == NULL) return(-1);
92
93         for (i = 0; i < Imap->num_msgs; ++i) {
94                 if (Imap->flags[i] & IMAP_SELECTED) {
95                         selected_msgs[num_selected++] = Imap->msgids[i];
96                 }
97         }
98
99         if (num_selected > 0) {
100                 CtdlSaveMsgPointersInRoom(roomname, selected_msgs, num_selected, 1, NULL, 0);
101         }
102         free(selected_msgs);
103
104         /* Don't bother wasting any more time if there were no messages. */
105         if (num_selected == 0) {
106                 return(0);
107         }
108
109         /* Enumerate lists of messages for which flags are toggled */
110         long *seen_yes = NULL;
111         int num_seen_yes = 0;
112         long *seen_no = NULL;
113         int num_seen_no = 0;
114         long *answ_yes = NULL;
115         int num_answ_yes = 0;
116         long *answ_no = NULL;
117         int num_answ_no = 0;
118
119         seen_yes = malloc(num_selected * sizeof(long));
120         seen_no = malloc(num_selected * sizeof(long));
121         answ_yes = malloc(num_selected * sizeof(long));
122         answ_no = malloc(num_selected * sizeof(long));
123
124         for (i = 0; i < Imap->num_msgs; ++i) {
125                 if (Imap->flags[i] & IMAP_SELECTED) {
126                         if (Imap->flags[i] & IMAP_SEEN) {
127                                 seen_yes[num_seen_yes++] = Imap->msgids[i];
128                         }
129                         if ((Imap->flags[i] & IMAP_SEEN) == 0) {
130                                 seen_no[num_seen_no++] = Imap->msgids[i];
131                         }
132                         if (Imap->flags[i] & IMAP_ANSWERED) {
133                                 answ_yes[num_answ_yes++] = Imap->msgids[i];
134                         }
135                         if ((Imap->flags[i] & IMAP_ANSWERED) == 0) {
136                                 answ_no[num_answ_no++] = Imap->msgids[i];
137                         }
138                 }
139         }
140
141         /* Set the flags... */
142         i = CtdlGetRoom(&qrbuf, roomname);
143         if (i == 0) {
144                 CtdlSetSeen(seen_yes, num_seen_yes, 1, ctdlsetseen_seen, NULL, &qrbuf);
145                 CtdlSetSeen(seen_no, num_seen_no, 0, ctdlsetseen_seen, NULL, &qrbuf);
146                 CtdlSetSeen(answ_yes, num_answ_yes, 1, ctdlsetseen_answered, NULL, &qrbuf);
147                 CtdlSetSeen(answ_no, num_answ_no, 0, ctdlsetseen_answered, NULL, &qrbuf);
148         }
149
150         free(seen_yes);
151         free(seen_no);
152         free(answ_yes);
153         free(answ_no);
154
155         return(0);
156 }
157
158
159 /*
160  * Output the [COPYUID xxx yyy] response code required by RFC2359
161  * to tell the client the UID's of the messages that were copied (if any).
162  * We are assuming that the IMAP_SELECTED flag is still set on any relevant
163  * messages in our source room.  Since the Citadel system uses UID's that
164  * are both globally unique and persistent across a room-to-room copy, we
165  * can get this done quite easily.
166  */
167 void imap_output_copyuid_response(void) {
168         citimap *Imap = IMAP;
169         int i;
170         int num_output = 0;
171   
172         for (i = 0; i < Imap->num_msgs; ++i) {
173                 if (Imap->flags[i] & IMAP_SELECTED) {
174                         ++num_output;
175                         if (num_output == 1) {
176                                 IAPuts("[COPYUID ");
177                         }
178                         else if (num_output > 1) {
179                                 IAPuts(",");
180                         }
181                         IAPrintf("%ld", Imap->msgids[i]);
182                 }
183         }
184         if (num_output > 0) {
185                 IAPuts("] ");
186         }
187 }
188
189
190 /*
191  * This function is called by the main command loop.
192  */
193 void imap_copy(int num_parms, ConstStr *Params) {
194         int ret;
195
196         if (num_parms != 4) {
197                 IReply("BAD invalid parameters");
198                 return;
199         }
200
201         if (imap_is_message_set(Params[2].Key)) {
202                 imap_pick_range(Params[2].Key, 0);
203         }
204         else {
205                 IReply("BAD invalid parameters");
206                 return;
207         }
208
209         ret = imap_do_copy(Params[3].Key);
210         if (!ret) {
211                 IAPrintf("%s OK ", Params[0].Key);
212                 imap_output_copyuid_response();
213                 IAPuts("COPY completed\r\n");
214         }
215         else {
216                 IReplyPrintf("NO COPY failed (error %d)", ret);
217         }
218 }
219
220 /*
221  * This function is called by the main command loop.
222  */
223 void imap_uidcopy(int num_parms, ConstStr *Params) {
224
225         if (num_parms != 5) {
226                 IReply("BAD invalid parameters");
227                 return;
228         }
229
230         if (imap_is_message_set(Params[3].Key)) {
231                 imap_pick_range(Params[3].Key, 1);
232         }
233         else {
234                 IReply("BAD invalid parameters");
235                 return;
236         }
237
238         if (imap_do_copy(Params[4].Key) == 0) {
239                 IAPrintf("%s OK ", Params[0].Key);
240                 imap_output_copyuid_response();
241                 IAPuts("UID COPY completed\r\n");
242         }
243         else {
244                 IReply("NO UID COPY failed");
245         }
246 }
247
248
249 /*
250  * imap_do_append_flags() is called by imap_append() to set any flags that
251  * the client specified at append time.
252  *
253  * FIXME find a way to do these in bulk so we don't max out our db journal
254  */
255 void imap_do_append_flags(long new_msgnum, char *new_message_flags) {
256         char flags[32];
257         char this_flag[sizeof flags];
258         int i;
259
260         if (new_message_flags == NULL) return;
261         if (IsEmptyStr(new_message_flags)) return;
262
263         safestrncpy(flags, new_message_flags, sizeof flags);
264
265         for (i=0; i<num_tokens(flags, ' '); ++i) {
266                 extract_token(this_flag, flags, i, ' ', sizeof this_flag);
267                 if (this_flag[0] == '\\') strcpy(this_flag, &this_flag[1]);
268                 if (!strcasecmp(this_flag, "Seen")) {
269                         CtdlSetSeen(&new_msgnum, 1, 1, ctdlsetseen_seen,
270                                 NULL, NULL);
271                 }
272                 if (!strcasecmp(this_flag, "Answered")) {
273                         CtdlSetSeen(&new_msgnum, 1, 1, ctdlsetseen_answered,
274                                 NULL, NULL);
275                 }
276         }
277 }
278
279
280 /*
281  * This function is called by the main command loop.
282  */
283 void imap_append(int num_parms, ConstStr *Params) {
284         struct CitContext *CCC = CC;
285         long literal_length;
286         struct CtdlMessage *msg = NULL;
287         long new_msgnum = (-1L);
288         int ret = 0;
289         char roomname[ROOMNAMELEN];
290         char errbuf[SIZ];
291         char dummy[SIZ];
292         char savedroom[ROOMNAMELEN];
293         int msgs, new;
294         int i;
295         char new_message_flags[SIZ];
296         citimap *Imap;
297
298         if (num_parms < 4) {
299                 IReply("BAD usage error");
300                 return;
301         }
302
303         if ( (Params[num_parms-1].Key[0] != '{')
304            || (Params[num_parms-1].Key[Params[num_parms-1].len-1] != '}') )  {
305                 IReply("BAD no message literal supplied");
306                 return;
307         }
308
309         *new_message_flags = '\0';
310         if (num_parms >= 5) {
311                 for (i=3; i<num_parms; ++i) {
312                         strcat(new_message_flags, Params[i].Key);
313                         strcat(new_message_flags, " ");
314                 }
315                 stripallbut(new_message_flags, '(', ')');
316         }
317
318         /* This is how we'd do this if it were relevant in our data store.
319          * if (num_parms >= 6) {
320          *  new_message_internaldate = parms[4];
321          * }
322          */
323
324         literal_length = atol(&Params[num_parms-1].Key[1]);
325         if (literal_length < 1) {
326                 IReply("BAD Message length must be at least 1.");
327                 return;
328         }
329
330         Imap = IMAP;
331         imap_free_transmitted_message();        /* just in case. */
332
333         Imap->TransmittedMessage = NewStrBufPlain(NULL, literal_length);
334
335         if (Imap->TransmittedMessage == NULL) {
336                 IReply("NO Cannot allocate memory.");
337                 return;
338         }
339         
340         IAPrintf("+ Transmit message now.\r\n");
341         
342         IUnbuffer ();
343
344         client_read_blob(Imap->TransmittedMessage, literal_length, config.c_sleeping);
345
346         if ((ret < 0) || (StrLength(Imap->TransmittedMessage) < literal_length)) {
347                 IReply("NO Read failed.");
348                 return;
349         }
350
351         /* Client will transmit a trailing CRLF after the literal (the message
352          * text) is received.  This call to client_getln() absorbs it.
353          */
354         flush_output();
355         client_getln(dummy, sizeof dummy);
356
357         /* Convert RFC822 newlines (CRLF) to Unix newlines (LF) */
358         IMAPM_syslog(LOG_DEBUG, "Converting CRLF to LF");
359         StrBufToUnixLF(Imap->TransmittedMessage);
360
361         IMAPM_syslog(LOG_DEBUG, "Converting message format");
362         msg = convert_internet_message_buf(&Imap->TransmittedMessage);
363
364         ret = imap_grabroom(roomname, Params[2].Key, 1);
365         if (ret != 0) {
366                 IReply("NO Invalid mailbox name or access denied");
367                 return;
368         }
369
370         /*
371          * CtdlUserGoto() formally takes us to the desired room.  (If another
372          * folder is selected, save its name so we can return there!!!!!)
373          */
374         if (Imap->selected) {
375                 strcpy(savedroom, CCC->room.QRname);
376         }
377         CtdlUserGoto(roomname, 0, 0, &msgs, &new, NULL, NULL);
378
379         /* If the user is locally authenticated, FORCE the From: header to
380          * show up as the real sender.  FIXME do we really want to do this?
381          * Probably should make it site-definable or even room-definable.
382          *
383          * For now, we allow "forgeries" if the room is one of the user's
384          * private mailboxes.
385          */
386         if (CCC->logged_in) {
387            if ( ((CCC->room.QRflags & QR_MAILBOX) == 0) && (config.c_imap_keep_from == 0)) {
388
389                 CM_SetField(msg, eAuthor, CCC->user.fullname, strlen(CCC->user.fullname));
390                 CM_SetField(msg, eNodeName, CFG_KEY(c_nodename));
391                 CM_SetField(msg, eHumanNode, CFG_KEY(c_humannode));
392             }
393         }
394
395         /* 
396          * Can we post here?
397          */
398         ret = CtdlDoIHavePermissionToPostInThisRoom(errbuf, sizeof errbuf, NULL, POST_LOGGED_IN, 0);
399
400         if (ret) {
401                 /* Nope ... print an error message */
402                 IReplyPrintf("NO %s", errbuf);
403         }
404
405         else {
406                 /* Yes ... go ahead and post! */
407                 if (msg != NULL) {
408                         new_msgnum = CtdlSubmitMsg(msg, NULL, "", 0);
409                 }
410                 if (new_msgnum >= 0L) {
411                         IReplyPrintf("OK [APPENDUID %ld %ld] APPEND completed",
412                                      GLOBAL_UIDVALIDITY_VALUE, new_msgnum);
413                 }
414                 else {
415                         IReplyPrintf("BAD Error %ld saving message to disk.",
416                                      new_msgnum);
417                 }
418         }
419
420         /*
421          * IMAP protocol response to client has already been sent by now.
422          *
423          * If another folder is selected, go back to that room so we can resume
424          * our happy day without violent explosions.
425          */
426         if (Imap->selected) {
427                 CtdlUserGoto(savedroom, 0, 0, &msgs, &new, NULL, NULL);
428         }
429
430         /* We don't need this buffer anymore */
431         CM_Free(msg);
432
433         if (IsEmptyStr(new_message_flags)) {
434                 imap_do_append_flags(new_msgnum, new_message_flags);
435         }
436 }