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