f48060b14d492999158ec755990ee0892b161d89
[citadel.git] / citadel / modules / ctdlproto / serv_messages.c
1 // Message-related protocol commands for Citadel clients
2 //
3 // Copyright (c) 1987-2022 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                 valid_to = validate_recipients(recp, NULL, 0);
494                 if (valid_to->num_error > 0) {
495                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_to->errormsg);
496                         free_recipients(valid_to);
497                         return;
498                 }
499
500                 valid_cc = validate_recipients(cc, NULL, 0);
501                 if (valid_cc->num_error > 0) {
502                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_cc->errormsg);
503                         free_recipients(valid_to);
504                         free_recipients(valid_cc);
505                         return;
506                 }
507
508                 valid_bcc = validate_recipients(bcc, NULL, 0);
509                 if (valid_bcc->num_error > 0) {
510                         cprintf("%d %s\n", ERROR + NO_SUCH_USER, valid_bcc->errormsg);
511                         free_recipients(valid_to);
512                         free_recipients(valid_cc);
513                         free_recipients(valid_bcc);
514                         return;
515                 }
516
517                 /* Recipient required, but none were specified */
518                 if ( (valid_to->num_error < 0) && (valid_cc->num_error < 0) && (valid_bcc->num_error < 0) ) {
519                         free_recipients(valid_to);
520                         free_recipients(valid_cc);
521                         free_recipients(valid_bcc);
522                         cprintf("%d At least one recipient is required.\n", ERROR + NO_SUCH_USER);
523                         return;
524                 }
525
526                 if (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0) {
527                         if (CtdlCheckInternetMailPermission(&CC->user)==0) {
528                                 cprintf("%d You do not have permission "
529                                         "to send Internet mail.\n",
530                                         ERROR + HIGHER_ACCESS_REQUIRED);
531                                 free_recipients(valid_to);
532                                 free_recipients(valid_cc);
533                                 free_recipients(valid_bcc);
534                                 return;
535                         }
536                 }
537
538                 if ( ( (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet) > 0) && (CC->user.axlevel < AxNetU) ) {
539                         cprintf("%d Higher access required for network mail.\n", ERROR + HIGHER_ACCESS_REQUIRED);
540                         free_recipients(valid_to);
541                         free_recipients(valid_cc);
542                         free_recipients(valid_bcc);
543                         return;
544                 }
545         
546                 if ((RESTRICT_INTERNET == 1)
547                     && (valid_to->num_internet + valid_cc->num_internet + valid_bcc->num_internet > 0)
548                     && ((CC->user.flags & US_INTERNET) == 0)
549                     && (!CC->internal_pgm)) {
550                         cprintf("%d You don't have access to Internet mail.\n",
551                                 ERROR + HIGHER_ACCESS_REQUIRED);
552                         free_recipients(valid_to);
553                         free_recipients(valid_cc);
554                         free_recipients(valid_bcc);
555                         return;
556                 }
557
558         }
559
560         /* Is this a room which has anonymous-only or anonymous-option? */
561         anonymous = MES_NORMAL;
562         if (CC->room.QRflags & QR_ANONONLY) {
563                 anonymous = MES_ANONONLY;
564         }
565         if (CC->room.QRflags & QR_ANONOPT) {
566                 if (anon_flag == 1) {   /* only if the user requested it */
567                         anonymous = MES_ANONOPT;
568                 }
569         }
570
571         if ((CC->room.QRflags & QR_MAILBOX) == 0) {
572                 recp[0] = 0;
573         }
574
575         /* Recommend to the client that the use of a message subject is
576          * strongly recommended in this room, if either the SUBJECTREQ flag
577          * is set, or if there is one or more Internet email recipients.
578          */
579         if (CC->room.QRflags2 & QR2_SUBJECTREQ) subject_required = 1;
580         if ((valid_to)  && (valid_to->num_internet > 0))        subject_required = 1;
581         if ((valid_cc)  && (valid_cc->num_internet > 0))        subject_required = 1;
582         if ((valid_bcc) && (valid_bcc->num_internet > 0))       subject_required = 1;
583
584         /* If we're only checking the validity of the request, return
585          * success without creating the message.
586          */
587         if (post == 0) {
588                 cprintf("%d %s|%d\n", CIT_OK,
589                         ((valid_to != NULL) ? valid_to->display_recp : ""), 
590                         subject_required);
591                 free_recipients(valid_to);
592                 free_recipients(valid_cc);
593                 free_recipients(valid_bcc);
594                 return;
595         }
596
597         /* We don't need these anymore because we'll do it differently below */
598         free_recipients(valid_to);
599         free_recipients(valid_cc);
600         free_recipients(valid_bcc);
601
602         /* Read in the message from the client. */
603         if (do_confirm) {
604                 cprintf("%d send message\n", START_CHAT_MODE);
605         }
606         else {
607                 cprintf("%d send message\n", SEND_LISTING);
608         }
609
610         msg = CtdlMakeMessage(&CC->user, recp, cc,
611                               CC->room.QRname, anonymous, format_type,
612                               newusername, newuseremail, subject,
613                               ((!IsEmptyStr(supplied_euid)) ? supplied_euid : NULL),
614                               NULL, references);
615
616         // Put together one big recipients struct containing to/cc/bcc all in one.  This is for the envelope.
617         char *all_recps = malloc(SIZ * 3);
618         strcpy(all_recps, recp);
619         if (!IsEmptyStr(cc)) {
620                 if (!IsEmptyStr(all_recps)) {
621                         strcat(all_recps, ",");
622                 }
623                 strcat(all_recps, cc);
624         }
625         if (!IsEmptyStr(bcc)) {
626                 if (!IsEmptyStr(all_recps)) {
627                         strcat(all_recps, ",");
628                 }
629                 strcat(all_recps, bcc);
630         }
631         if (!IsEmptyStr(all_recps)) {
632                 valid = validate_recipients(all_recps, NULL, 0);
633         }
634         else {
635                 valid = NULL;
636         }
637         free(all_recps);
638
639         // posting into a mailing list room? set the envelope from 
640         // to the actual mail address so others get a valid reply-to-header.
641         if ((valid != NULL) && (valid->num_room == 1) && !IsEmptyStr(valid->recp_orgroom)) {
642                 CM_SetField(msg, eenVelopeTo, valid->recp_orgroom, strlen(valid->recp_orgroom));
643         }
644
645         if (msg != NULL) {
646                 msgnum = CtdlSubmitMsg(msg, valid, "");
647                 if (do_confirm) {
648                         cprintf("%ld\n", msgnum);
649
650                         if (StrLength(CC->StatusMessage) > 0) {
651                                 cprintf("%s\n", ChrPtr(CC->StatusMessage));
652                         }
653                         else if (msgnum >= 0L) {
654                                 client_write(HKEY("Message accepted.\n"));
655                         }
656                         else {
657                                 client_write(HKEY("Internal error.\n"));
658                         }
659
660                         if (!CM_IsEmpty(msg, eExclusiveID)) {
661                                 cprintf("%s\n", msg->cm_fields[eExclusiveID]);
662                         } else {
663                                 cprintf("\n");
664                         }
665                         cprintf("000\n");
666                 }
667
668                 CM_Free(msg);
669         }
670         if (valid != NULL) {
671                 free_recipients(valid);
672         }
673         return;
674 }
675
676
677 // Delete message from current room
678 void cmd_dele(char *args) {
679         int num_deleted;
680         int i;
681         char msgset[SIZ];
682         char msgtok[32];
683         long *msgs;
684         int num_msgs = 0;
685
686         extract_token(msgset, args, 0, '|', sizeof msgset);
687         num_msgs = num_tokens(msgset, ',');
688         if (num_msgs < 1) {
689                 cprintf("%d Nothing to do.\n", CIT_OK);
690                 return;
691         }
692
693         if (CtdlDoIHavePermissionToDeleteMessagesFromThisRoom() == 0) {
694                 cprintf("%d Higher access required.\n",
695                         ERROR + HIGHER_ACCESS_REQUIRED);
696                 return;
697         }
698
699         /*
700          * Build our message set to be moved/copied
701          */
702         msgs = malloc(num_msgs * sizeof(long));
703         for (i=0; i<num_msgs; ++i) {
704                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
705                 msgs[i] = atol(msgtok);
706         }
707
708         num_deleted = CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
709         free(msgs);
710
711         if (num_deleted) {
712                 cprintf("%d %d message%s deleted.\n", CIT_OK,
713                         num_deleted, ((num_deleted != 1) ? "s" : ""));
714         } else {
715                 cprintf("%d Message not found.\n", ERROR + MESSAGE_NOT_FOUND);
716         }
717 }
718
719
720 // move or copy a message to another room
721 void cmd_move(char *args) {
722         char msgset[SIZ];
723         char msgtok[32];
724         long *msgs;
725         int num_msgs = 0;
726
727         char targ[ROOMNAMELEN];
728         struct ctdlroom qtemp;
729         int err;
730         int is_copy = 0;
731         int ra;
732         int permit = 0;
733         int i;
734
735         extract_token(msgset, args, 0, '|', sizeof msgset);
736         num_msgs = num_tokens(msgset, ',');
737         if (num_msgs < 1) {
738                 cprintf("%d Nothing to do.\n", CIT_OK);
739                 return;
740         }
741
742         extract_token(targ, args, 1, '|', sizeof targ);
743         convert_room_name_macros(targ, sizeof targ);
744         targ[ROOMNAMELEN - 1] = 0;
745         is_copy = extract_int(args, 2);
746
747         if (CtdlGetRoom(&qtemp, targ) != 0) {
748                 cprintf("%d '%s' does not exist.\n", ERROR + ROOM_NOT_FOUND, targ);
749                 return;
750         }
751
752         if (!strcasecmp(qtemp.QRname, CC->room.QRname)) {
753                 cprintf("%d Source and target rooms are the same.\n", ERROR + ALREADY_EXISTS);
754                 return;
755         }
756
757         CtdlGetUser(&CC->user, CC->curr_user);
758         CtdlRoomAccess(&qtemp, &CC->user, &ra, NULL);
759
760         /* Check for permission to perform this operation.
761          * Remember: "CC->room" is source, "qtemp" is target.
762          */
763         permit = 0;
764
765         /* Admins can move/copy */
766         if (CC->user.axlevel >= AxAideU) permit = 1;
767
768         /* Room aides can move/copy */
769         if (CC->user.usernum == CC->room.QRroomaide) permit = 1;
770
771         /* Permit move/copy from personal rooms */
772         if ((CC->room.QRflags & QR_MAILBOX)
773             && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
774
775         /* Permit only copy from public to personal room */
776         if ( (is_copy)
777              && (!(CC->room.QRflags & QR_MAILBOX))
778              && (qtemp.QRflags & QR_MAILBOX)) permit = 1;
779
780         /* Permit message removal from collaborative delete rooms */
781         if (CC->room.QRflags2 & QR2_COLLABDEL) permit = 1;
782
783         /* Users allowed to post into the target room may move into it too. */
784         if ((CC->room.QRflags & QR_MAILBOX) && 
785             (qtemp.QRflags & UA_POSTALLOWED))  permit = 1;
786
787         /* User must have access to target room */
788         if (!(ra & UA_KNOWN))  permit = 0;
789
790         if (!permit) {
791                 cprintf("%d Higher access required.\n",
792                         ERROR + HIGHER_ACCESS_REQUIRED);
793                 return;
794         }
795
796         /*
797          * Build our message set to be moved/copied
798          */
799         msgs = malloc(num_msgs * sizeof(long));
800         for (i=0; i<num_msgs; ++i) {
801                 extract_token(msgtok, msgset, i, ',', sizeof msgtok);
802                 msgs[i] = atol(msgtok);
803         }
804
805         /*
806          * Do the copy
807          */
808         err = CtdlSaveMsgPointersInRoom(targ, msgs, num_msgs, 1, NULL, 0);
809         if (err != 0) {
810                 cprintf("%d Cannot store message(s) in %s: error %d\n",
811                         err, targ, err);
812                 free(msgs);
813                 return;
814         }
815
816         /* Now delete the message from the source room,
817          * if this is a 'move' rather than a 'copy' operation.
818          */
819         if (is_copy == 0) {
820                 CtdlDeleteMessages(CC->room.QRname, msgs, num_msgs, "");
821         }
822         free(msgs);
823
824         cprintf("%d Message(s) %s.\n", CIT_OK, (is_copy ? "copied" : "moved") );
825 }
826
827
828 /*****************************************************************************/
829 /*                      MODULE INITIALIZATION STUFF                          */
830 /*****************************************************************************/
831 CTDL_MODULE_INIT(ctdl_message)
832 {
833         if (!threading) {
834
835                 CtdlRegisterProtoHook(cmd_msgs, "MSGS", "Output a list of messages in the current room");
836                 CtdlRegisterProtoHook(cmd_msg0, "MSG0", "Output a message in plain text format");
837                 CtdlRegisterProtoHook(cmd_msg2, "MSG2", "Output a message in RFC822 format");
838                 CtdlRegisterProtoHook(cmd_msg4, "MSG4", "Output a message in the client's preferred format");
839                 CtdlRegisterProtoHook(cmd_msgp, "MSGP", "Select preferred format for MSG4 output");
840                 CtdlRegisterProtoHook(cmd_opna, "OPNA", "Open an attachment for download");
841                 CtdlRegisterProtoHook(cmd_dlat, "DLAT", "Download an attachment");
842                 CtdlRegisterProtoHook(cmd_ent0, "ENT0", "Enter a message");
843                 CtdlRegisterProtoHook(cmd_dele, "DELE", "Delete a message");
844                 CtdlRegisterProtoHook(cmd_move, "MOVE", "Move or copy a message to another room");
845         }
846
847         /* return our Subversion id for the Log */
848         return "ctdl_message";
849 }