Do not attempt to search for database records of length 0.
[citadel.git] / citadel / modules / ctdlproto / serv_messages.c
1 // Message-related protocol commands for Citadel clients
2 //
3 // Copyright (c) 1987-2021 by the citadel.org team
4 //
5 // This program is open source software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License version 3.
7 //
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
12
13 #include <stdio.h>
14 #include <libcitadel.h>
15 #include "citserver.h"
16 #include "ctdl_module.h"
17 #include "internet_addressing.h"
18 #include "user_ops.h"
19 #include "room_ops.h"
20 #include "config.h"
21
22 extern char *msgkeys[];
23
24
25 // Back end for the MSGS command: output message number only.
26 void simple_listing(long msgnum, void *userdata) {
27         cprintf("%ld\n", msgnum);
28 }
29
30
31 // Back end for the MSGS command: output header summary.
32 void headers_listing(long msgnum, void *userdata) {
33         struct CtdlMessage *msg;
34         int output_mode =  *(int *)userdata;
35
36         msg = CtdlFetchMessage(msgnum, 0);
37         if (msg == NULL) {
38                 cprintf("%ld|0|||||||\n", msgnum);
39                 return;
40         }
41
42         // change all vertical bars in the subject to hyphens so it doesn't screw up the protocol
43         if (!CM_IsEmpty(msg, eMsgSubject)) {
44                 char *p;
45                 for (p=msg->cm_fields[eMsgSubject]; *p; p++) {
46                         if (*p == '|') {
47                                 *p = '-';
48                         }
49                 }
50         }
51
52         // output all fields except the references hash
53         cprintf("%ld|%s|%s|%s|%s|%s",
54                 msgnum,
55                 (!CM_IsEmpty(msg, eTimestamp) ? msg->cm_fields[eTimestamp] : "0"),
56                 (!CM_IsEmpty(msg, eAuthor) ? msg->cm_fields[eAuthor] : ""),
57                 CtdlGetConfigStr("c_nodename"),                                         // no more nodenames anymore
58                 (!CM_IsEmpty(msg, erFc822Addr) ? msg->cm_fields[erFc822Addr] : ""),
59                 (!CM_IsEmpty(msg, eMsgSubject) ? msg->cm_fields[eMsgSubject] : "")
60         );
61
62         if (output_mode == MSG_HDRS_THREADS) {          // field view with thread hashes
63
64                 // output the references hash
65                 cprintf ("|%d|", 
66                         (!CM_IsEmpty(msg, emessageId) ? HashLittle(msg->cm_fields[emessageId],strlen(msg->cm_fields[emessageId])) : 0)
67                 );
68         
69                 // output the references hash (yes it's ok that we're trashing the source buffer by doing this)
70                 if (!CM_IsEmpty(msg, eWeferences)) {
71                         char *token;
72                         char *rest = msg->cm_fields[eWeferences];
73                         char *prev = rest;
74                         while((token = strtok_r(rest, "|", &rest))) {
75                                 cprintf("%d%s", HashLittle(token,rest-prev-(*rest==0?0:1)), (*rest==0?"":","));
76                                 prev = rest;
77                         }
78                 }
79         
80                 cprintf("|\n");
81         }
82
83         else {                                          // field view with no threads, subject extends out forever
84                 cprintf("\n");
85         }
86
87         CM_Free(msg);
88 }
89
90 typedef struct _msg_filter {
91         HashList *Filter;
92         HashPos *p;
93         StrBuf *buffer;
94 } msg_filter;
95
96
97 void headers_brief_filter(long msgnum, void *userdata) {
98         long i, l;
99         struct CtdlMessage *msg;
100         msg_filter *flt = (msg_filter*) userdata;
101
102         l = GetCount(flt->Filter);
103         msg = CtdlFetchMessage(msgnum, 0);
104         StrBufPrintf(flt->buffer, "%ld", msgnum);
105         if (msg == NULL) {
106                 for (i = 0; i < l; i++) {
107                         StrBufAppendBufPlain(flt->buffer, HKEY("|"), 0);
108                 }
109         }
110         else {
111                 const char *k;
112                 long len;
113                 void *v;
114                 RewindHashPos(flt->Filter, flt->p, 0);
115                 while (GetNextHashPos(flt->Filter, flt->p, &len, &k, &v)) {
116                         eMsgField f = (eMsgField) v;
117                         
118                         StrBufAppendBufPlain(flt->buffer, HKEY("|"), 0);
119                         if (!CM_IsEmpty(msg, f)) {
120                                 StrBufAppendBufPlain(flt->buffer, CM_KEY(msg, f), 0);
121                         }
122                 }
123         }
124         StrBufAppendBufPlain(flt->buffer, HKEY("\n"), 0);
125         cputbuf(flt->buffer);
126 }
127
128 // Back end for the MSGS command: output EUID header.
129 void headers_euid(long msgnum, void *userdata) {
130         struct CtdlMessage *msg;
131
132         msg = CtdlFetchMessage(msgnum, 0);
133         if (msg == NULL) {
134                 cprintf("%ld||\n", msgnum);
135                 return;
136         }
137
138         cprintf("%ld|%s|%s\n", 
139                 msgnum, 
140                 (!CM_IsEmpty(msg, eExclusiveID) ? msg->cm_fields[eExclusiveID] : ""),
141                 (!CM_IsEmpty(msg, eTimestamp) ? msg->cm_fields[eTimestamp] : "0"));
142         CM_Free(msg);
143 }
144
145
146 // cmd_msgs()  -  get list of message #'s in this room
147 //              implements the MSGS server command using CtdlForEachMessage()
148 void cmd_msgs(char *cmdbuf) {
149         int mode = 0;
150         char which[16];
151         char buf[256];
152         char tfield[256];
153         char tvalue[256];
154         int cm_ref = 0;
155         int with_template = 0;
156         struct CtdlMessage *template = NULL;
157         msg_filter filt;
158         char search_string[1024];
159         ForEachMsgCallback CallBack;
160
161         if (CtdlAccessCheck(ac_logged_in_or_guest)) return;
162
163         extract_token(which, cmdbuf, 0, '|', sizeof which);
164         cm_ref = extract_int(cmdbuf, 1);
165         extract_token(search_string, cmdbuf, 1, '|', sizeof search_string);
166         with_template = extract_int(cmdbuf, 2);
167         int output_mode = extract_int(cmdbuf, 3);
168         switch (output_mode) {
169                 default:
170                 case MSG_HDRS_BRIEF:
171                         CallBack = simple_listing;
172                         break;
173                 case MSG_HDRS_ALL:
174                 case MSG_HDRS_THREADS:
175                         CallBack = headers_listing;
176                         break;
177                 case MSG_HDRS_EUID:
178                         CallBack = headers_euid;
179                         break;
180                 case MSG_HDRS_BRIEFFILTER:
181                         with_template = 2;
182                         CallBack = headers_brief_filter;
183                         break;
184         }
185
186         strcat(which, "   ");
187         if (!strncasecmp(which, "OLD", 3))
188                 mode = MSGS_OLD;
189         else if (!strncasecmp(which, "NEW", 3))
190                 mode = MSGS_NEW;
191         else if (!strncasecmp(which, "FIRST", 5))
192                 mode = MSGS_FIRST;
193         else if (!strncasecmp(which, "LAST", 4))
194                 mode = MSGS_LAST;
195         else if (!strncasecmp(which, "GT", 2))
196                 mode = MSGS_GT;
197         else if (!strncasecmp(which, "LT", 2))
198                 mode = MSGS_LT;
199         else if (!strncasecmp(which, "SEARCH", 6))
200                 mode = MSGS_SEARCH;
201         else
202                 mode = MSGS_ALL;
203
204         if ( (mode == MSGS_SEARCH) && (!CtdlGetConfigInt("c_enable_fulltext")) ) {
205                 cprintf("%d Full text index is not enabled on this server.\n",
206                         ERROR + CMD_NOT_SUPPORTED);
207                 return;
208         }
209
210         if (with_template == 1) {
211                 memset(buf, 0, 5);
212                 unbuffer_output();
213                 cprintf("%d Send template then receive message list\n",
214                         START_CHAT_MODE);
215                 template = (struct CtdlMessage *)
216                         malloc(sizeof(struct CtdlMessage));
217                 memset(template, 0, sizeof(struct CtdlMessage));
218                 template->cm_magic = CTDLMESSAGE_MAGIC;
219                 template->cm_anon_type = MES_NORMAL;
220
221                 while(client_getln(buf, sizeof buf) >= 0 && strcmp(buf,"000")) {
222                         eMsgField f;
223                         long tValueLen;
224
225                         tValueLen = extract_token(tfield, buf, 0, '|', sizeof tfield);
226                         if ((tValueLen == 4) && GetFieldFromMnemonic(&f, tfield))
227                         {
228                                 tValueLen = extract_token(tvalue, buf, 1, '|', sizeof tvalue);
229                                 if (tValueLen >= 0) {
230                                         CM_SetField(template, f, tvalue, tValueLen);
231                                 }
232                         }
233                 }
234                 buffer_output();
235         }
236         else if (with_template == 2) {
237                 long i = 0;
238                 memset(buf, 0, 5);
239                 cprintf("%d Send list of headers\n",
240                         START_CHAT_MODE);
241                 filt.Filter = NewHash(1, lFlathash);
242                 filt.buffer = NewStrBufPlain(NULL, 1024);
243                 while(client_getln(buf, sizeof buf) >= 0 && strcmp(buf,"000")) {
244                         eMsgField f;
245         
246                         if (GetFieldFromMnemonic(&f, buf))
247                         {
248                                 Put(filt.Filter, LKEY(i), (void*)f, reference_free_handler);
249                                 i++;
250                         }
251                 }
252                 filt.p = GetNewHashPos(filt.Filter, 0);
253                 buffer_output();
254         }
255         else {
256                 cprintf("%d  \n", LISTING_FOLLOWS);
257         }
258
259         if (with_template < 2) {
260                 CtdlForEachMessage(mode,
261                                    ( (mode == MSGS_SEARCH) ? 0 : cm_ref ),
262                                    ( (mode == MSGS_SEARCH) ? search_string : NULL ),
263                                    NULL,
264                                    template,
265                                    CallBack,
266                                    &output_mode);
267                 if (template != NULL) CM_Free(template);
268         }
269         else {
270                 CtdlForEachMessage(mode,
271                                    ( (mode == MSGS_SEARCH) ? 0 : cm_ref ),
272                                    ( (mode == MSGS_SEARCH) ? search_string : NULL ),
273                                    NULL,
274                                    NULL,
275                                    CallBack,
276                                    &filt);
277                 DeleteHashPos(&filt.p);
278                 DeleteHash(&filt.Filter);
279                 FreeStrBuf(&filt.buffer);
280                 
281         }
282         cprintf("000\n");
283 }
284
285
286 /*
287  * display a message (mode 0 - Citadel proprietary)
288  */
289 void cmd_msg0(char *cmdbuf)
290 {
291         long msgid;
292         int headers_only = HEADERS_ALL;
293
294         msgid = extract_long(cmdbuf, 0);
295         headers_only = extract_int(cmdbuf, 1);
296
297         CtdlOutputMsg(msgid, MT_CITADEL, headers_only, 1, 0, NULL, 0, NULL, NULL, NULL);
298         return;
299 }
300
301
302 // display a message (mode 2 - RFC822)
303 void cmd_msg2(char *cmdbuf) {
304         long msgid;
305         int headers_only = HEADERS_ALL;
306
307         msgid = extract_long(cmdbuf, 0);
308         headers_only = extract_int(cmdbuf, 1);
309
310         CtdlOutputMsg(msgid, MT_RFC822, headers_only, 1, 1, NULL, 0, NULL, NULL, NULL);
311 }
312
313
314 // Display a message using MIME content types
315 void cmd_msg4(char *cmdbuf) {
316         long msgid;
317         char section[64];
318
319         msgid = extract_long(cmdbuf, 0);
320         extract_token(section, cmdbuf, 1, '|', sizeof section);
321         CtdlOutputMsg(msgid, MT_MIME, 0, 1, 0, (section[0] ? section : NULL) , 0, NULL, NULL, NULL);
322 }
323
324
325 // Client tells us its preferred message format(s)
326 void cmd_msgp(char *cmdbuf) {
327         if (!strcasecmp(cmdbuf, "dont_decode")) {
328                 CC->msg4_dont_decode = 1;
329                 cprintf("%d MSG4 will not pre-decode messages.\n", CIT_OK);
330         }
331         else {
332                 safestrncpy(CC->preferred_formats, cmdbuf, sizeof(CC->preferred_formats));
333                 cprintf("%d Preferred MIME formats have been set.\n", CIT_OK);
334         }
335 }
336
337
338 // Open a component of a MIME message as a download file 
339 void cmd_opna(char *cmdbuf) {
340         long msgid;
341         char desired_section[128];
342
343         msgid = extract_long(cmdbuf, 0);
344         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
345         safestrncpy(CC->download_desired_section, desired_section,
346                 sizeof CC->download_desired_section);
347         CtdlOutputMsg(msgid, MT_DOWNLOAD, 0, 1, 1, NULL, 0, NULL, NULL, NULL);
348 }                       
349
350
351 // Open a component of a MIME message and transmit it all at once
352 void cmd_dlat(char *cmdbuf) {
353         long msgid;
354         char desired_section[128];
355
356         msgid = extract_long(cmdbuf, 0);
357         extract_token(desired_section, cmdbuf, 1, '|', sizeof desired_section);
358         safestrncpy(CC->download_desired_section, desired_section,
359                 sizeof CC->download_desired_section);
360         CtdlOutputMsg(msgid, MT_SPEW_SECTION, 0, 1, 1, NULL, 0, NULL, NULL, NULL);
361 }
362
363
364 // message entry  -  mode 0 (normal)
365 void cmd_ent0(char *entargs) {
366         int post = 0;
367         char recp[SIZ];
368         char cc[SIZ];
369         char bcc[SIZ];
370         char supplied_euid[128];
371         int anon_flag = 0;
372         int format_type = 0;
373         char newusername[256];
374         char newuseremail[256];
375         struct CtdlMessage *msg;
376         int anonymous = 0;
377         char errmsg[SIZ];
378         int err = 0;
379         struct recptypes *valid = NULL;
380         struct recptypes *valid_to = NULL;
381         struct recptypes *valid_cc = NULL;
382         struct recptypes *valid_bcc = NULL;
383         char subject[SIZ];
384         int subject_required = 0;
385         int do_confirm = 0;
386         long msgnum;
387         int i, j;
388         char buf[256];
389         int newuseremail_ok = 0;
390         char references[SIZ];
391         char *ptr;
392
393         unbuffer_output();
394
395         post = extract_int(entargs, 0);
396         extract_token(recp, entargs, 1, '|', sizeof recp);
397         anon_flag = extract_int(entargs, 2);
398         format_type = extract_int(entargs, 3);
399         extract_token(subject, entargs, 4, '|', sizeof subject);
400         extract_token(newusername, entargs, 5, '|', sizeof newusername);
401         do_confirm = extract_int(entargs, 6);
402         extract_token(cc, entargs, 7, '|', sizeof cc);
403         extract_token(bcc, entargs, 8, '|', sizeof bcc);
404         switch(CC->room.QRdefaultview) {
405         case VIEW_NOTES:
406         case VIEW_WIKI:
407                 extract_token(supplied_euid, entargs, 9, '|', sizeof supplied_euid);
408                 break;
409         default:
410                 supplied_euid[0] = 0;
411                 break;
412         }
413         extract_token(newuseremail, entargs, 10, '|', sizeof newuseremail);
414         extract_token(references, entargs, 11, '|', sizeof references);
415         for (ptr=references; *ptr != 0; ++ptr) {
416                 if (*ptr == '!') *ptr = '|';
417         }
418
419         /* first check to make sure the request is valid. */
420
421         err = CtdlDoIHavePermissionToPostInThisRoom(
422                 errmsg,
423                 sizeof errmsg,
424                 NULL,
425                 POST_LOGGED_IN,
426                 (!IsEmptyStr(references))               /* is this a reply?  or a top-level post? */
427         );
428         if (err) {
429                 cprintf("%d %s\n", err, errmsg);
430                 return;
431         }
432
433         /* Check some other permission type things. */
434
435         if (IsEmptyStr(newusername)) {
436                 strcpy(newusername, CC->user.fullname);
437         }
438         if (  (CC->user.axlevel < AxAideU)
439               && (strcasecmp(newusername, CC->user.fullname))
440               && (strcasecmp(newusername, CC->cs_inet_fn))
441         ) {     
442                 cprintf("%d You don't have permission to author messages as '%s'.\n",
443                         ERROR + HIGHER_ACCESS_REQUIRED,
444                         newusername
445                 );
446                 return;
447         }
448
449         if (IsEmptyStr(newuseremail)) {
450                 newuseremail_ok = 1;
451         }
452
453         if (!IsEmptyStr(newuseremail)) {
454                 if (!strcasecmp(newuseremail, CC->cs_inet_email)) {
455                         newuseremail_ok = 1;
456                 }
457                 else if (!IsEmptyStr(CC->cs_inet_other_emails)) {
458                         j = num_tokens(CC->cs_inet_other_emails, '|');
459                         for (i=0; i<j; ++i) {
460                                 extract_token(buf, CC->cs_inet_other_emails, i, '|', sizeof buf);
461                                 if (!strcasecmp(newuseremail, buf)) {
462                                         newuseremail_ok = 1;
463                                 }
464                         }
465                 }
466         }
467
468         if (!newuseremail_ok) {
469                 cprintf("%d You don't have permission to author messages as '%s'.\n",
470                         ERROR + HIGHER_ACCESS_REQUIRED,
471                         newuseremail
472                         );
473                 return;
474         }
475
476         CC->cs_flags |= CS_POSTING;
477
478         // In mailbox rooms we have to behave a little differently --
479         // make sure the user has specified at least one recipient.  Then
480         // validate the recipient(s).  We do this for the Mail> room, as
481         // well as any room which has the "Mailbox" view set - unless it
482         // is the DRAFTS room which does not require recipients.
483
484         if ( (  ( (CC->room.QRflags & QR_MAILBOX) && (!strcasecmp(&CC->room.QRname[11], MAILROOM)) )
485                 || ( (CC->room.QRflags & QR_MAILBOX) && (CC->curr_view == VIEW_MAILBOX) )
486                      ) && (strcasecmp(&CC->room.QRname[11], USERDRAFTROOM)) !=0 ) {
487                 if (CC->user.axlevel < AxProbU) {
488                         strcpy(recp, "sysop");
489                         strcpy(cc, "");
490                         strcpy(bcc, "");
491                 }
492
493                 TRACE;
494                 valid_to = validate_recipients(recp, NULL, 0);
495                 TRACE;
496                 if (valid_to->num_error > 0) {
497                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_to->errormsg);
498                         free_recipients(valid_to);
499                         return;
500                 }
501
502                 TRACE;
503                 valid_cc = validate_recipients(cc, NULL, 0);
504                 TRACE;
505                 if (valid_cc->num_error > 0) {
506                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_cc->errormsg);
507                         free_recipients(valid_to);
508                         free_recipients(valid_cc);
509                         return;
510                 }
511
512                 TRACE;
513                 valid_bcc = validate_recipients(bcc, NULL, 0);
514                 TRACE;
515                 if (valid_bcc->num_error > 0) {
516                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_bcc->errormsg);
517                         free_recipients(valid_to);
518                         free_recipients(valid_cc);
519                         free_recipients(valid_bcc);
520                         return;
521                 }
522
523                 /* Recipient required, but none were specified */
524                 if ( (valid_to->num_error < 0) && (valid_cc->num_error < 0) && (valid_bcc->num_error < 0) ) {
525                         free_recipients(valid_to);
526                         free_recipients(valid_cc);
527                         free_recipients(valid_bcc);
528                         cprintf("%d At least one recipient is required.\n", ERROR + NO_SUCH_USER);
529                         return;
530                 }
531
532                 if (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0) {
533                         if (CtdlCheckInternetMailPermission(&CC->user)==0) {
534                                 cprintf("%d You do not have permission "
535                                         "to send Internet mail.\n",
536                                         ERROR + HIGHER_ACCESS_REQUIRED);
537                                 free_recipients(valid_to);
538                                 free_recipients(valid_cc);
539                                 free_recipients(valid_bcc);
540                                 return;
541                         }
542                 }
543
544                 if ( ( (valid_to->num_internet + valid_to->num_ignet + valid_cc->num_internet + valid_cc->num_ignet + valid_bcc->num_internet + valid_bcc->num_ignet) > 0)
545                      && (CC->user.axlevel < AxNetU) ) {
546                         cprintf("%d Higher access required for network mail.\n",
547                                 ERROR + HIGHER_ACCESS_REQUIRED);
548                         free_recipients(valid_to);
549                         free_recipients(valid_cc);
550                         free_recipients(valid_bcc);
551                         return;
552                 }
553         
554                 if ((RESTRICT_INTERNET == 1)
555                     && (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0)
556                     && ((CC->user.flags & US_INTERNET) == 0)
557                     && (!CC->internal_pgm)) {
558                         cprintf("%d You don't have access to Internet mail.\n",
559                                 ERROR + HIGHER_ACCESS_REQUIRED);
560                         free_recipients(valid_to);
561                         free_recipients(valid_cc);
562                         free_recipients(valid_bcc);
563                         return;
564                 }
565
566         }
567
568         /* Is this a room which has anonymous-only or anonymous-option? */
569         anonymous = MES_NORMAL;
570         if (CC->room.QRflags & QR_ANONONLY) {
571                 anonymous = MES_ANONONLY;
572         }
573         if (CC->room.QRflags & QR_ANONOPT) {
574                 if (anon_flag == 1) {   /* only if the user requested it */
575                         anonymous = MES_ANONOPT;
576                 }
577         }
578
579         if ((CC->room.QRflags & QR_MAILBOX) == 0) {
580                 recp[0] = 0;
581         }
582
583         /* Recommend to the client that the use of a message subject is
584          * strongly recommended in this room, if either the SUBJECTREQ flag
585          * is set, or if there is one or more Internet email recipients.
586          */
587         if (CC->room.QRflags2 & QR2_SUBJECTREQ) subject_required = 1;
588         if ((valid_to)  && (valid_to->num_internet > 0))        subject_required = 1;
589         if ((valid_cc)  && (valid_cc->num_internet > 0))        subject_required = 1;
590         if ((valid_bcc) && (valid_bcc->num_internet > 0))       subject_required = 1;
591
592         /* If we're only checking the validity of the request, return
593          * success without creating the message.
594          */
595         if (post == 0) {
596                 cprintf("%d %s|%d\n", CIT_OK,
597                         ((valid_to != NULL) ? valid_to->display_recp : ""), 
598                         subject_required);
599                 free_recipients(valid_to);
600                 free_recipients(valid_cc);
601                 free_recipients(valid_bcc);
602                 return;
603         }
604
605         /* We don't need these anymore because we'll do it differently below */
606         free_recipients(valid_to);
607         free_recipients(valid_cc);
608         free_recipients(valid_bcc);
609
610         /* Read in the message from the client. */
611         if (do_confirm) {
612                 cprintf("%d send message\n", START_CHAT_MODE);
613         } else {
614                 cprintf("%d send message\n", SEND_LISTING);
615         }
616
617         msg = CtdlMakeMessage(&CC->user, recp, cc,
618                               CC->room.QRname, anonymous, format_type,
619                               newusername, newuseremail, subject,
620                               ((!IsEmptyStr(supplied_euid)) ? supplied_euid : NULL),
621                               NULL, references);
622
623         /* Put together one big recipients struct containing to/cc/bcc all in
624          * one.  This is for the envelope.
625          */
626         char *all_recps = malloc(SIZ * 3);
627         strcpy(all_recps, recp);
628         if (!IsEmptyStr(cc)) {
629                 if (!IsEmptyStr(all_recps)) {
630                         strcat(all_recps, ",");
631                 }
632                 strcat(all_recps, cc);
633         }
634         if (!IsEmptyStr(bcc)) {
635                 if (!IsEmptyStr(all_recps)) {
636                         strcat(all_recps, ",");
637                 }
638                 strcat(all_recps, bcc);
639         }
640         if (!IsEmptyStr(all_recps)) {
641                 TRACE;
642                 valid = validate_recipients(all_recps, NULL, 0);
643                 TRACE;
644         }
645         else {
646                 valid = NULL;
647         }
648         free(all_recps);
649
650         if ((valid != NULL) && (valid->num_room == 1) && !IsEmptyStr(valid->recp_orgroom))
651         {
652                 /* posting into an ML room? set the envelope from 
653                  * to the actual mail address so others get a valid
654                  * reply-to-header.
655                  */
656                 CM_SetField(msg, eenVelopeTo, valid->recp_orgroom, strlen(valid->recp_orgroom));
657         }
658
659         if (msg != NULL) {
660                 msgnum = CtdlSubmitMsg(msg, valid, "");
661                 if (do_confirm) {
662                         cprintf("%ld\n", msgnum);
663
664                         if (StrLength(CC->StatusMessage) > 0) {
665                                 cprintf("%s\n", ChrPtr(CC->StatusMessage));
666                         }
667                         else if (msgnum >= 0L) {
668                                 client_write(HKEY("Message accepted.\n"));
669                         }
670                         else {
671                                 client_write(HKEY("Internal error.\n"));
672                         }
673
674                         if (!CM_IsEmpty(msg, eExclusiveID)) {
675                                 cprintf("%s\n", msg->cm_fields[eExclusiveID]);
676                         } else {
677                                 cprintf("\n");
678                         }
679                         cprintf("000\n");
680                 }
681
682                 CM_Free(msg);
683         }
684         if (valid != NULL) {
685                 free_recipients(valid);
686         }
687         return;
688 }
689
690
691 // Delete message from current room
692 void cmd_dele(char *args) {
693         int num_deleted;
694         int i;
695         char msgset[SIZ];
696         char msgtok[32];
697         long *msgs;
698         int num_msgs = 0;
699
700         extract_token(msgset, args, 0, '|', sizeof msgset);
701         num_msgs = num_tokens(msgset, ',');
702         if (num_msgs < 1) {
703                 cprintf("%d Nothing to do.\n", CIT_OK);
704                 return;
705         }
706
707         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
708                 cprintf("%d Higher access required.\n",
709                         ERROR + HIGHER_ACCESS_REQUIRED);
710                 return;
711         }
712
713         /*
714          * Build our message set to be moved/copied
715          */
716         msgs = malloc(num_msgs * sizeof(long));
717         for (i=0; i<num_msgs; ++i) {
718                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
719                 msgs[i] = atol(msgtok);
720         }
721
722         num_deleted = CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
723         free(msgs);
724
725         if (num_deleted) {
726                 cprintf("%d %d message%s deleted.\n", CIT_OK,
727                         num_deleted, ((num_deleted != 1) ? "s" : ""));
728         } else {
729                 cprintf("%d Message not found.\n", ERROR + MESSAGE_NOT_FOUND);
730         }
731 }
732
733
734 // move or copy a message to another room
735 void cmd_move(char *args) {
736         char msgset[SIZ];
737         char msgtok[32];
738         long *msgs;
739         int num_msgs = 0;
740
741         char targ[ROOMNAMELEN];
742         struct ctdlroom qtemp;
743         int err;
744         int is_copy = 0;
745         int ra;
746         int permit = 0;
747         int i;
748
749         extract_token(msgset, args, 0, '|', sizeof msgset);
750         num_msgs = num_tokens(msgset, ',');
751         if (num_msgs < 1) {
752                 cprintf("%d Nothing to do.\n", CIT_OK);
753                 return;
754         }
755
756         extract_token(targ, args, 1, '|', sizeof targ);
757         convert_room_name_macros(targ, sizeof targ);
758         targ[ROOMNAMELEN - 1] = 0;
759         is_copy = extract_int(args, 2);
760
761         if (CtdlGetRoom(&qtemp, targ) != 0) {
762                 cprintf("%d '%s' does not exist.\n", ERROR + ROOM_NOT_FOUND, targ);
763                 return;
764         }
765
766         if (!strcasecmp(qtemp.QRname, CC->room.QRname)) {
767                 cprintf("%d Source and target rooms are the same.\n", ERROR + ALREADY_EXISTS);
768                 return;
769         }
770
771         CtdlGetUser(&CC->user, CC->curr_user);
772         CtdlRoomAccess(&qtemp, &CC->user, &ra, NULL);
773
774         /* Check for permission to perform this operation.
775          * Remember: "CC->room" is source, "qtemp" is target.
776          */
777         permit = 0;
778
779         /* Admins can move/copy */
780         if (CC->user.axlevel >= AxAideU) permit = 1;
781
782         /* Room aides can move/copy */
783         if (CC->user.usernum == CC->room.QRroomaide) permit = 1;
784
785         /* Permit move/copy from personal rooms */
786         if ((CC->room.QRflags & QR_MAILBOX)
787             && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
788
789         /* Permit only copy from public to personal room */
790         if ( (is_copy)
791              && (!(CC->room.QRflags & QR_MAILBOX))
792              && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
793
794         /* Permit message removal from collaborative delete rooms */
795         if (CC->room.QRflags2 & QR2_COLLABDEL) permit = 1;
796
797         /* Users allowed to post into the target room may move into it too. */
798         if ((CC->room.QRflags & QR_MAILBOX) && 
799             (qtemp.QRflags & UA_POSTALLOWED))  permit = 1;
800
801         /* User must have access to target room */
802         if (!(ra & UA_KNOWN))  permit = 0;
803
804         if (!permit) {
805                 cprintf("%d Higher access required.\n",
806                         ERROR + HIGHER_ACCESS_REQUIRED);
807                 return;
808         }
809
810         /*
811          * Build our message set to be moved/copied
812          */
813         msgs = malloc(num_msgs * sizeof(long));
814         for (i=0; i<num_msgs; ++i) {
815                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
816                 msgs[i] = atol(msgtok);
817         }
818
819         /*
820          * Do the copy
821          */
822         err = CtdlSaveMsgPointersInRoom(targ, msgs, num_msgs, 1, NULL, 0);
823         if (err != 0) {
824                 cprintf("%d Cannot store message(s) in %s: error %d\n",
825                         err, targ, err);
826                 free(msgs);
827                 return;
828         }
829
830         /* Now delete the message from the source room,
831          * if this is a 'move' rather than a 'copy' operation.
832          */
833         if (is_copy == 0) {
834                 CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
835         }
836         free(msgs);
837
838         cprintf("%d Message(s) %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
839 }
840
841
842 /*****************************************************************************/
843 /*                      MODULE INITIALIZATION STUFF                          */
844 /*****************************************************************************/
845 CTDL_MODULE_INIT(ctdl_message)
846 {
847         if (!threading) {
848
849                 CtdlRegisterProtoHook(cmd_msgs, "MSGS", "Output a list of messages in the current room");
850                 CtdlRegisterProtoHook(cmd_msg0, "MSG0", "Output a message in plain text format");
851                 CtdlRegisterProtoHook(cmd_msg2, "MSG2", "Output a message in RFC822 format");
852                 CtdlRegisterProtoHook(cmd_msg4, "MSG4", "Output a message in the client's preferred format");
853                 CtdlRegisterProtoHook(cmd_msgp, "MSGP", "Select preferred format for MSG4 output");
854                 CtdlRegisterProtoHook(cmd_opna, "OPNA", "Open an attachment for download");
855                 CtdlRegisterProtoHook(cmd_dlat, "DLAT", "Download an attachment");
856                 CtdlRegisterProtoHook(cmd_ent0, "ENT0", "Enter a message");
857                 CtdlRegisterProtoHook(cmd_dele, "DELE", "Delete a message");
858                 CtdlRegisterProtoHook(cmd_move, "MOVE", "Move or copy a message to another room");
859         }
860
861         /* return our Subversion id for the Log */
862         return "ctdl_message";
863 }