Converted send_message() to accept a memory buffer rather than the name of
[citadel.git] / citadel / msgbase.c
1 #include <stdlib.h>
2 #include <unistd.h>
3 #include <stdio.h>
4 #include <fcntl.h>
5 #include <time.h>
6 #include <ctype.h>
7 #include <string.h>
8 #include <syslog.h>
9 #include <pthread.h>
10 #include "citadel.h"
11 #include "server.h"
12 #include <errno.h>
13 #include <sys/stat.h>
14 #include "proto.h"
15
16 #define MSGS_ALL        0
17 #define MSGS_OLD        1
18 #define MSGS_NEW        2
19 #define MSGS_FIRST      3
20 #define MSGS_LAST       4
21 #define MSGS_GT         5
22
23 extern struct config config;
24 int twitroom=-1;
25
26
27 /*
28  * Aliasing for network mail.
29  * (Error messages have been commented out, because this is a server.)
30  */
31 int alias(char *name)           /* process alias and routing info for mail */
32              {
33         FILE *fp;
34         int a,b;
35         char aaa[300],bbb[300];
36         
37         fp=fopen("network/mail.aliases","r");
38         if (fp==NULL) fp=fopen("/dev/null","r");
39         if (fp==NULL) return(M_ERROR);
40 GNA:    strcpy(aaa,""); strcpy(bbb,"");
41         do {
42                 a=getc(fp);
43                 if (a==',') a=0;
44                 if (a>0) {
45                         b=strlen(aaa);
46                         aaa[b]=a;
47                         aaa[b+1]=0;
48                         }
49                 } while(a>0);
50         do {
51                 a=getc(fp);
52                 if (a==10) a=0;
53                 if (a>0) {
54                         b=strlen(bbb);
55                         bbb[b]=a;
56                         bbb[b+1]=0;
57                         }
58                 } while(a>0);
59         if (a<0) {
60                 fclose(fp);
61                 goto DETYPE;
62                 }
63         if (strucmp(name,aaa)) goto GNA;
64         fclose(fp);
65         strcpy(name,bbb);
66         /* cprintf("*** Mail is being forwarded to %s\n",name); */
67
68 DETYPE: /* determine local or remote type, see citadel.h */
69         for (a=0; a<strlen(name); ++a) if (name[a]=='!') return(M_INTERNET);
70         for (a=0; a<strlen(name); ++a)
71                 if (name[a]=='@')
72                         for (b=a; b<strlen(name); ++b)
73                                 if (name[b]=='.') return(M_INTERNET);
74         b=0; for (a=0; a<strlen(name); ++a) if (name[a]=='@') ++b;
75         if (b>1) {
76                 /* cprintf("Too many @'s in address\n"); */
77                 return(M_ERROR);
78                 }
79         if (b==1) {
80                 for (a=0; a<strlen(name); ++a)
81                         if (name[a]=='@') strcpy(bbb,&name[a+1]);
82                 while (bbb[0]==32) strcpy(bbb,&bbb[1]);
83                 fp = fopen("network/mail.sysinfo","r");
84                 if (fp==NULL) return(M_ERROR);
85 GETSN:          do {
86                         a=getstring(fp,aaa);
87                         } while ((a>=0)&&(strucmp(aaa,bbb)));
88                 a=getstring(fp,aaa);
89                 if (!strncmp(aaa,"use ",4)) {
90                         strcpy(bbb,&aaa[4]);
91                         fseek(fp,0L,0);
92                         goto GETSN;
93                         }
94                 fclose(fp);
95                 if (!strncmp(aaa,"uum",3)) {
96                         strcpy(bbb,name);
97                         for (a=0; a<strlen(bbb); ++a) {
98                                 if (bbb[a]=='@') bbb[a]=0;
99                                 if (bbb[a]==' ') bbb[a]='_';
100                                 }
101                         while(bbb[strlen(bbb)-1]=='_') bbb[strlen(bbb)-1]=0;
102                         sprintf(name,&aaa[4],bbb);
103                         return(M_INTERNET);
104                         }
105                 if (!strncmp(aaa,"bin",3)) {
106                         strcpy(aaa,name); strcpy(bbb,name);
107                         while (aaa[strlen(aaa)-1]!='@') aaa[strlen(aaa)-1]=0;
108                         aaa[strlen(aaa)-1]=0;
109                         while (aaa[strlen(aaa)-1]==' ') aaa[strlen(aaa)-1]=0;
110                         while (bbb[0]!='@') strcpy(bbb,&bbb[1]);
111                         strcpy(bbb,&bbb[1]);
112                         while (bbb[0]==' ') strcpy(bbb,&bbb[1]);
113                         sprintf(name,"%s @%s",aaa,bbb);
114                         return(M_BINARY);
115                         }
116                 return(M_ERROR);
117                 }
118         return(M_LOCAL);
119         }
120
121
122 void get_mm(void) {
123         FILE *fp;
124
125         fp=fopen("citadel.control","r");
126         fread((char *)&CitControl,sizeof(struct CitControl),1,fp);
127         fclose(fp);
128         }
129
130 /*
131  * cmd_msgs()  -  get list of message #'s in this room
132  */
133 void cmd_msgs(char *cmdbuf)
134 {
135         int a;
136         int mode;
137         char which[256];
138         int cm_howmany;
139         long cm_gt;
140
141         extract(which,cmdbuf,0);
142
143         mode = MSGS_ALL;
144         strcat(which,"   ");
145         if (!struncmp(which,"OLD",3))   mode = MSGS_OLD;
146         if (!struncmp(which,"NEW",3))   mode = MSGS_NEW;
147         if (!struncmp(which,"FIRST",5)) {
148                 mode = MSGS_FIRST;
149                 cm_howmany = extract_int(cmdbuf,1);
150                 }
151         if (!struncmp(which,"LAST",4))  {
152                 mode = MSGS_LAST;
153                 cm_howmany = extract_int(cmdbuf,1);
154                 }
155         if (!struncmp(which,"GT",2))    {
156                 mode = MSGS_GT;
157                 cm_gt = extract_long(cmdbuf,1);
158                 }
159
160         if ((!(CC->logged_in))&&(!(CC->internal_pgm))) {
161                 cprintf("%d not logged in\n",ERROR+NOT_LOGGED_IN);
162                 return;
163                 }
164         if (CC->curr_rm < 0) {
165                 cprintf("%d no room\n",ERROR);
166                 return;
167                 }
168         get_mm();
169         get_msglist(CC->curr_rm);
170         getuser(&CC->usersupp,CC->curr_user);
171         cprintf("%d %d messages...\n",LISTING_FOLLOWS, CC->num_msgs);
172         if (CC->num_msgs != 0) {
173            for (a=0; a<(CC->num_msgs); ++a) 
174                if ((MessageFromList(a) >=0)
175                && ( 
176
177 (mode==MSGS_ALL)
178 || ((mode==MSGS_OLD) && (MessageFromList(a) <= CC->usersupp.lastseen[CC->curr_rm]))
179 || ((mode==MSGS_NEW) && (MessageFromList(a) > CC->usersupp.lastseen[CC->curr_rm]))
180 || ((mode==MSGS_NEW) && (MessageFromList(a) >= CC->usersupp.lastseen[CC->curr_rm])
181                      && (CC->usersupp.flags & US_LASTOLD))
182 || ((mode==MSGS_LAST)&& (a>=(CC->num_msgs-cm_howmany)))
183 || ((mode==MSGS_FIRST)&&(a<cm_howmany))
184 || ((mode==MSGS_GT) && (MessageFromList(a) > cm_gt))
185
186                         )
187                 ) {
188                         cprintf("%ld\n", MessageFromList(a));
189                         }
190            }
191         cprintf("000\n");
192         }
193
194
195
196 /* 
197  * help_subst()  -  support routine for help file viewer
198  */
199 void help_subst(char *strbuf, char *source, char *dest)
200 {
201         char workbuf[256];
202         int p;
203
204         while (p=pattern2(strbuf,source), (p>=0)) {
205                 strcpy(workbuf,&strbuf[p+strlen(source)]);
206                 strcpy(&strbuf[p],dest);
207                 strcat(strbuf,workbuf);
208                 }
209         }
210
211
212 void do_help_subst(char *buffer)
213 {
214         char buf2[16];
215
216         help_subst(buffer,"^nodename",config.c_nodename);
217         help_subst(buffer,"^humannode",config.c_humannode);
218         help_subst(buffer,"^fqdn",config.c_fqdn);
219         help_subst(buffer,"^username",CC->usersupp.fullname);
220         sprintf(buf2,"%ld",CC->usersupp.usernum);
221         help_subst(buffer,"^usernum",buf2);
222         help_subst(buffer,"^sysadm",config.c_sysadm);
223         help_subst(buffer,"^variantname",CITADEL);
224         sprintf(buf2,"%d",config.c_maxsessions);
225         help_subst(buffer,"^maxsessions",buf2);
226         }
227
228
229
230 /*
231  * memfmout()  -  Citadel text formatter and paginator.
232  *             Although the original purpose of this routine was to format
233  *             text to the reader's screen width, all we're really using it
234  *             for here is to format text out to 80 columns before sending it
235  *             to the client.  The client software may reformat it again.
236  */
237 void memfmout(int width, char *mptr, char subst)
238                         /* screen width to use */
239                         /* where are we going to get our text from? */
240                         /* nonzero if we should use hypertext mode */
241         {
242         int a,b,c,real,old;
243         CIT_UBYTE ch;
244         char aaa[140];
245         char buffer[256];
246         
247         strcpy(aaa,""); old=255;
248         strcpy(buffer,"");
249         c=1; /* c is the current pos */
250
251 FMTA:   if (subst) {
252                 while (ch=*mptr, ((ch!=0) && (strlen(buffer)<126) )) {
253                         ch=*mptr++;
254                         buffer[strlen(buffer)+1] = 0;
255                         buffer[strlen(buffer)] = ch;
256                         }
257
258                 if (buffer[0]=='^') do_help_subst(buffer);
259
260                 buffer[strlen(buffer)+1] = 0;
261                 a=buffer[0];
262                 strcpy(buffer,&buffer[1]);
263                 }
264         
265         else ch=*mptr++;
266
267         old=real;
268         real=ch;
269         if (ch<=0) goto FMTEND;
270         
271         if ( ((ch==13)||(ch==10)) && (old!=13) && (old!=10) ) ch=32;
272         if ( ((old==13)||(old==10)) && (isspace(real)) ) {
273                 cprintf("\n");
274                 c=1;
275                 }
276         if (ch>126) goto FMTA;
277
278         if (ch>32) {
279         if ( ((strlen(aaa)+c)>(width-5)) && (strlen(aaa)>(width-5)) )
280                 { cprintf("\n%s",aaa); c=strlen(aaa); aaa[0]=0;
281                 }
282          b=strlen(aaa); aaa[b]=ch; aaa[b+1]=0; }
283         if (ch==32) {
284                 if ((strlen(aaa)+c)>(width-5)) { 
285                         cprintf("\n");
286                         c=1;
287                         }
288                 cprintf("%s ",aaa); ++c; c=c+strlen(aaa);
289                 strcpy(aaa,"");
290                 goto FMTA;
291                 }
292         if ((ch==13)||(ch==10)) {
293                 cprintf("%s\n",aaa);
294                 c=1;
295                 strcpy(aaa,"");
296                 goto FMTA;
297                 }
298         goto FMTA;
299
300 FMTEND: cprintf("\n");
301         }
302
303
304 /*
305  * get a message off disk.
306  * 
307  */
308 void output_message(char *msgid, int mode, int headers_only)
309 {
310         long msg_num;
311         int a,och,len;
312         CIT_UBYTE ch, rch;
313         FILE *msg;
314         CIT_UBYTE format_type,anon_flag;
315         char buf[1024];
316         long msg_len;
317         int msg_ok = 0;
318
319         struct cdbdata *dmsgtext;
320         char *mptr;
321
322         /* buffers needed for RFC822 translation */
323         char suser[256];
324         char luser[256];
325         char snode[256];
326         char lnode[256];
327         char mid[256];
328         long xtime;
329         /* */
330
331         msg_num = atol(msgid);
332
333
334         if ((!(CC->logged_in))&&(!(CC->internal_pgm))) {
335                 cprintf("%d Not logged in.\n",ERROR+NOT_LOGGED_IN);
336                 return;
337                 }
338         if (CC->curr_rm < 0) {
339                 cprintf("%d No room selected.\n",ERROR);
340                 return;
341                 }
342
343         /* We used to need to check in the current room's message list
344          * to determine where the message's disk position.  We no longer need
345          * to do this, but we do it anyway as a security measure, in order to
346          * prevent rogue clients from reading messages not in the current room.
347          */
348
349         msg_ok = 0;
350         if (CC->num_msgs > 0) {
351                 for (a=0; a<CC->num_msgs; ++a) {
352                         if (MessageFromList(a) == msg_num) {
353                                 msg_ok = 1;
354                                 }
355                         }
356                 }
357
358         if (!msg_ok) {
359                 cprintf("%d Message %ld is not in this room.\n",
360                         ERROR, msg_num);
361                 return;
362                 }
363         
364
365         dmsgtext = cdb_fetch(CDB_MSGMAIN, &msg_num, sizeof(long));
366         
367         if (dmsgtext == NULL) {
368                 cprintf("%d Can't find message %ld\n", ERROR+INTERNAL_ERROR);
369                 return;
370                 }
371
372         msg_len = (long) dmsgtext->len;
373         mptr = dmsgtext->ptr;
374         lprintf(9, "Returned message length is %ld\n", msg_len);
375
376         /* this loop spews out the whole message if we're doing raw format */
377         if (mode == MT_RAW) {
378                 cprintf("%d %ld\n", BINARY_FOLLOWS, msg_len);
379                 client_write(dmsgtext->ptr, (int) msg_len);
380                 cdb_free(dmsgtext);
381                 return;
382                 }
383
384         /* Otherwise, we'll start parsing it field by field... */
385         ch = *mptr++;
386         if (ch != 255) {
387                 cprintf("%d Illegal message format on disk\n",
388                         ERROR+INTERNAL_ERROR);
389                 cdb_free(dmsgtext);
390                 return;
391                 }
392
393         anon_flag = *mptr++;
394         format_type = *mptr++;
395
396         /* now for the user-mode message reading loops */
397         cprintf("%d Message %ld:\n",LISTING_FOLLOWS,msg_num);
398
399         if (mode == MT_CITADEL) cprintf("type=%d\n",format_type);
400
401         if ( (anon_flag == MES_ANON) && (mode == MT_CITADEL) ) {
402                 cprintf("nhdr=yes\n");
403                 }
404
405         /* begin header processing loop for Citadel message format */
406
407         if (mode == MT_CITADEL) while(ch = *mptr++, (ch!='M' && ch!=0)) {
408                 buf[0] = 0;
409                 do {
410                         buf[strlen(buf)+1] = 0;
411                         rch = *mptr++;
412                         buf[strlen(buf)] = rch;
413                         } while (rch > 0);
414
415                 if (ch=='A') {
416                         if (anon_flag==MES_ANON) cprintf("from=****");
417                         else if (anon_flag==MES_AN2) cprintf("from=anonymous");
418                         else cprintf("from=%s",buf);
419                         if ((is_room_aide()) && ((anon_flag == MES_ANON)
420                            || (anon_flag == MES_AN2)))
421                                 cprintf(" [%s]",buf);
422                         cprintf("\n");
423                         }
424                 else if (ch=='P') cprintf("path=%s\n",buf);
425                 else if (ch=='U') cprintf("subj=%s\n",buf);
426                 else if (ch=='I') cprintf("msgn=%s\n",buf);
427                 else if (ch=='H') cprintf("hnod=%s\n",buf);
428                 else if (ch=='O') cprintf("room=%s\n",buf);
429                 else if (ch=='N') cprintf("node=%s\n",buf);
430                 else if (ch=='R') cprintf("rcpt=%s\n",buf);
431                 else if (ch=='T') cprintf("time=%s\n",buf);
432                 /* else cprintf("fld%c=%s\n",ch,buf); */
433                 }
434
435         /* begin header processing loop for RFC822 transfer format */
436
437         strcpy(suser, "");
438         strcpy(luser, "");
439         strcpy(snode, NODENAME);
440         strcpy(lnode, HUMANNODE);
441         if (mode == MT_RFC822) while(ch = *mptr++, (ch!='M' && ch!=0)) {
442                 buf[0] = 0;
443                 do {
444                         buf[strlen(buf)+1] = 0;
445                         rch = *mptr++;
446                         buf[strlen(buf)] = rch;
447                         } while (rch > 0);
448
449                 if (ch=='A') strcpy(luser, buf);
450                 else if (ch=='P') {
451                         cprintf("Path: %s\n",buf);
452                         for (a=0; a<strlen(buf); ++a) {
453                                 if (buf[a] == '!') {
454                                         strcpy(buf,&buf[a+1]);
455                                         a=0;
456                                         }
457                                 }
458                         strcpy(suser, buf);
459                         }
460                 else if (ch=='U') cprintf("Subject: %s\n",buf);
461                 else if (ch=='I') strcpy(mid, buf);
462                 else if (ch=='H') strcpy(lnode, buf);
463                 else if (ch=='O') cprintf("X-Citadel-Room: %s\n",buf);
464                 else if (ch=='N') strcpy(snode, buf);
465                 else if (ch=='R') cprintf("To: %s\n",buf);
466                 else if (ch=='T')  {
467                         xtime = atol(buf);
468                         cprintf("Date: %s", asctime(localtime(&xtime)));
469                         }
470                 }
471
472         if (mode == MT_RFC822) {
473                 if (!strucmp(snode, NODENAME)) {
474                         strcpy(snode, FQDN);
475                         }
476                 cprintf("Message-ID: <%s@%s>\n", mid, snode);
477                 cprintf("From: %s@%s (%s)\n",
478                         suser, snode, luser);
479                 cprintf("Organization: %s\n", lnode);
480                 }
481
482         /* end header processing loop ... at this point, we're in the text */
483
484         if (ch==0) {
485                 cprintf("text\n*** ?Message truncated\n000\n");
486                 fclose(msg);
487                 cdb_free(dmsgtext);
488                 return;
489                 }
490
491         if (headers_only) {
492                 /* give 'em a length */
493                 msg_len = 0L;
494                 while(och=ch, ch = *mptr++, ch>0) {
495                         ++msg_len;
496                         }
497                 cprintf("mlen=%ld\n", msg_len);
498                 cprintf("000\n");
499                 fclose(msg);
500                 cdb_free(dmsgtext);
501                 return;
502                 }
503
504         /* signify start of msg text */
505         if (mode == MT_CITADEL) cprintf("text\n");
506         if (mode == MT_RFC822) cprintf("\n");
507
508         /* If the format type on disk is 1 (fixed-format), then we want
509          * everything to be output completely literally ... regardless of
510          * what message transfer format is in use.
511          */
512         if (format_type == 1) {
513                 och = 0;
514                 len = 0;
515                 while(och=ch, ch = *mptr++, ch>0) {
516                         if (ch == 13) ch = 10;
517                         ++len;
518                         if ((ch!=10)||(och!=10)) {
519                                 cprintf("%c", ch);
520                                 if (ch==10) len = 0;
521                                 }
522                         if (len>=250) {
523                                 len = 0;
524                                 /* cprintf("%c", ch); */
525                                 cprintf("%c", 10);
526                                 }
527                         }
528                 if (len!=0) cprintf("%c", 10);
529                 }
530         /* If the message on disk is format 0 (Citadel vari-format), we
531          * output using the formatter at 80 columns.  This is the final output
532          * form if the transfer format is RFC822, but if the transfer format
533          * is Citadel proprietary, it'll still work, because the indentation
534          * for new paragraphs is correct and the client will reformat the
535          * message to the reader's screen width.
536          */
537         if (format_type == 0) {
538                 memfmout(80,mptr,0);
539                 }
540
541
542         /* now we're done */
543         cprintf("000\n");
544         cdb_free(dmsgtext);
545         }
546
547
548 /*
549  * display a message (mode 0 - Citadel proprietary)
550  */
551 void cmd_msg0(char *cmdbuf)
552 {
553         char msgid[256];
554         int headers_only = 0;
555
556         extract(msgid,cmdbuf,0);
557         headers_only = extract_int(cmdbuf,1);
558
559         output_message(msgid,MT_CITADEL,headers_only);
560         }
561
562
563 /*
564  * display a message (mode 2 - RFC822)
565  */
566 void cmd_msg2(char *cmdbuf)
567 {
568         char msgid[256];
569         int headers_only = 0;
570
571         extract(msgid,cmdbuf,0);
572         headers_only = extract_int(cmdbuf,1);
573
574         output_message(msgid,MT_RFC822,headers_only);
575         }
576
577 /* 
578  * display a message (mode 3 - IGnet raw format - internal programs only)
579  */
580 void cmd_msg3(char *cmdbuf)
581 {
582         char msgid[256];
583         int headers_only = 0;
584
585         if (CC->internal_pgm == 0) {
586                 cprintf("%d This command is for internal programs only.\n",
587                         ERROR);
588                 return;
589                 }
590
591         extract(msgid,cmdbuf,0);
592         headers_only = extract_int(cmdbuf,1);
593
594         output_message(msgid,MT_RAW,headers_only);
595         }
596
597
598
599 /*
600  * Message base operation to send a message to the master file
601  * (returns new message number)
602  */
603 long send_message(char *message_in_memory,      /* pointer to buffer */
604                 size_t message_length,          /* length of buffer */
605                 int generate_id) {              /* 1 to generate an I field */
606
607         long newmsgid;
608
609         /* Get a new message number */
610         newmsgid = get_new_message_number();
611
612         /* Write our little bundle of joy into the message base */
613
614         lprintf(9, "Storing message %ld\n", newmsgid);
615         begin_critical_section(S_MSGMAIN);
616         if ( cdb_store(CDB_MSGMAIN, &newmsgid, sizeof(long),
617                         message_in_memory, message_length) < 0 ) {
618                 lprintf(2, "Can't store message\n");
619                 end_critical_section(S_MSGMAIN);
620                 return 0L;
621                 }
622         end_critical_section(S_MSGMAIN);
623
624         /* Finally, return the pointers */
625         return(newmsgid);
626         }
627
628
629
630
631
632
633 void loadtroom(void) {
634         struct quickroom qrbuf;
635         int a;
636         unsigned newflags;
637
638         /* first try to locate the twit room */
639         for (a=0; a<MAXROOMS; ++a) {
640                 getroom(&qrbuf,a);
641                 if (!strucmp(qrbuf.QRname,config.c_twitroom)) {
642                         twitroom = a;
643                         return;
644                         }
645                 }
646
647         /* if not found, try to create it  -  put it in the last slot */
648         twitroom = get_free_room_slot(-1);
649         if (twitroom>=0) {
650                 newflags = create_room(twitroom,config.c_twitroom,0,"",0);
651                 return;
652                 }
653
654         /* as a last resort, point to Aide> */
655         twitroom = 2;
656         }
657
658
659 /*
660  * this is a simple file copy routine.
661  */
662 void copy_file(char *from, char *to)
663 {
664         FILE *ffp,*tfp;
665         int a;
666
667         ffp=fopen(from,"r");
668         if (ffp==NULL) return;
669         tfp=fopen(to,"w");
670         if (tfp==NULL) {
671                 fclose(ffp);
672                 return;
673                 }
674         while (a=getc(ffp), a>=0) {
675                 putc(a,tfp);
676                 }
677         fclose(ffp);
678         fclose(tfp);
679         return;
680         }
681
682
683
684 /*
685  * message base operation to save a message and install its pointers
686  */
687 void save_message(char *mtmp,   /* file containing proper message */
688                 char *rec,      /* Recipient (if mail) */
689                 char mtsflag,   /* 0 for normal, 1 to force Aide> room */
690                 int mailtype,   /* local or remote type, see citadel.h */
691                 int generate_id) /* set to 1 to generate an 'I' field */
692 {
693         struct usersupp tempUS;
694         char aaa[100];
695         int hold_rm;
696         struct cdbdata *cdbmb;
697         long *dmailbox;
698         int dnum_mails;
699         long newmsgid;
700         char *message_in_memory;
701         struct stat statbuf;
702         size_t templen;
703         FILE *fp;
704
705         /* Measure the message */
706         lprintf(9, "Measuring the message\n");
707         stat(mtmp, &statbuf);
708         templen = statbuf.st_size;
709
710         /* Now read it into memory */
711         lprintf(9, "Allocating %ld bytes\n", templen);
712         message_in_memory = (char *) malloc(templen);
713         if (message_in_memory == NULL) {
714                 lprintf(2, "Can't allocate memory to save message!\n");
715                 return;
716                 }
717
718         lprintf(9, "Reading it into memory\n"); 
719         fp = fopen(mtmp, "rb");
720         fread(message_in_memory, templen, 1, fp);
721         fclose(fp);
722
723         newmsgid = send_message(message_in_memory, templen, generate_id);
724         free(message_in_memory);
725         if (newmsgid <= 0L) return;
726         hold_rm=(-1);
727
728         /* If the user is a twit, move to the twit room for posting... */
729         if (TWITDETECT) if (CC->usersupp.axlevel==2) {
730                 if (twitroom<0) loadtroom();
731                 hold_rm=CC->curr_rm;
732                 CC->curr_rm=twitroom;
733                 }
734
735         /* ...or if this message is destined for Aide> then go there. */
736         if (mtsflag) {
737                 hold_rm=CC->curr_rm;
738                 CC->curr_rm=2;
739                 }
740
741         /* This call to usergoto() changes rooms if necessary.  It also
742          * causes the latest message list to be read into memory.
743          */
744         usergoto(CC->curr_rm,0);
745
746         /* Store the message pointer, but NOT for sent mail! */
747         if (CC->curr_rm != 1) {
748
749                 /* read in the quickroom record, obtaining a lock... */
750                 lgetroom(&CC->quickroom,CC->curr_rm);
751                 get_msglist(CC->curr_rm);
752
753                 /* FIX here's where we have to to message expiry!! */
754
755                 /* Now add the new message */
756                 CC->num_msgs = CC->num_msgs + 1;
757                 CC->msglist = realloc(CC->msglist,
758                         ((CC->num_msgs) * sizeof(long)) );
759                 if (CC->msglist == NULL) {
760                         lprintf(3, "ERROR can't realloc message list!\n");
761                         }
762                 SetMessageInList(CC->num_msgs - 1, newmsgid);
763         
764                 /* Write it back to disk. */
765                 put_msglist(CC->curr_rm);
766         
767                 /* update quickroom */
768                 CC->quickroom.QRhighest = newmsgid;
769                 lputroom(&CC->quickroom,CC->curr_rm);
770                 }
771
772         /* Bump this user's messages posted counter.  Also, if the user is a
773          * twit, give them access to the twit room.
774          */
775         lgetuser(&CC->usersupp,CC->curr_user);
776         CC->usersupp.posted = CC->usersupp.posted + 1;
777         if (CC->curr_rm==twitroom) {
778                 CC->usersupp.generation[twitroom] = CC->quickroom.QRgen;
779                 }
780         lputuser(&CC->usersupp, CC->curr_user);
781
782         /* If mail, there's still more to do, if not, skip it. */
783         if ((CC->curr_rm!=1)||(mtsflag)) goto ENTFIN;
784
785         /* Network mail - send a copy to the network program. */
786         if (mailtype!=M_LOCAL) {
787                 sprintf(aaa,"./network/spoolin/nm.%d",getpid());
788                 copy_file(mtmp,aaa);
789                 system("exec nohup ./netproc >/dev/null 2>&1 &");
790                 }
791
792         /* Local mail - put a copy in the recipient's mailbox. */
793         /* FIX here's where we have to handle expiry, stuffed boxes, etc. */
794         if (mailtype == M_LOCAL) {
795                 if (lgetuser(&tempUS,rec)==0) {
796
797                         cdbmb = cdb_fetch(CDB_MAILBOXES,
798                                         &tempUS.usernum, sizeof(long));
799                         if (cdbmb != NULL) {
800                                 memcpy(dmailbox, cdbmb->ptr, cdbmb->len);
801                                 dnum_mails = cdbmb->len / sizeof(long);
802                                 cdb_free(cdbmb);
803                                 }
804                         else {
805                                 dmailbox = NULL;
806                                 dnum_mails = 0;
807                                 }
808         
809                         ++dnum_mails;
810                         if (dmailbox == NULL) {
811                                 dmailbox = malloc(sizeof(long) * dnum_mails);
812                                 }
813                         else {
814                                 dmailbox = realloc(dmailbox,
815                                                 sizeof(long) * dnum_mails);
816                                 }
817                         
818                         dmailbox[dnum_mails - 1] = newmsgid;
819                         cdb_store(CDB_MAILBOXES, &tempUS.usernum, sizeof(long),
820                                 dmailbox, (dnum_mails * sizeof(long)) );
821                         lputuser(&tempUS,rec);
822                         free(dmailbox);
823                         }
824                 }
825
826         /* If we've posted in a room other than the current room, then we
827          * have to now go back to the current room...
828          */
829 ENTFIN: if (hold_rm!=(-1)) {
830                 usergoto(hold_rm,0);
831                 }
832         unlink(mtmp);           /* delete the temporary file */
833         }
834
835
836 /*
837  * Generate an administrative message and post it in the Aide> room.
838  */
839 void aide_message(char *text)
840 {
841         long now;
842         FILE *fp;
843
844         time(&now);
845         fp=fopen(CC->temp,"wb");
846         fprintf(fp,"%c%c%c",255,MES_NORMAL,0);
847         fprintf(fp,"Psysop%c",0);
848         fprintf(fp,"T%ld%c",now,0);
849         fprintf(fp,"ACitadel%c",0);
850         fprintf(fp,"OAide%c",0);
851         fprintf(fp,"N%s%c",NODENAME,0);
852         fprintf(fp,"M%s\n%c",text,0);
853         fclose(fp);
854         save_message(CC->temp,"",1,M_LOCAL,1);
855         syslog(LOG_NOTICE,text);
856         }
857
858
859
860 /*
861  * Build a binary message to be saved on disk.
862  */
863 void make_message(char *filename, struct usersupp *author, char *recipient, char *room, int type, int net_type, int format_type, char *fake_name)
864                         /* temporary file name */
865                         /* author's usersupp structure */
866                         /* NULL if it's not mail */
867                         /* room where it's going */
868                         /* see MES_ types in header file */
869                         /* local or remote type, see citadel.h */
870                         /* format type (see citadel.h) */
871
872         FILE *fp;
873         int a;
874         long now;
875         char dest_node[32];
876         char buf[256];
877
878         /* Don't confuse the poor folks if it's not routed mail. */
879         strcpy(dest_node, "");
880
881         /* If net_type is M_BINARY, split out the destination node. */
882         if (net_type == M_BINARY) {
883                 strcpy(dest_node,NODENAME);
884                 for (a=0; a<strlen(recipient); ++a) {
885                         if (recipient[a]=='@') {
886                                 recipient[a]=0;
887                                 strcpy(dest_node,&recipient[a+1]);
888                                 }
889                         }
890                 }
891
892         /* if net_type is M_INTERNET, set the dest node to 'internet' */
893         if (net_type == M_INTERNET) {
894                 strcpy(dest_node,"internet");
895                 }
896
897         while (isspace(recipient[strlen(recipient)-1]))
898                 recipient[strlen(recipient)-1] = 0;
899
900         time(&now);
901         fp=fopen(filename,"w");
902         putc(255,fp);
903         putc(type,fp);  /* Normal or anonymous, see MES_ flags */
904         putc(format_type,fp);   /* Formatted or unformatted */
905         fprintf(fp,"Pcit%ld%c",author->usernum,0);      /* path */
906         fprintf(fp,"T%ld%c",now,0);                     /* date/time */
907         if (fake_name[0])
908            fprintf(fp,"A%s%c",fake_name,0);
909         else
910            fprintf(fp,"A%s%c",author->fullname,0);      /* author */
911         fprintf(fp,"O%s%c",CC->quickroom.QRname,0);     /* room */
912         fprintf(fp,"N%s%c",NODENAME,0);                 /* nodename */
913         fprintf(fp,"H%s%c",HUMANNODE,0);                /* human nodename */
914
915         if (recipient[0]!=0) fprintf(fp,"R%s%c",recipient,0);
916         if (dest_node[0]!=0) fprintf(fp,"D%s%c",dest_node,0);
917
918         putc('M',fp);
919
920         while (client_gets(buf), strcmp(buf,"000"))
921         {
922            fprintf(fp,"%s\n",buf);
923         }
924         syslog(LOG_INFO, "Closing message");
925         putc(0,fp);
926         fclose(fp);
927         }
928
929
930
931
932
933 /*
934  * message entry  -  mode 0 (normal) <bc>
935  */
936 void cmd_ent0(char *entargs)
937 {
938         int post = 0;
939         char recipient[256];
940         int anon_flag = 0;
941         int format_type = 0;
942         char newusername[256];          /* <bc> */
943
944         int a,b,e;
945         int mtsflag = 0;
946         struct usersupp tempUS;
947         char buf[256];
948
949         post = extract_int(entargs,0);
950         extract(recipient,entargs,1);
951         anon_flag = extract_int(entargs,2);
952         format_type = extract_int(entargs,3);
953
954         /* first check to make sure the request is valid. */
955
956         if (!(CC->logged_in)) {
957                 cprintf("%d Not logged in.\n",ERROR+NOT_LOGGED_IN);
958                 return;
959                 }
960         if (CC->curr_rm < 0) {
961                 cprintf("%d No room selected.\n",ERROR);
962                 return;
963                 }
964         if ((CC->usersupp.axlevel<2)&&(CC->curr_rm!=1)) {
965                 cprintf("%d Need to be validated to enter (except in Mail> to sysop)\n",
966                         ERROR+HIGHER_ACCESS_REQUIRED);
967                 return;
968                 }
969         if ((CC->usersupp.axlevel<4)&&(CC->quickroom.QRflags&QR_NETWORK)) {
970                 cprintf("%d Need net privileges to enter here.\n",
971                         ERROR+HIGHER_ACCESS_REQUIRED);
972                 return;
973                 }
974         if ((CC->usersupp.axlevel<6)&&(CC->quickroom.QRflags&QR_READONLY)) {
975                 cprintf("%d Sorry, this is a read-only room.\n",
976                         ERROR+HIGHER_ACCESS_REQUIRED);
977                 return;
978                 }
979
980         mtsflag=0;
981         
982                 
983         if (post==2) {                  /* <bc> */
984            if (CC->usersupp.axlevel<6)
985            {
986               cprintf("%d\nYou don't have sufficient permission to do an aide post.\n", ERROR+HIGHER_ACCESS_REQUIRED);
987               return;
988            }
989            extract(newusername,entargs,4);
990            bzero(CC->fake_postname, 32);
991            strcpy(CC->fake_postname, newusername);
992            cprintf("%d Ok\n",OK);
993            return;
994         }
995         
996         CC->cs_flags |= CS_POSTING;
997         
998         buf[0]=0;
999         if (CC->curr_rm==1) {
1000                 if (CC->usersupp.axlevel>=2) {
1001                         strcpy(buf,recipient);
1002                         }
1003                 else strcpy(buf,"sysop");
1004                 lprintf(9, "aliasing...\n");
1005                 e=alias(buf);                   /* alias and mail type */
1006                 lprintf(9,"...type is %d\n", e);
1007                 if ((buf[0]==0) || (e==M_ERROR)) {
1008                         cprintf("%d Unknown address - cannot send message.\n",
1009                                 ERROR+NO_SUCH_USER);
1010                         return;
1011                         }
1012                 if ((e!=M_LOCAL)&&(CC->usersupp.axlevel<4)) {
1013                         cprintf("%d Net privileges required for network mail.\n",
1014                                 ERROR+HIGHER_ACCESS_REQUIRED);
1015                         return;
1016                         }
1017                 if ((RESTRICT_INTERNET==1)&&(e==M_INTERNET)
1018                    &&((CC->usersupp.flags&US_INTERNET)==0)
1019                    &&(!CC->internal_pgm) ) {
1020                         cprintf("%d You don't have access to Internet mail.\n",
1021                                 ERROR+HIGHER_ACCESS_REQUIRED);
1022                         return;
1023                         }
1024                 if (!strucmp(buf,"sysop")) {
1025                         mtsflag=1;
1026                         goto SKFALL;
1027                         }
1028                 if (e!=M_LOCAL) goto SKFALL;    /* don't search local file  */
1029                 if (!strucmp(buf,CC->usersupp.fullname)) {
1030                         cprintf("%d Can't send mail to yourself!\n",
1031                                 ERROR+NO_SUCH_USER);
1032                         return;
1033                         }
1034
1035                 /* Check to make sure the user exists; also get the correct
1036                 * upper/lower casing of the name. 
1037                 */
1038                 lprintf(9, "checking validity of %s\n", buf);
1039                 a = getuser(&tempUS,buf);
1040                 lprintf(9, "getuser() returned %d\n", a);
1041                 if (a != 0) {
1042                         cprintf("%d No such user.\n",ERROR+NO_SUCH_USER);
1043                         return;
1044                         }
1045                 strcpy(buf,tempUS.fullname);
1046                 }
1047         
1048 SKFALL: b=MES_NORMAL;
1049         if (CC->quickroom.QRflags&QR_ANONONLY) b=MES_ANON;
1050         if (CC->quickroom.QRflags&QR_ANON2) {
1051                 if (anon_flag==1) b=MES_AN2;
1052                 }
1053         if (CC->curr_rm!=1) buf[0]=0;
1054
1055         /* If we're only checking the validity of the request, return
1056          * success without creating the message.
1057          */
1058         if (post==0) {
1059                 cprintf("%d %s\n",OK,buf);
1060                 return;
1061                 }
1062         
1063         cprintf("%d send message\n",SEND_LISTING);
1064         if (CC->fake_postname[0])
1065            make_message(CC->temp,&CC->usersupp,buf,CC->quickroom.QRname,b,e,format_type, CC->fake_postname);
1066         else
1067            if (CC->fake_username[0])
1068               make_message(CC->temp,&CC->usersupp,buf,CC->quickroom.QRname,b,e,format_type, CC->fake_username);
1069            else
1070               make_message(CC->temp,&CC->usersupp,buf,CC->quickroom.QRname,b,e,format_type, "");
1071         save_message(CC->temp,buf,mtsflag,e,1);
1072         CC->fake_postname[0]='\0';
1073         return;
1074         }
1075
1076
1077
1078 /* 
1079  * message entry - mode 3 (raw)
1080  */
1081 void cmd_ent3(char *entargs)
1082 {
1083         char recp[256];
1084         char buf[256];
1085         int a, e;
1086         struct usersupp tempUS;
1087         long msglen;
1088         long bloklen;
1089         FILE *fp;
1090
1091         if (CC->internal_pgm == 0) {
1092                 cprintf("%d This command is for internal programs only.\n",
1093                         ERROR);
1094                 return;
1095                 }
1096
1097         if (CC->curr_rm < 0) {
1098                 cprintf("%d No room selected.\n",ERROR);
1099                 return;
1100                 }
1101
1102         if (CC->curr_rm == 1) { /* If we're in Mail, check the recipient */
1103                 extract(recp, entargs, 1);
1104                 lprintf(9, "aliasing...\n");
1105                 e=alias(recp);                  /* alias and mail type */
1106                 lprintf(9,"...type is %d\n", e);
1107                 if ((buf[0]==0) || (e==M_ERROR)) {
1108                         cprintf("%d Unknown address - cannot send message.\n",
1109                                 ERROR+NO_SUCH_USER);
1110                         return;
1111                         }
1112                 if (e == M_LOCAL) {
1113                         a = getuser(&tempUS,recp);
1114                         if (a!=0) {
1115                                 cprintf("%d No such user.\n", ERROR+NO_SUCH_USER);
1116                                 return;
1117                                 }
1118                         }
1119                 }
1120
1121         /* At this point, message has been approved. */
1122         if (extract_int(entargs, 0) == 0) {
1123                 cprintf("%d OK to send\n", OK);
1124                 return;
1125                 }
1126
1127         /* open a temp file to hold the message */
1128         fp = fopen(CC->temp, "wb");
1129         if (fp == NULL) {
1130                 cprintf("%d Cannot open %s: %s\n", 
1131                         ERROR + INTERNAL_ERROR,
1132                         CC->temp, strerror(errno) );
1133                 return;
1134                 }
1135
1136         msglen = extract_long(entargs, 2);
1137         cprintf("%d %ld\n", SEND_BINARY, msglen);
1138         while(msglen > 0L) {
1139                 bloklen = ((msglen >= 255L) ? 255 : msglen);
1140                 client_read(buf, (int)bloklen );
1141                 fwrite(buf, (int)bloklen, 1, fp);
1142                 msglen = msglen - bloklen;
1143                 }
1144         fclose(fp);
1145
1146         save_message(CC->temp, recp, 0, e, 0);
1147         }
1148
1149
1150 /*
1151  * Delete message from current room
1152  */
1153 void cmd_dele(char *delstr)
1154 {
1155         long delnum;
1156         int a,ok;
1157
1158         getuser(&CC->usersupp,CC->curr_user);
1159         if ((CC->usersupp.axlevel < 6)
1160            && (CC->usersupp.usernum != CC->quickroom.QRroomaide)) {
1161                 cprintf("%d Higher access required.\n",
1162                         ERROR+HIGHER_ACCESS_REQUIRED);
1163                 return;
1164                 }
1165
1166         delnum = atol(delstr);
1167         if (CC->curr_rm==1) {
1168                 cprintf("%d Can't delete mail.\n",ERROR);
1169                 return;
1170                 }
1171         
1172         /* get room records, obtaining a lock... */
1173         lgetroom(&CC->quickroom,CC->curr_rm);
1174         get_msglist(CC->curr_rm);
1175
1176         ok = 0;
1177         if (CC->num_msgs > 0) for (a=0; a<(CC->num_msgs); ++a) {
1178                 if (MessageFromList(a) == delnum) {
1179                         SetMessageInList(a, 0L);
1180                         ok = 1;
1181                         }
1182                 }
1183
1184         CC->num_msgs = sort_msglist(CC->msglist, CC->num_msgs);
1185         CC->quickroom.QRhighest = MessageFromList(CC->num_msgs - 1);
1186
1187         put_msglist(CC->curr_rm);
1188         lputroom(&CC->quickroom,CC->curr_rm);
1189         if (ok==1) {
1190                 cdb_delete(CDB_MSGMAIN, &delnum, sizeof(long));
1191                 cprintf("%d Message deleted.\n",OK);
1192                 }
1193         else cprintf("%d No message %ld.\n",ERROR,delnum);
1194         } 
1195
1196
1197 /*
1198  * move a message to another room
1199  */
1200 void cmd_move(char *args)
1201 {
1202         long num;
1203         char targ[32];
1204         int a;
1205         int targ_slot;
1206         struct quickroom qtemp;
1207         int foundit;
1208         struct cdbdata *cdbtarg;
1209         long *targmsgs;
1210         int targ_count;
1211
1212         num = extract_long(args,0);
1213         extract(targ,args,1);
1214         
1215         if (CC->curr_rm < 0) {
1216                 cprintf("%d no room\n",ERROR);
1217                 return;
1218                 }
1219
1220         getuser(&CC->usersupp,CC->curr_user);
1221         if ((CC->usersupp.axlevel < 6)
1222            && (CC->usersupp.usernum != CC->quickroom.QRroomaide)) {
1223                 cprintf("%d Higher access required.\n",
1224                         ERROR+HIGHER_ACCESS_REQUIRED);
1225                 return;
1226                 }
1227
1228         targ_slot = (-1);
1229         for (a=0; a<MAXROOMS; ++a) {
1230                 getroom(&qtemp,a);
1231                 if (!strucmp(qtemp.QRname,targ)) {
1232                         targ_slot = a;
1233                         a = MAXROOMS;
1234                         }
1235                 }
1236         if (targ_slot < 0) {
1237                 cprintf("%d '%s' does not exist.\n",ERROR,targ);
1238                 return;
1239                 }
1240
1241         /* yank the message out of the current room... */
1242         lgetroom(&CC->quickroom,CC->curr_rm);
1243         get_msglist(CC->curr_rm);
1244
1245         foundit = 0;
1246         for (a=0; a<(CC->num_msgs); ++a) {
1247                 if (MessageFromList(a) == num) {
1248                         foundit = 1;
1249                         SetMessageInList(a, 0L);
1250                         }
1251                 }
1252         if (foundit) {
1253                 CC->num_msgs = sort_msglist(CC->msglist, CC->num_msgs);
1254                 put_msglist(CC->curr_rm);
1255                 CC->quickroom.QRhighest = MessageFromList((CC->num_msgs)-1);
1256                 }
1257         lputroom(&CC->quickroom,CC->curr_rm);
1258         if (!foundit) {
1259                 cprintf("%d msg %ld does not exist.\n",ERROR,num);
1260                 return;
1261                 }
1262
1263         /* put the message into the target room */
1264         lgetroom(&qtemp,targ_slot);
1265         cdbtarg = cdb_fetch(CDB_MSGLISTS, &targ_slot, sizeof(int));
1266         if (cdbtarg != NULL) {
1267                 targmsgs = malloc(cdbtarg->len);
1268                 memcpy(targmsgs, cdbtarg->ptr, cdbtarg->len);
1269                 targ_count = cdbtarg->len / sizeof(long);
1270                 cdb_free(cdbtarg);
1271                 }
1272         else {
1273                 targmsgs = NULL;
1274                 targ_count = 0;
1275                 }
1276
1277         ++targ_count;
1278         targmsgs = realloc(targmsgs, ((CC->num_msgs) * sizeof(long)));
1279         targmsgs[targ_count - 1] = num;
1280         targ_count = sort_msglist(targmsgs, targ_count);
1281         qtemp.QRhighest = targmsgs[targ_count - 1];
1282         cdb_store(CDB_MSGLISTS, &targ_slot, sizeof(int),
1283                         targmsgs, targ_count * sizeof(long));
1284         free(targmsgs);
1285         lputroom(&qtemp,targ_slot);
1286         cprintf("%d ok\n",OK);
1287         }