fix all the <time.h> vs. <sys/time.h> issues, hopefully
[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 "dynloader.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);
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 express messages (yeah, we can do this in IMAP ... I think)
139  */
140 void imap_print_express_messages(void) {
141         struct ExpressMessage *ptr, *holdptr;
142         char *dumpomatic = NULL;
143         int i;
144
145         if (CC->FirstExpressMessage == NULL) {
146                 return;
147         }
148         begin_critical_section(S_SESSION_TABLE);
149         ptr = CC->FirstExpressMessage;
150         CC->FirstExpressMessage = NULL;
151         end_critical_section(S_SESSION_TABLE);
152
153         while (ptr != NULL) {
154                 dumpomatic = mallok(strlen(ptr->text) + SIZ);
155                 strcpy(dumpomatic, "");
156                 if (ptr->flags && EM_BROADCAST)
157                         strcat(dumpomatic, "Broadcast message ");
158                 else if (ptr->flags && EM_CHAT)
159                         strcat(dumpomatic, "Chat request ");
160                 else if (ptr->flags && EM_GO_AWAY)
161                         strcat(dumpomatic, "Please logoff now, as requested ");
162                 else
163                         strcat(dumpomatic, "Message ");
164                 sprintf(&dumpomatic[strlen(dumpomatic)],
165                         "from %s:\n", ptr->sender);
166                 if (ptr->text != NULL)
167                         strcat(dumpomatic, ptr->text);
168
169                 holdptr = ptr->next;
170                 if (ptr->text != NULL) phree(ptr->text);
171                 phree(ptr);
172                 ptr = holdptr;
173
174                 for (i=0; i<strlen(dumpomatic); ++i) {
175                         if (!isprint(dumpomatic[i])) dumpomatic[i] = ' ';
176                         if (dumpomatic[i]=='\\') dumpomatic[i]='/';
177                         if (dumpomatic[i]=='\"') dumpomatic[i]='\'';
178                 }
179
180                 cprintf("* OK [ALERT] %s\r\n", dumpomatic);
181                 phree(dumpomatic);
182         }
183         cprintf("000\n");
184 }
185
186
187
188 /*
189  * This function is called by the main command loop.
190  */
191 void imap_append(int num_parms, char *parms[]) {
192         size_t literal_length;
193         struct CtdlMessage *msg;
194         int ret;
195         char roomname[ROOMNAMELEN];
196         char buf[SIZ];
197         char savedroom[ROOMNAMELEN];
198         int msgs, new;
199
200
201         if (num_parms < 4) {
202                 cprintf("%s BAD usage error\r\n", parms[0]);
203                 return;
204         }
205
206         if ( (parms[num_parms-1][0] != '{')
207            || (parms[num_parms-1][strlen(parms[num_parms-1])-1] != '}') )  {
208                 cprintf("%s BAD no message literal supplied\r\n", parms[0]);
209                 return;
210         }
211
212         literal_length = (size_t) atol(&parms[num_parms-1][1]);
213         if (literal_length < 1) {
214                 cprintf("%s BAD Message length must be at least 1.\r\n",
215                         parms[0]);
216                 return;
217         }
218
219         imap_free_transmitted_message();        /* just in case. */
220         IMAP->transmitted_message = mallok(literal_length + 1);
221         if (IMAP->transmitted_message == NULL) {
222                 cprintf("%s NO Cannot allocate memory.\r\n", parms[0]);
223                 return;
224         }
225         IMAP->transmitted_length = literal_length;
226
227         cprintf("+ Transmit message now.\r\n");
228         ret = client_read(IMAP->transmitted_message, literal_length);
229         IMAP->transmitted_message[literal_length] = 0;
230         if (ret != 1) {
231                 cprintf("%s NO Read failed.\r\n", parms[0]);
232                 return;
233         }
234
235         lprintf(9, "Converting message...\n");
236         msg = convert_internet_message(IMAP->transmitted_message);
237         IMAP->transmitted_message = NULL;
238         IMAP->transmitted_length = 0;
239
240         /* If the user is locally authenticated, FORCE the From: header to
241          * show up as the real sender.  FIXME do we really want to do this?
242          * Probably should make it site-definable or even room-definable.
243          */
244         if (CC->logged_in) {
245                 if (msg->cm_fields['A'] != NULL) phree(msg->cm_fields['A']);
246                 if (msg->cm_fields['N'] != NULL) phree(msg->cm_fields['N']);
247                 if (msg->cm_fields['H'] != NULL) phree(msg->cm_fields['H']);
248                 msg->cm_fields['A'] = strdoop(CC->usersupp.fullname);
249                 msg->cm_fields['N'] = strdoop(config.c_nodename);
250                 msg->cm_fields['H'] = strdoop(config.c_humannode);
251         }
252
253         ret = imap_grabroom(roomname, parms[2]);
254         if (ret != 0) {
255                 cprintf("%s NO Invalid mailbox name or location, or access denied\r\n",
256                         parms[0]);
257                 return;
258         }
259
260         /*
261          * usergoto() formally takes us to the desired room.  (If another
262          * folder is selected, save its name so we can return there!!!!!)
263          */
264         if (IMAP->selected) {
265                 strcpy(savedroom, CC->quickroom.QRname);
266         }
267         usergoto(roomname, 0, &msgs, &new);
268
269         /* 
270          * Can we post here?
271          */
272         ret = CtdlDoIHavePermissionToPostInThisRoom(buf);
273
274         if (ret) {
275                 /* Nope ... print an error message */
276                 cprintf("%s NO %s\r\n", parms[0], buf);
277         }
278
279         else {
280                 /* Yes ... go ahead and post! */
281                 if (msg != NULL) {
282                         CtdlSaveMsg(msg, "", "", 0);
283                 }
284                 cprintf("%s OK APPEND completed\r\n", parms[0]);
285         }
286
287         /*
288          * IMAP protocol response to client has already been sent by now.
289          *
290          * If another folder is selected, go back to that room so we can resume
291          * our happy day without violent explosions.
292          */
293         if (IMAP->selected) {
294                 usergoto(savedroom, 0, &msgs, &new);
295         }
296
297         /* We don't need this buffer anymore */
298         CtdlFreeMessage(msg);
299 }