* Changed decode_base64() to CtdlDecodeBase64() to avoid conflict with
[citadel.git] / webcit / messages.c
1 /*
2  * $Id$
3  *
4  * Functions which deal with the fetching and displaying of messages.
5  *
6  */
7
8 #include <ctype.h>
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <fcntl.h>
13 #include <signal.h>
14 #include <sys/types.h>
15 #include <sys/wait.h>
16 #include <sys/socket.h>
17 #include <limits.h>
18 #include <netinet/in.h>
19 #include <netdb.h>
20 #include <string.h>
21 #include <pwd.h>
22 #include <errno.h>
23 #include <stdarg.h>
24 #include <pthread.h>
25 #include <signal.h>
26 #include "webcit.h"
27 #include "vcard.h"
28 #include "webserver.h"
29
30
31 /*
32  * Look for URL's embedded in a buffer and make them linkable.  We use a
33  * target window in order to keep the BBS session in its own window.
34  */
35 void url(buf)
36 char buf[];
37 {
38
39         int pos;
40         int start, end;
41         char ench;
42         char urlbuf[SIZ];
43         char outbuf[1024];
44
45         start = (-1);
46         end = strlen(buf);
47         ench = 0;
48
49         for (pos = 0; pos < strlen(buf); ++pos) {
50                 if (!strncasecmp(&buf[pos], "http://", 7))
51                         start = pos;
52                 if (!strncasecmp(&buf[pos], "ftp://", 6))
53                         start = pos;
54         }
55
56         if (start < 0)
57                 return;
58
59         if ((start > 0) && (buf[start - 1] == '<'))
60                 ench = '>';
61         if ((start > 0) && (buf[start - 1] == '['))
62                 ench = ']';
63         if ((start > 0) && (buf[start - 1] == '('))
64                 ench = ')';
65         if ((start > 0) && (buf[start - 1] == '{'))
66                 ench = '}';
67
68         for (pos = strlen(buf); pos > start; --pos) {
69                 if ((buf[pos] == ' ') || (buf[pos] == ench))
70                         end = pos;
71         }
72
73         strncpy(urlbuf, &buf[start], end - start);
74         urlbuf[end - start] = 0;
75
76         strncpy(outbuf, buf, start);
77         sprintf(&outbuf[start], "%cA HREF=%c%s%c TARGET=%c%s%c%c%s%c/A%c",
78                 LB, QU, urlbuf, QU, QU, TARGET, QU, RB, urlbuf, LB, RB);
79         strcat(outbuf, &buf[end]);
80         if ( strlen(outbuf) < 250 )
81                 strcpy(buf, outbuf);
82 }
83
84
85 /* display_vcard() calls this after parsing the textual vCard into
86  * our 'struct vCard' data object.
87  *
88  * Set 'full' to nonzero to display the full card, otherwise it will only
89  * show a summary line.
90  */
91 void display_parsed_vcard(struct vCard *v, int full) {
92         int i, j;
93         char buf[SIZ];
94         char *name;
95
96         if (!full) {
97                 wprintf("<TD>");
98                 name = vcard_get_prop(v, "n", 1, 0, 0);
99                 if (name != NULL) {
100                         strcpy(buf, name);
101                         escputs(buf);
102                 }
103                 else {
104                         wprintf("&nbsp;");
105                 }
106                 wprintf("</TD>");
107                 return;
108         }
109
110         wprintf("<TABLE bgcolor=#888888>");
111         if (v->numprops) for (i=0; i<(v->numprops); ++i) {
112                 if (!strcasecmp(v->prop[i].name, "n")) {
113                         wprintf("<TR BGCOLOR=#AAAAAA>"
114                         "<TD BGCOLOR=#FFFFFF>"
115                         "<IMG VALIGN=CENTER SRC=\"/static/vcard.gif\"></TD>"
116                         "<TD><FONT SIZE=+1><B>");
117                         escputs(v->prop[i].value);
118                         wprintf("</B></FONT></TD></TR>\n");
119                 }
120                 else if (!strcasecmp(v->prop[i].name, "email;internet")) {
121                         wprintf("<TR><TD>Internet e-mail:</TD>"
122                                 "<TD><A HREF=\"mailto:");
123                         urlescputs(v->prop[i].value);
124                         wprintf("\">");
125                         escputs(v->prop[i].value);
126                         wprintf("</A></TD></TR>\n");
127                 }
128                 else if (!strcasecmp(v->prop[i].name, "adr")) {
129                         wprintf("<TR><TD>Address:</TD><TD>");
130                         for (j=0; j<num_tokens(v->prop[i].value, ';'); ++j) {
131                                 extract_token(buf, v->prop[i].value, j, ';');
132                                 if (strlen(buf) > 0) {
133                                         escputs(buf);
134                                         wprintf("<BR>");
135                                 }
136                         }
137                         wprintf("</TD></TR>\n");
138                 }
139                 else if (!strncasecmp(v->prop[i].name, "tel;", 4)) {
140                         wprintf("<TR><TD>%s telephone:</TD><TD>",
141                                 &v->prop[i].name[4]);
142                         for (j=0; j<num_tokens(v->prop[i].value, ';'); ++j) {
143                                 extract_token(buf, v->prop[i].value, j, ';');
144                                 if (strlen(buf) > 0) {
145                                         escputs(buf);
146                                         wprintf("<BR>");
147                                 }
148                         }
149                         wprintf("</TD></TR>\n");
150                 }
151                 else {
152                         wprintf("<TR><TD>");
153                         escputs(v->prop[i].name);
154                         wprintf("</TD><TD>");
155                         escputs(v->prop[i].value);
156                         wprintf("</TD></TR>\n");
157                 }
158         }
159         wprintf("</TABLE>\n");
160 }
161
162
163
164 /*
165  * Display a textual vCard
166  * (Converts to a vCard object and then calls the actual display function)
167  * Set 'full' to nonzero to display the whole card instead of a one-liner
168  */
169 void display_vcard(char *vcard_source, char alpha, int full) {
170         struct vCard *v;
171         char *name;
172         char buf[SIZ];
173         char this_alpha = 0;
174
175         v = vcard_load(vcard_source);
176         if (v == NULL) return;
177
178         name = vcard_get_prop(v, "n", 1, 0, 0);
179         if (name != NULL) {
180                 strcpy(buf, name);
181                 this_alpha = buf[0];
182         }
183
184         if ( (alpha == 0)
185            || ((isalpha(alpha)) && (tolower(alpha) == tolower(this_alpha)) )
186            || ((!isalpha(alpha)) && (!isalpha(this_alpha))) ) {
187
188                 display_parsed_vcard(v, full);
189
190         }
191
192         vcard_free(v);
193 }
194
195
196
197
198 /*
199  * I wanna SEE that message!
200  */
201 void read_message(long msgnum) {
202         char buf[SIZ];
203         char mime_partnum[SIZ];
204         char mime_filename[SIZ];
205         char mime_content_type[SIZ];
206         char mime_disposition[SIZ];
207         int mime_length;
208         char *mime_http = NULL;
209         char m_subject[SIZ];
210         char from[SIZ];
211         char node[SIZ];
212         char rfca[SIZ];
213         char reply_to[512];
214         char now[SIZ];
215         int format_type = 0;
216         int nhdr = 0;
217         int bq = 0;
218         char vcard_partnum[SIZ];
219         char cal_partnum[SIZ];
220         char *part_source = NULL;
221
222         strcpy(from, "");
223         strcpy(node, "");
224         strcpy(rfca, "");
225         strcpy(reply_to, "");
226         strcpy(vcard_partnum, "");
227         strcpy(cal_partnum, "");
228
229         serv_printf("MSG4 %ld", msgnum);
230         serv_gets(buf);
231         if (buf[0] != '1') {
232                 wprintf("<STRONG>ERROR:</STRONG> %s<BR>\n", &buf[4]);
233                 return;
234         }
235
236         wprintf("<TABLE WIDTH=100%% BORDER=0 CELLSPACING=0 "
237                 "CELLPADDING=1 BGCOLOR=CCCCCC><TR><TD>\n");
238
239         wprintf("<FONT ");
240         wprintf("SIZE=+1 ");
241         wprintf("COLOR=\"000000\"> ");
242         strcpy(m_subject, "");
243
244         while (serv_gets(buf), strcasecmp(buf, "text")) {
245                 if (!strncasecmp(buf, "nhdr=yes", 8))
246                         nhdr = 1;
247                 if (nhdr == 1)
248                         buf[0] = '_';
249                 if (!strncasecmp(buf, "type=", 5))
250                         format_type = atoi(&buf[5]);
251                 if (!strncasecmp(buf, "from=", 5)) {
252                         strcpy(from, &buf[5]);
253                         wprintf("from <A HREF=\"/showuser&who=");
254                         urlescputs(from);
255                         wprintf("\">");
256                         escputs(from);
257                         wprintf("</A> ");
258                 }
259                 if (!strncasecmp(buf, "subj=", 5))
260                         strcpy(m_subject, &buf[5]);
261                 if ((!strncasecmp(buf, "hnod=", 5))
262                     && (strcasecmp(&buf[5], serv_info.serv_humannode)))
263                         wprintf("(%s) ", &buf[5]);
264                 if ((!strncasecmp(buf, "room=", 5))
265                     && (strcasecmp(&buf[5], WC->wc_roomname)))
266                         wprintf("in %s> ", &buf[5]);
267                 if (!strncasecmp(buf, "rfca=", 5)) {
268                         strcpy(rfca, &buf[5]);
269                         wprintf("&lt;");
270                         escputs(rfca);
271                         wprintf("&gt; ");
272                 }
273
274                 if (!strncasecmp(buf, "node=", 5)) {
275                         if ( ((WC->room_flags & QR_NETWORK)
276                         || ((strcasecmp(&buf[5], serv_info.serv_nodename)
277                         && (strcasecmp(&buf[5], serv_info.serv_fqdn)))))
278                         && (strlen(rfca)==0)
279                         ) {
280                                 wprintf("@%s ", &buf[5]);
281                         }
282                 }
283                 if (!strncasecmp(buf, "rcpt=", 5))
284                         wprintf("to %s ", &buf[5]);
285                 if (!strncasecmp(buf, "time=", 5)) {
286                         fmt_date(now, atol(&buf[5]));
287                         wprintf("%s ", now);
288                 }
289
290                 if (!strncasecmp(buf, "part=", 5)) {
291                         extract(mime_filename, &buf[5], 1);
292                         extract(mime_partnum, &buf[5], 2);
293                         extract(mime_disposition, &buf[5], 3);
294                         extract(mime_content_type, &buf[5], 4);
295                         mime_length = extract_int(&buf[5], 5);
296
297                         if (!strcasecmp(mime_disposition, "attachment")) {
298                                 if (mime_http == NULL) {
299                                         mime_http = malloc(512);
300                                         strcpy(mime_http, "");
301                                 }
302                                 else {
303                                         mime_http = realloc(mime_http,
304                                                 strlen(mime_http) + 512);
305                                 }
306                                 sprintf(&mime_http[strlen(mime_http)],
307                                         "<A HREF=\"/output_mimepart?"
308                                         "msgnum=%ld&partnum=%s\" "
309                                         "TARGET=\"wc.%ld.%s\">"
310                                         "<IMG SRC=\"/static/attachment.gif\" "
311                                         "BORDER=0 ALIGN=MIDDLE>\n"
312                                         "Part %s: %s (%s, %d bytes)</A><BR>\n",
313                                         msgnum, mime_partnum,
314                                         msgnum, mime_partnum,
315                                         mime_partnum, mime_filename,
316                                         mime_content_type, mime_length);
317                         }
318
319                         if ((!strcasecmp(mime_disposition, "inline"))
320                            && (!strncasecmp(mime_content_type, "image/", 6)) ){
321                                 if (mime_http == NULL) {
322                                         mime_http = malloc(512);
323                                         strcpy(mime_http, "");
324                                 }
325                                 else {
326                                         mime_http = realloc(mime_http,
327                                                 strlen(mime_http) + 512);
328                                 }
329                                 sprintf(&mime_http[strlen(mime_http)],
330                                         "<IMG SRC=\"/output_mimepart?"
331                                         "msgnum=%ld&partnum=%s\">",
332                                         msgnum, mime_partnum);
333                         }
334
335                         /*** begin handler prep ***/
336                         if (!strcasecmp(mime_content_type, "text/x-vcard")) {
337                                 strcpy(vcard_partnum, mime_partnum);
338                         }
339
340                         if (!strcasecmp(mime_content_type, "text/calendar")) {
341                                 strcpy(cal_partnum, mime_partnum);
342                         }
343
344                         /*** end handler prep ***/
345
346                 }
347
348         }
349
350
351         /* Generate a reply-to address */
352         if (strlen(rfca) > 0) {
353                 strcpy(reply_to, rfca);
354         }
355         else {
356                 if (strlen(node) > 0) {
357                         snprintf(reply_to, sizeof(reply_to), "%s @ %s",
358                                 from, node);
359                 }
360                 else {
361                         snprintf(reply_to, sizeof(reply_to), "%s", from);
362                 }
363         }
364
365         if (nhdr == 1) {
366                 wprintf("****");
367         }
368
369         wprintf("</FONT></TD>");
370
371         wprintf("<TD ALIGN=RIGHT>\n"
372                 "<TABLE BORDER=0><TR>\n");
373
374         wprintf("<TD BGCOLOR=\"AAAADD\">"
375                 "<A HREF=\"/readfwd?startmsg=%ld", msgnum);
376         wprintf("&maxmsgs=1&summary=0\">Read</A>"
377                 "</TD>\n", msgnum);
378
379         wprintf("<TD BGCOLOR=\"AAAADD\">"
380                 "<A HREF=\"/display_enter?recp=");
381         urlescputs(reply_to);
382         wprintf("\"><FONT SIZE=-1>Reply</FONT></A>"
383                 "</TD>\n", msgnum);
384
385         if (WC->is_room_aide) {
386                 wprintf("<TD BGCOLOR=\"AAAADD\">"
387                         "<A HREF=\"/confirm_move_msg"
388                         "&msgid=%ld"
389                         "\"><FONT SIZE=-1>Move</FONT></A>"
390                         "</TD>\n", msgnum);
391
392                 wprintf("<TD BGCOLOR=\"AAAADD\">"
393                         "<A HREF=\"/delete_msg"
394                         "&msgid=%ld\""
395                         "onClick=\"return confirm('Delete this message?');\""
396                         "><FONT SIZE=-1>Del</FONT></A>"
397                         "</TD>\n", msgnum);
398         }
399
400         wprintf("</TR></TABLE>\n"
401                 "</TD>\n");
402
403         if (strlen(m_subject) > 0) {
404                 wprintf("<TR><TD><FONT COLOR=\"0000FF\">"
405                         "Subject: %s</FONT>"
406                         "</TD><TD>&nbsp;</TD></TR>\n", m_subject);
407         }
408
409         wprintf("</TR></TABLE>\n");
410
411         /* 
412          * Learn the content type
413          */
414         strcpy(mime_content_type, "text/plain");
415         while (serv_gets(buf), (strlen(buf) > 0)) {
416                 if (!strncasecmp(buf, "Content-type: ", 14)) {
417                         safestrncpy(mime_content_type, &buf[14],
418                                 sizeof(mime_content_type));
419                 }
420         }
421
422         /* Messages in legacy Citadel variformat get handled thusly... */
423         if (!strcasecmp(mime_content_type, "text/x-citadel-variformat")) {
424                 fmout(NULL);
425         }
426
427         /* Boring old 80-column fixed format text gets handled this way... */
428         else if (!strcasecmp(mime_content_type, "text/plain")) {
429                 while (serv_gets(buf), strcmp(buf, "000")) {
430                         while ((strlen(buf) > 0) && (isspace(buf[strlen(buf) - 1])))
431                                 buf[strlen(buf) - 1] = 0;
432                         if ((bq == 0) &&
433                         ((!strncmp(buf, ">", 1)) || (!strncmp(buf, " >", 2)) || (!strncmp(buf, " :-)", 4)))) {
434                                 wprintf("<FONT COLOR=\"000044\"><I>");
435                                 bq = 1;
436                         } else if ((bq == 1) &&
437                                 (strncmp(buf, ">", 1)) && (strncmp(buf, " >", 2)) && (strncmp(buf, " :-)", 4))) {
438                                 wprintf("</FONT></I>");
439                                 bq = 0;
440                         }
441                         wprintf("<TT>");
442                         url(buf);
443                         escputs(buf);
444                         wprintf("</TT><BR>\n");
445                 }
446                 wprintf("</I><BR>");
447         }
448
449         else /* HTML is fun, but we've got to strip it first */
450         if (!strcasecmp(mime_content_type, "text/html")) {
451                 output_html();
452         }
453
454         /* Unknown weirdness */
455         else {
456                 wprintf("I don't know how to display %s<BR>\n",
457                         mime_content_type);
458                 while (serv_gets(buf), strcmp(buf, "000")) { }
459         }
460
461
462         /* Afterwards, offer links to download attachments 'n' such */
463         if (mime_http != NULL) {
464                 wprintf("%s", mime_http);
465                 free(mime_http);
466         }
467
468         /* Handler for vCard parts */
469         if (strlen(vcard_partnum) > 0) {
470                 part_source = load_mimepart(msgnum, vcard_partnum);
471                 if (part_source != NULL) {
472
473                         /* If it's my vCard I can edit it */
474                         if ( (!strcasecmp(WC->wc_roomname, USERCONFIGROOM))
475                            || (!strcasecmp(&WC->wc_roomname[11], USERCONFIGROOM))) {
476                                 wprintf("<A HREF=\"/edit_vcard?"
477                                         "msgnum=%ld&partnum=%s\">",
478                                         msgnum, vcard_partnum);
479                                 wprintf("(edit)</A>");
480                         }
481
482                         /* In all cases, display the full card */
483                         display_vcard(part_source, 0, 1);
484                 }
485         }
486
487         /* Handler for calendar parts */
488         if (strlen(cal_partnum) > 0) {
489                 part_source = load_mimepart(msgnum, cal_partnum);
490                 if (part_source != NULL) {
491                         cal_process_attachment(part_source);
492                 }
493         }
494
495         if (part_source) {
496                 free(part_source);
497                 part_source = NULL;
498         }
499
500 }
501
502
503 void summarize_message(long msgnum) {
504         char buf[SIZ];
505
506         struct {
507                 char date[SIZ];
508                 char from[SIZ];
509                 char to[SIZ];
510                 char subj[SIZ];
511                 int hasattachments;
512         } summ;
513
514         memset(&summ, 0, sizeof(summ));
515         strcpy(summ.subj, "(no subject)");
516
517         sprintf(buf, "MSG0 %ld|1", msgnum);     /* ask for headers only */
518         serv_puts(buf);
519         serv_gets(buf);
520         if (buf[0] != '1') return;
521
522         while (serv_gets(buf), strcmp(buf, "000")) {
523                 if (!strncasecmp(buf, "from=", 5)) {
524                         strcpy(summ.from, &buf[5]);
525                 }
526                 if (!strncasecmp(buf, "subj=", 5)) {
527                         strcpy(summ.subj, &buf[5]);
528                 }
529                 if (!strncasecmp(buf, "rfca=", 5)) {
530                         strcat(summ.from, " <");
531                         strcat(summ.from, &buf[5]);
532                         strcat(summ.from, ">");
533                 }
534
535                 if (!strncasecmp(buf, "node=", 5)) {
536                         if ( ((WC->room_flags & QR_NETWORK)
537                         || ((strcasecmp(&buf[5], serv_info.serv_nodename)
538                         && (strcasecmp(&buf[5], serv_info.serv_fqdn)))))
539                         ) {
540                                 strcat(summ.from, " @ ");
541                                 strcat(summ.from, &buf[5]);
542                         }
543                 }
544
545                 if (!strncasecmp(buf, "rcpt=", 5)) {
546                         strcpy(summ.to, &buf[5]);
547                 }
548
549                 if (!strncasecmp(buf, "time=", 5)) {
550                         fmt_date(summ.date, atol(&buf[5]));
551                 }
552         }
553
554         wprintf("<TD><A HREF=\"/readfwd?startmsg=%ld"
555                 "&maxmsgs=1&summary=0\">", 
556                 msgnum);
557         escputs(summ.subj);
558         wprintf("</A></TD><TD>");
559         escputs(summ.from);
560         wprintf(" </TD><TD>");
561         escputs(summ.date);
562         wprintf(" </TD>");
563         wprintf("<TD>"
564                 "<INPUT TYPE=\"checkbox\" NAME=\"msg_%ld\" VALUE=\"yes\">"
565                 "</TD>\n");
566
567         return;
568 }
569
570
571
572 void display_addressbook(long msgnum, char alpha) {
573         char buf[SIZ];
574         char mime_partnum[SIZ];
575         char mime_filename[SIZ];
576         char mime_content_type[SIZ];
577         char mime_disposition[SIZ];
578         int mime_length;
579         char vcard_partnum[SIZ];
580         char *vcard_source = NULL;
581
582         struct {
583                 char date[SIZ];
584                 char from[SIZ];
585                 char to[SIZ];
586                 char subj[SIZ];
587                 int hasattachments;
588         } summ;
589
590         memset(&summ, 0, sizeof(summ));
591         strcpy(summ.subj, "(no subject)");
592
593         sprintf(buf, "MSG0 %ld|1", msgnum);     /* ask for headers only */
594         serv_puts(buf);
595         serv_gets(buf);
596         if (buf[0] != '1') return;
597
598         while (serv_gets(buf), strcmp(buf, "000")) {
599                 if (!strncasecmp(buf, "part=", 5)) {
600                         extract(mime_filename, &buf[5], 1);
601                         extract(mime_partnum, &buf[5], 2);
602                         extract(mime_disposition, &buf[5], 3);
603                         extract(mime_content_type, &buf[5], 4);
604                         mime_length = extract_int(&buf[5], 5);
605
606                         if (!strcasecmp(mime_content_type, "text/x-vcard")) {
607                                 strcpy(vcard_partnum, mime_partnum);
608                         }
609
610                 }
611         }
612
613         if (strlen(vcard_partnum) > 0) {
614                 vcard_source = load_mimepart(msgnum, vcard_partnum);
615                 if (vcard_source != NULL) {
616
617                         /* Display the summary line */
618                         display_vcard(vcard_source, alpha, 0);
619
620                         /* If it's my vCard I can edit it */
621                         if ( (!strcasecmp(WC->wc_roomname, USERCONFIGROOM))
622                            || (!strcasecmp(&WC->wc_roomname[11], USERCONFIGROOM))) {
623                                 wprintf("<A HREF=\"/edit_vcard?"
624                                         "msgnum=%ld&partnum=%s\">",
625                                         msgnum, vcard_partnum);
626                                 wprintf("(edit)</A>");
627                         }
628
629                         free(vcard_source);
630                 }
631         }
632
633 }
634
635
636
637 /* 
638  * load message pointers from the server
639  */
640 int load_msg_ptrs(servcmd)
641 char *servcmd;
642 {
643         char buf[SIZ];
644         int nummsgs;
645
646         nummsgs = 0;
647         serv_puts(servcmd);
648         serv_gets(buf);
649         if (buf[0] != '1') {
650                 wprintf("<EM>%s</EM><BR>\n", &buf[4]);
651                 return (nummsgs);
652         }
653         while (serv_gets(buf), strcmp(buf, "000")) {
654                 WC->msgarr[nummsgs] = atol(buf);
655                 ++nummsgs;
656         }
657         return (nummsgs);
658 }
659
660
661 /*
662  * command loop for reading messages
663  */
664 void readloop(char *oper)
665 {
666         char cmd[SIZ];
667         char buf[SIZ];
668         int a, b, i;
669         int nummsgs;
670         long startmsg;
671         int maxmsgs;
672         int num_displayed = 0;
673         int is_summary = 0;
674         int is_addressbook = 0;
675         int remaining_messages;
676         int lo, hi;
677         int lowest_displayed = (-1);
678         int highest_displayed = 0;
679         long pn_previous = 0L;
680         long pn_current = 0L;
681         long pn_next = 0L;
682         int bg = 0;
683         char alpha = 0;
684
685         startmsg = atol(bstr("startmsg"));
686         maxmsgs = atoi(bstr("maxmsgs"));
687         is_summary = atoi(bstr("summary"));
688         if (maxmsgs == 0) maxmsgs = 20;
689
690         output_headers(1);
691
692         if (!strcmp(oper, "readnew")) {
693                 strcpy(cmd, "MSGS NEW");
694         } else if (!strcmp(oper, "readold")) {
695                 strcpy(cmd, "MSGS OLD");
696         } else {
697                 strcpy(cmd, "MSGS ALL");
698         }
699
700         /* FIXME put in the correct constant #defs */
701         if ((WC->wc_view == 1) && (maxmsgs > 1)) {
702                 is_summary = 1;
703                 strcpy(cmd, "MSGS ALL");
704                 maxmsgs = 32767;
705         }
706         if ((WC->wc_view == 2) && (maxmsgs > 1)) {
707                 is_addressbook = 1;
708                 strcpy(cmd, "MSGS ALL");
709                 maxmsgs = 32767;
710                 if (bstr("alpha") == NULL) {
711                         alpha = 'A';
712                 }
713                 else {
714                         strcpy(buf, bstr("alpha"));
715                         alpha = buf[0];
716                 }
717
718                 for (i='A'; i<='Z'; ++i) {
719                         if (i == alpha) wprintf("<FONT SIZE=+2>"
720                                                 "%c</FONT>\n", i);
721                         else {
722                                 wprintf("<A HREF=\"/readfwd?alpha=%c\">"
723                                         "%c</A>\n", i, i);
724                         }
725                         wprintf("&nbsp;");
726                 }
727                 if (!isalpha(alpha)) wprintf("<FONT SIZE=+2>(other)</FONT>\n");
728                 else wprintf("<A HREF=\"/readfwd?alpha=1\">(other)</A>\n");
729                 wprintf("<HR width=100%%>\n");
730         }
731
732         nummsgs = load_msg_ptrs(cmd);
733         if (nummsgs == 0) {
734                 if (!strcmp(oper, "readnew")) {
735                         wprintf("<EM>No new messages in this room.</EM>\n");
736                 } else if (!strcmp(oper, "readold")) {
737                         wprintf("<EM>No old messages in this room.</EM>\n");
738                 } else {
739                         wprintf("<EM>This room is empty.</EM>\n");
740                 }
741                 goto DONE;
742         }
743
744         if (startmsg == 0L) startmsg = WC->msgarr[0];
745         remaining_messages = 0;
746
747         for (a = 0; a < nummsgs; ++a) {
748                 if (WC->msgarr[a] >= startmsg) {
749                         ++remaining_messages;
750                 }
751         }
752
753         if (is_summary) {
754                 wprintf("<FORM METHOD=\"POST\" ACTION=\"/do_stuff_to_msgs\">\n"
755                         "<TABLE border=0 cellspacing=0 "
756                         "cellpadding=0 width=100%%>\n"
757                         "<TR>"
758                         "<TD><I>Subject</I></TD>"
759                         "<TD><I>Sender</I></TD>"
760                         "<TD><I>Date</I></TD>"
761                         "<TD></TD>"
762                         "</TR>\n"
763                 );
764         }
765
766         if (is_addressbook) {
767                 wprintf("<TABLE border=0 cellspacing=0 "
768                         "cellpadding=0 width=100%%>\n"
769                 );
770         }
771
772         for (a = 0; a < nummsgs; ++a) {
773                 if ((WC->msgarr[a] >= startmsg) && (num_displayed < maxmsgs)) {
774
775                         /* Learn which msgs "Prev" & "Next" buttons go to */
776                         pn_current = WC->msgarr[a];
777                         if (a > 0) pn_previous = WC->msgarr[a-1];
778                         if (a < (nummsgs-1)) pn_next = WC->msgarr[a+1];
779
780                         /* If a tabular view, set up the line */
781                         if ( (is_summary) || (is_addressbook) ) {
782                                 bg = 1 - bg;
783                                 wprintf("<TR BGCOLOR=%s>",
784                                         (bg ? "DDDDDD" : "FFFFFF")
785                                 );
786                         }
787
788                         /* Display the message */
789                         if (is_summary) {
790                                 summarize_message(WC->msgarr[a]);
791                         }
792                         else if (is_addressbook) {
793                                 display_addressbook(WC->msgarr[a], alpha);
794                         }
795                         else {
796                                 read_message(WC->msgarr[a]);
797                         }
798
799                         /* If a tabular view, finish the line */
800                         if ( (is_summary) || (is_addressbook) ) {
801                                 wprintf("</TR>\n");
802                         }
803
804                         if (lowest_displayed < 0) lowest_displayed = a;
805                         highest_displayed = a;
806
807                         ++num_displayed;
808                         --remaining_messages;
809                 }
810         }
811
812         if (is_summary) {
813                 wprintf("</TABLE>\n");
814         }
815
816         if (is_addressbook) {
817                 wprintf("</TABLE>\n");
818         }
819
820         /* Bump these because although we're thinking in zero base, the user
821          * is a drooling idiot and is thinking in one base.
822          */
823         ++lowest_displayed;
824         ++highest_displayed;
825
826         /* If we're only looking at one message, do a prev/next thing */
827         if (num_displayed == 1) {
828
829                 wprintf("<CENTER>"
830                         "<TABLE BORDER=0 WIDTH=100%% BGCOLOR=DDDDDD><TR><TD>"
831                         "Reading #%d of %d messages.</TD>\n"
832                         "<TD ALIGN=RIGHT><FONT SIZE=+1>",
833                         lowest_displayed, nummsgs);
834
835                 if (is_summary) {
836                         wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" "
837                                 "VALUE=\"Delete selected\">\n");
838                 }
839
840                 if (pn_previous > 0L) {
841                         wprintf("<A HREF=\"/%s"
842                                 "?startmsg=%ld"
843                                 "&maxmsgs=1"
844                                 "&summary=0\">"
845                                 "Previous</A> \n",
846                                         oper,
847                                         pn_previous );
848                 }
849
850                 if (pn_next > 0L) {
851                         wprintf("<A HREF=\"/%s"
852                                 "?startmsg=%ld"
853                                 "&maxmsgs=1"
854                                 "&summary=0\">"
855                                 "Next</A> \n",
856                                         oper,
857                                         pn_next );
858                 }
859
860                 wprintf("<A HREF=\"/%s?startmsg=%ld"
861                         "&maxmsgs=999999&summary=1\">"
862                         "Summary"
863                         "</A>",
864                         oper,
865                         WC->msgarr[0]);
866
867                 wprintf("</TD></TR></TABLE></CENTER>\n");
868         }
869
870
871         /*
872          * If we're not currently looking at ALL requested
873          * messages, then display the selector bar
874          */
875         if (num_displayed > 1) {
876                 wprintf("<CENTER>"
877                         "<TABLE BORDER=0 WIDTH=100%% BGCOLOR=DDDDDD><TR><TD>"
878                         "Reading #%d-%d of %d messages.</TD>\n"
879                         "<TD ALIGN=RIGHT><FONT SIZE=+1>",
880                         lowest_displayed, highest_displayed, nummsgs);
881
882                 if (is_summary) {
883                         wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" "
884                                 "VALUE=\"Delete selected\">\n");
885                 }
886
887
888                 for (b=0; b<nummsgs; b = b + maxmsgs) {
889                 lo = b+1;
890                 hi = b+maxmsgs+1;
891                 if (hi > nummsgs) hi = nummsgs;
892                         if (WC->msgarr[b] != startmsg) {
893                                 wprintf("<A HREF=\"/%s"
894                                         "?startmsg=%ld"
895                                         "&maxmsgs=%d"
896                                         "&summary=%d\">"
897                                         "%d-%d</A> \n",
898                                                 oper,
899                                                 WC->msgarr[b],
900                                                 maxmsgs,
901                                                 is_summary,
902                                                 lo, hi);
903                         }
904                         else {
905                                 wprintf("%d-%d \n", lo, hi);
906                         }
907
908                 }
909                 wprintf("<A HREF=\"/%s?startmsg=%ld"
910                         "&maxmsgs=999999&summary=%d\">"
911                         "ALL"
912                         "</A> ",
913                         oper,
914                         WC->msgarr[0], is_summary);
915
916                 wprintf("<A HREF=\"/%s?startmsg=%ld"
917                         "&maxmsgs=999999&summary=1\">"
918                         "Summary"
919                         "</A>",
920                         oper,
921                         WC->msgarr[0]);
922
923                 wprintf("</TD></TR></TABLE></CENTER>\n");
924         }
925         if (is_summary) wprintf("</FORM>\n");
926
927 DONE:   wDumpContent(1);
928 }
929
930
931
932
933 /*
934  * Post message (or don't post message)
935  *
936  * Note regarding the "dont_post" variable:
937  * A random value (actually, it's just a timestamp) is inserted as a hidden
938  * field called "postseq" when the display_enter page is generated.  This
939  * value is checked when posting, using the static variable dont_post.  If a
940  * user attempts to post twice using the same dont_post value, the message is
941  * discarded.  This prevents the accidental double-saving of the same message
942  * if the user happens to click the browser "back" button.
943  */
944 void post_message(void)
945 {
946         char buf[SIZ];
947         static long dont_post = (-1L);
948
949         output_headers(1);
950
951         wprintf("<FONT FACE=\"Arial,Helvetica,sans-serif\">");
952         strcpy(buf, bstr("sc"));
953         if (strcasecmp(buf, "Save message")) {
954                 wprintf("Cancelled.  Message was not posted.<BR>\n");
955         } else if (atol(bstr("postseq")) == dont_post) {
956                 wprintf("Automatically cancelled because you have already "
957                         "saved this message.<BR>\n");
958         } else {
959                 sprintf(buf, "ENT0 1|%s|0|4|%s",
960                         bstr("recp"),
961                         bstr("subject") );
962                 serv_puts(buf);
963                 serv_gets(buf);
964                 if (buf[0] == '4') {
965                         serv_puts("Content-type: text/html");
966                         serv_puts("");
967                         text_to_server(bstr("msgtext"), 1);
968                         serv_puts("000");
969                         wprintf("Message has been posted.<BR>\n");
970                         dont_post = atol(bstr("postseq"));
971                 } else {
972                         wprintf("<EM>%s</EM><BR>\n", &buf[4]);
973                 }
974         }
975
976         wDumpContent(1);
977 }
978
979
980
981
982 /*
983  * display the message entry screen
984  */
985 void display_enter(void)
986 {
987         char buf[SIZ];
988         long now;
989         struct tm *tm;
990
991         output_headers(1);
992
993         wprintf("<FONT FACE=\"Arial,Helvetica,sans-serif\">");
994
995         sprintf(buf, "ENT0 0|%s|0|0", bstr("recp"));
996         serv_puts(buf);
997         serv_gets(buf);
998
999         if (!strncmp(buf, "570", 3)) {
1000                 if (strlen(bstr("recp")) > 0) {
1001                         wprintf("<EM>%s</EM><BR>\n", &buf[4]);
1002                 }
1003                 do_template("prompt_for_recipient");
1004                 goto DONE;
1005         }
1006         if (buf[0] != '2') {
1007                 wprintf("<EM>%s</EM><BR>\n", &buf[4]);
1008                 goto DONE;
1009         }
1010
1011         now = time(NULL);
1012         tm = (struct tm *) localtime(&now);
1013         strcpy(buf, (char *) asctime(tm));
1014         buf[strlen(buf) - 1] = 0;
1015         strcpy(&buf[16], &buf[19]);
1016         wprintf("</CENTER><FONT COLOR=\"440000\">\n"
1017                 "<IMG SRC=\"static/enter.gif\" ALIGN=MIDDLE ALT=\" \" "
1018                 "onLoad=\"document.enterform.msgtext.focus();\" >");
1019         wprintf("<B> %s ", &buf[4]);
1020         wprintf("from %s ", WC->wc_username);
1021         if (strlen(bstr("recp")) > 0)
1022                 wprintf("to %s ", bstr("recp"));
1023         wprintf("in %s&gt; ", WC->wc_roomname);
1024         wprintf("</B></FONT><BR><CENTER>\n");
1025
1026         wprintf("<FORM METHOD=\"POST\" ACTION=\"/post\" "
1027                 "NAME=\"enterform\">\n");
1028         wprintf("<INPUT TYPE=\"hidden\" NAME=\"recp\" VALUE=\"%s\">\n",
1029                 bstr("recp"));
1030         wprintf("<INPUT TYPE=\"hidden\" NAME=\"postseq\" VALUE=\"%ld\">\n",
1031                 now);
1032         wprintf("<FONT SIZE=-1>Subject (optional):</FONT>"
1033                 "<INPUT TYPE=\"text\" NAME=\"subject\" MAXLENGTH=70>"
1034                 "&nbsp;&nbsp;&nbsp;"
1035                 "<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Save message\">"
1036                 "<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\"><BR>\n");
1037
1038         wprintf("<TEXTAREA NAME=\"msgtext\" wrap=soft ROWS=30 COLS=80 "
1039                 "WIDTH=80></TEXTAREA><P>\n");
1040
1041         wprintf("</FORM></CENTER>\n");
1042 DONE:   wDumpContent(1);
1043         wprintf("</FONT>");
1044 }
1045
1046
1047
1048
1049
1050
1051
1052
1053 void delete_msg(void)
1054 {
1055         long msgid;
1056         char buf[SIZ];
1057
1058         msgid = atol(bstr("msgid"));
1059
1060         output_headers(1);
1061
1062         sprintf(buf, "DELE %ld", msgid);
1063         serv_puts(buf);
1064         serv_gets(buf);
1065         wprintf("<EM>%s</EM><BR>\n", &buf[4]);
1066
1067         wDumpContent(1);
1068 }
1069
1070
1071
1072
1073 /*
1074  * Confirm move of a message
1075  */
1076 void confirm_move_msg(void)
1077 {
1078         long msgid;
1079         char buf[SIZ];
1080         char targ[SIZ];
1081
1082         msgid = atol(bstr("msgid"));
1083
1084         output_headers(1);
1085
1086         wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770000><TR><TD>");
1087         wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
1088         wprintf("<B>Confirm move of message</B>\n");
1089         wprintf("</FONT></TD></TR></TABLE>\n");
1090
1091         wprintf("<CENTER>");
1092
1093         wprintf("Please select the room to which you would like this message moved:<BR>\n");
1094
1095         wprintf("<FORM METHOD=\"POST\" ACTION=\"/move_msg\">\n");
1096         wprintf("<INPUT TYPE=\"hidden\" NAME=\"msgid\" VALUE=\"%s\">\n",
1097                 bstr("msgid"));
1098
1099
1100         wprintf("<SELECT NAME=\"target_room\" SIZE=5>\n");
1101         serv_puts("LKRA");
1102         serv_gets(buf);
1103         if (buf[0] == '1') {
1104                 while (serv_gets(buf), strcmp(buf, "000")) {
1105                         extract(targ, buf, 0);
1106                         wprintf("<OPTION>");
1107                         escputs(targ);
1108                         wprintf("\n");
1109                 }
1110         }
1111         wprintf("</SELECT>\n");
1112         wprintf("<BR>\n");
1113
1114         wprintf("<INPUT TYPE=\"submit\" NAME=\"yesno\" VALUE=\"Move\">");
1115         wprintf("<INPUT TYPE=\"submit\" NAME=\"yesno\" VALUE=\"Cancel\">");
1116         wprintf("</FORM></CENTER>\n");
1117
1118         wprintf("</CENTER>\n");
1119         wDumpContent(1);
1120 }
1121
1122
1123
1124 void move_msg(void)
1125 {
1126         long msgid;
1127         char buf[SIZ];
1128
1129         msgid = atol(bstr("msgid"));
1130
1131         output_headers(1);
1132
1133         if (!strcasecmp(bstr("yesno"), "Move")) {
1134                 sprintf(buf, "MOVE %ld|%s", msgid, bstr("target_room"));
1135                 serv_puts(buf);
1136                 serv_gets(buf);
1137                 wprintf("<EM>%s</EM><BR>\n", &buf[4]);
1138         } else {
1139                 wprintf("<EM>Message not moved.</EM><BR>\n");
1140         }
1141
1142         wDumpContent(1);
1143 }
1144
1145
1146
1147 void do_stuff_to_msgs(void) {
1148         char buf[SIZ];
1149         char sc[SIZ];
1150
1151         struct stuff_t {
1152                 struct stuff_t *next;
1153                 long msgnum;
1154         };
1155
1156         struct stuff_t *stuff = NULL;
1157         struct stuff_t *ptr;
1158
1159
1160         serv_puts("MSGS ALL");
1161         serv_gets(buf);
1162
1163         if (buf[0] == '1') while (serv_gets(buf), strcmp(buf, "000")) {
1164                 ptr = malloc(sizeof(struct stuff_t));
1165                 ptr->msgnum = atol(buf);
1166                 ptr->next = stuff;
1167                 stuff = ptr;
1168         }
1169
1170         strcpy(sc, bstr("sc"));
1171
1172         while (stuff != NULL) {
1173
1174                 sprintf(buf, "msg_%ld", stuff->msgnum);
1175                 if (!strcasecmp(bstr(buf), "yes")) {
1176
1177                         if (!strcasecmp(sc, "Delete selected")) {
1178                                 serv_printf("DELE %ld", stuff->msgnum);
1179                                 serv_gets(buf);
1180                         }
1181
1182                 }
1183
1184                 ptr = stuff->next;
1185                 free(stuff);
1186                 stuff = ptr;
1187         }
1188
1189         readloop("readfwd");
1190 }