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