* webcit.c: fixed a string bug that caused the whole system to not work
[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 /* Address book entry (keep it short and sweet, it's just a quickie lookup
32  * which we can use to get to the real meat and bones later)
33  */
34 struct addrbookent {
35         char ab_name[64];
36         long ab_msgnum;
37 };
38
39
40 /*
41  * Look for URL's embedded in a buffer and make them linkable.  We use a
42  * target window in order to keep the BBS session in its own window.
43  */
44 void url(buf)
45 char buf[];
46 {
47
48         int pos;
49         int start, end;
50         char ench;
51         char urlbuf[SIZ];
52         char outbuf[1024];
53
54         start = (-1);
55         end = strlen(buf);
56         ench = 0;
57
58         for (pos = 0; pos < strlen(buf); ++pos) {
59                 if (!strncasecmp(&buf[pos], "http://", 7))
60                         start = pos;
61                 if (!strncasecmp(&buf[pos], "ftp://", 6))
62                         start = pos;
63         }
64
65         if (start < 0)
66                 return;
67
68         if ((start > 0) && (buf[start - 1] == '<'))
69                 ench = '>';
70         if ((start > 0) && (buf[start - 1] == '['))
71                 ench = ']';
72         if ((start > 0) && (buf[start - 1] == '('))
73                 ench = ')';
74         if ((start > 0) && (buf[start - 1] == '{'))
75                 ench = '}';
76
77         for (pos = strlen(buf); pos > start; --pos) {
78                 if ((buf[pos] == ' ') || (buf[pos] == ench))
79                         end = pos;
80         }
81
82         strncpy(urlbuf, &buf[start], end - start);
83         urlbuf[end - start] = 0;
84
85         strncpy(outbuf, buf, start);
86         sprintf(&outbuf[start], "%cA HREF=%c%s%c TARGET=%c%s%c%c%s%c/A%c",
87                 LB, QU, urlbuf, QU, QU, TARGET, QU, RB, urlbuf, LB, RB);
88         strcat(outbuf, &buf[end]);
89         if ( strlen(outbuf) < 250 )
90                 strcpy(buf, outbuf);
91 }
92
93
94 /*
95  * Turn a vCard "n" (name) field into something displayable.
96  */
97 void vcard_n_prettyize(char *name)
98 {
99         char *original_name;
100         int i;
101
102         original_name = strdup(name);
103         for (i=0; i<5; ++i) {
104                 if (strlen(original_name) > 0) {
105                         if (original_name[strlen(original_name)-1] == ' ') {
106                                 original_name[strlen(original_name)-1] = 0;
107                         }
108                         if (original_name[strlen(original_name)-1] == ';') {
109                                 original_name[strlen(original_name)-1] = 0;
110                         }
111                 }
112         }
113         strcpy(name, "");
114         for (i=0; i<strlen(original_name); ++i) {
115                 if (original_name[i] == ';') {
116                         strcat(name, ", ");
117                 }
118                 else {
119                         name[strlen(name)+1] = 0;
120                         name[strlen(name)] = original_name[i];
121                 }
122         }
123         free(original_name);
124 }
125
126
127
128
129 /* display_vcard() calls this after parsing the textual vCard into
130  * our 'struct vCard' data object.
131  * This gets called instead of display_parsed_vcard() if we are only looking
132  * to extract the person's name instead of displaying the card.
133  */
134 void fetchname_parsed_vcard(struct vCard *v, char *storename) {
135         char *name;
136
137         strcpy(storename, "");
138
139         name = vcard_get_prop(v, "n", 1, 0, 0);
140         if (name != NULL) {
141                 strcpy(storename, name);
142                 /* vcard_n_prettyize(storename); */
143         }
144
145 }
146
147
148
149 /* display_vcard() calls this after parsing the textual vCard into
150  * our 'struct vCard' data object.
151  *
152  * Set 'full' to nonzero to display the full card, otherwise it will only
153  * show a summary line.
154  *
155  * This code is a bit ugly, so perhaps an explanation is due: we do this
156  * in two passes through the vCard fields.  On the first pass, we process
157  * fields we understand, and then render them in a pretty fashion at the
158  * end.  Then we make a second pass, outputting all the fields we don't
159  * understand in a simple two-column name/value format.
160  */
161 void display_parsed_vcard(struct vCard *v, int full) {
162         int i, j;
163         char buf[SIZ];
164         char *name;
165         int is_qp = 0;
166         int is_b64 = 0;
167         char *thisname, *thisvalue;
168         char firsttoken[SIZ];
169         int pass;
170
171         char displayname[SIZ];
172         char title[SIZ];
173         char org[SIZ];
174         char phone[SIZ];
175         char mailto[SIZ];
176
177         strcpy(displayname, "");
178         strcpy(phone, "");
179         strcpy(mailto, "");
180         strcpy(title, "");
181         strcpy(org, "");
182
183         if (!full) {
184                 wprintf("<TD>");
185                 name = vcard_get_prop(v, "fn", 1, 0, 0);
186                 if (name != NULL) {
187                         escputs(name);
188                 }
189                 else if (name = vcard_get_prop(v, "n", 1, 0, 0), name != NULL) {
190                         strcpy(displayname, name);
191                         vcard_n_prettyize(displayname);
192                         escputs(displayname);
193                 }
194                 else {
195                         wprintf("&nbsp;");
196                 }
197                 wprintf("</TD>");
198                 return;
199         }
200
201         wprintf("<div align=center><table bgcolor=#aaaaaa width=50%%>");
202         for (pass=1; pass<=2; ++pass) {
203
204                 if (v->numprops) for (i=0; i<(v->numprops); ++i) {
205
206                         thisname = strdup(v->prop[i].name);
207                         extract_token(firsttoken, thisname, 0, ';', sizeof firsttoken);
208         
209                         for (j=0; j<num_tokens(thisname, ';'); ++j) {
210                                 extract_token(buf, thisname, j, ';', sizeof buf);
211                                 if (!strcasecmp(buf, "encoding=quoted-printable")) {
212                                         is_qp = 1;
213                                         remove_token(thisname, j, ';');
214                                 }
215                                 if (!strcasecmp(buf, "encoding=base64")) {
216                                         is_b64 = 1;
217                                         remove_token(thisname, j, ';');
218                                 }
219                         }
220         
221                         if (is_qp) {
222                                 thisvalue = malloc(strlen(v->prop[i].value) + 50);
223                                 j = CtdlDecodeQuotedPrintable(
224                                         thisvalue, v->prop[i].value,
225                                         strlen(v->prop[i].value) );
226                                 thisvalue[j] = 0;
227                         }
228                         else if (is_b64) {
229                                 thisvalue = malloc(strlen(v->prop[i].value) + 50);
230                                 CtdlDecodeBase64(
231                                         thisvalue, v->prop[i].value,
232                                         strlen(v->prop[i].value) );
233                         }
234                         else {
235                                 thisvalue = strdup(v->prop[i].value);
236                         }
237         
238                         /*** Various fields we may encounter ***/
239         
240                         /* N is name, but only if there's no FN already there */
241                         if (!strcasecmp(firsttoken, "n")) {
242                                 if (strlen(displayname) == 0) {
243                                         strcpy(displayname, thisvalue);
244                                         vcard_n_prettyize(displayname);
245                                 }
246                         }
247         
248                         /* FN (full name) is a true 'display name' field */
249                         else if (!strcasecmp(firsttoken, "fn")) {
250                                 strcpy(displayname, thisvalue);
251                         }
252
253                         /* title */
254                         else if (!strcasecmp(firsttoken, "title")) {
255                                 strcpy(title, thisvalue);
256                         }
257         
258                         /* organization */
259                         else if (!strcasecmp(firsttoken, "org")) {
260                                 strcpy(org, thisvalue);
261                         }
262         
263                         else if (!strcasecmp(firsttoken, "email")) {
264                                 if (strlen(mailto) > 0) strcat(mailto, "<br />");
265                                 strcat(mailto,
266                                         "<A HREF=\"/display_enter"
267                                         "?force_room=_MAIL_&recp=");
268                                 urlesc(&mailto[strlen(mailto)], thisvalue);
269                                 strcat(mailto, "\">");
270                                 urlesc(&mailto[strlen(mailto)], thisvalue);
271                                 strcat(mailto, "</A>");
272                         }
273                         else if (!strcasecmp(firsttoken, "tel")) {
274                                 if (strlen(phone) > 0) strcat(phone, "<br />");
275                                 strcat(phone, thisvalue);
276                                 for (j=0; j<num_tokens(thisname, ';'); ++j) {
277                                         extract_token(buf, thisname, j, ';', sizeof buf);
278                                         if (!strcasecmp(buf, "tel"))
279                                                 strcat(phone, "");
280                                         else if (!strcasecmp(buf, "work"))
281                                                 strcat(phone, " (work)");
282                                         else if (!strcasecmp(buf, "home"))
283                                                 strcat(phone, " (home)");
284                                         else if (!strcasecmp(buf, "cell"))
285                                                 strcat(phone, " (cell)");
286                                         else {
287                                                 strcat(phone, " (");
288                                                 strcat(phone, buf);
289                                                 strcat(phone, ")");
290                                         }
291                                 }
292                         }
293                         else if (!strcasecmp(firsttoken, "adr")) {
294                                 if (pass == 2) {
295                                         wprintf("<TR><TD>Address:</TD><TD>");
296                                         for (j=0; j<num_tokens(thisvalue, ';'); ++j) {
297                                                 extract_token(buf, thisvalue, j, ';', sizeof buf);
298                                                 if (strlen(buf) > 0) {
299                                                         escputs(buf);
300                                                         if (j<3) wprintf("<br />");
301                                                         else wprintf(" ");
302                                                 }
303                                         }
304                                         wprintf("</TD></TR>\n");
305                                 }
306                         }
307                         else if (!strcasecmp(firsttoken, "version")) {
308                                 /* ignore */
309                         }
310                         else if (!strcasecmp(firsttoken, "rev")) {
311                                 /* ignore */
312                         }
313                         else if (!strcasecmp(firsttoken, "label")) {
314                                 /* ignore */
315                         }
316                         else {
317
318                                 /*** Don't show extra fields.  They're ugly.
319                                 if (pass == 2) {
320                                         wprintf("<TR><TD>");
321                                         escputs(thisname);
322                                         wprintf("</TD><TD>");
323                                         escputs(thisvalue);
324                                         wprintf("</TD></TR>\n");
325                                 }
326                                 ***/
327                         }
328         
329                         free(thisname);
330                         free(thisvalue);
331                 }
332         
333                 if (pass == 1) {
334                         wprintf("<TR BGCOLOR=\"#AAAAAA\">"
335                         "<TD COLSPAN=2 BGCOLOR=\"#FFFFFF\">"
336                         "<IMG ALIGN=CENTER SRC=\"/static/vcard.gif\">"
337                         "<FONT SIZE=+1><B>");
338                         escputs(displayname);
339                         wprintf("</B></FONT>");
340                         if (strlen(title) > 0) {
341                                 wprintf("<div align=right>");
342                                 escputs(title);
343                                 wprintf("</div>");
344                         }
345                         if (strlen(org) > 0) {
346                                 wprintf("<div align=right>");
347                                 escputs(org);
348                                 wprintf("</div>");
349                         }
350                         wprintf("</TD></TR>\n");
351                 
352                         if (strlen(phone) > 0)
353                                 wprintf("<TR><TD>Telephone:</TD><TD>%s</TD></TR>\n", phone);
354                         if (strlen(mailto) > 0)
355                                 wprintf("<TR><TD>E-mail:</TD><TD>%s</TD></TR>\n", mailto);
356                 }
357
358         }
359
360         wprintf("</table></div>\n");
361 }
362
363
364
365 /*
366  * Display a textual vCard
367  * (Converts to a vCard object and then calls the actual display function)
368  * Set 'full' to nonzero to display the whole card instead of a one-liner.
369  * Or, if "storename" is non-NULL, just store the person's name in that
370  * buffer instead of displaying the card at all.
371  */
372 void display_vcard(char *vcard_source, char alpha, int full, char *storename) {
373         struct vCard *v;
374         char *name;
375         char buf[SIZ];
376         char this_alpha = 0;
377
378         v = vcard_load(vcard_source);
379         if (v == NULL) return;
380
381         name = vcard_get_prop(v, "n", 1, 0, 0);
382         if (name != NULL) {
383                 strcpy(buf, name);
384                 this_alpha = buf[0];
385         }
386
387         if (storename != NULL) {
388                 fetchname_parsed_vcard(v, storename);
389         }
390         else if (       (alpha == 0)
391                         || ((isalpha(alpha)) && (tolower(alpha) == tolower(this_alpha)) )
392                         || ((!isalpha(alpha)) && (!isalpha(this_alpha)))
393                 ) {
394                 display_parsed_vcard(v, full);
395         }
396
397         vcard_free(v);
398 }
399
400
401
402
403 /*
404  * I wanna SEE that message!
405  */
406 void read_message(long msgnum) {
407         char buf[SIZ];
408         char mime_partnum[SIZ];
409         char mime_filename[SIZ];
410         char mime_content_type[SIZ];
411         char mime_disposition[SIZ];
412         int mime_length;
413         char mime_http[SIZ];
414         char m_subject[SIZ];
415         char from[SIZ];
416         char node[SIZ];
417         char rfca[SIZ];
418         char reply_to[512];
419         char now[SIZ];
420         int format_type = 0;
421         int nhdr = 0;
422         int bq = 0;
423         char vcard_partnum[SIZ];
424         char cal_partnum[SIZ];
425         char *part_source = NULL;
426
427         strcpy(from, "");
428         strcpy(node, "");
429         strcpy(rfca, "");
430         strcpy(reply_to, "");
431         strcpy(vcard_partnum, "");
432         strcpy(cal_partnum, "");
433         strcpy(mime_http, "");
434
435         serv_printf("MSG4 %ld", msgnum);
436         serv_getln(buf, sizeof buf);
437         if (buf[0] != '1') {
438                 wprintf("<STRONG>ERROR:</STRONG> %s<br />\n", &buf[4]);
439                 return;
440         }
441
442         /* begin everythingamundo table */
443         wprintf("<div id=\"fix_scrollbar_bug\">\n");
444         wprintf("<table width=100%% border=1 cellspacing=0 "
445                 "cellpadding=0><TR><TD>\n");
446
447         /* begin message header table */
448         wprintf("<TABLE WIDTH=100%% BORDER=0 CELLSPACING=0 "
449                 "CELLPADDING=1 BGCOLOR=\"#CCCCCC\"><TR><TD>\n");
450
451         wprintf("<SPAN CLASS=\"message_header\">");
452         strcpy(m_subject, "");
453
454         while (serv_getln(buf, sizeof buf), strcasecmp(buf, "text")) {
455                 if (!strcmp(buf, "000")) {
456                         wprintf("<I>unexpected end of message</I><br /><br />\n");
457                         wprintf("</SPAN>\n");
458                         return;
459                 }
460                 if (!strncasecmp(buf, "nhdr=yes", 8))
461                         nhdr = 1;
462                 if (nhdr == 1)
463                         buf[0] = '_';
464                 if (!strncasecmp(buf, "type=", 5))
465                         format_type = atoi(&buf[5]);
466                 if (!strncasecmp(buf, "from=", 5)) {
467                         strcpy(from, &buf[5]);
468                         wprintf("from <A HREF=\"/showuser&who=");
469                         urlescputs(from);
470                         wprintf("\">");
471                         escputs(from);
472                         wprintf("</A> ");
473                 }
474                 if (!strncasecmp(buf, "subj=", 5))
475                         strcpy(m_subject, &buf[5]);
476                 if ((!strncasecmp(buf, "hnod=", 5))
477                     && (strcasecmp(&buf[5], serv_info.serv_humannode)))
478                         wprintf("(%s) ", &buf[5]);
479                 if ((!strncasecmp(buf, "room=", 5))
480                     && (strcasecmp(&buf[5], WC->wc_roomname))
481                     && (strlen(&buf[5])>0) )
482                         wprintf("in %s> ", &buf[5]);
483                 if (!strncasecmp(buf, "rfca=", 5)) {
484                         strcpy(rfca, &buf[5]);
485                         wprintf("&lt;");
486                         escputs(rfca);
487                         wprintf("&gt; ");
488                 }
489
490                 if (!strncasecmp(buf, "node=", 5)) {
491                         strcpy(node, &buf[5]);
492                         if ( ((WC->room_flags & QR_NETWORK)
493                         || ((strcasecmp(&buf[5], serv_info.serv_nodename)
494                         && (strcasecmp(&buf[5], serv_info.serv_fqdn)))))
495                         && (strlen(rfca)==0)
496                         ) {
497                                 wprintf("@%s ", &buf[5]);
498                         }
499                 }
500                 if (!strncasecmp(buf, "rcpt=", 5))
501                         wprintf("to %s ", &buf[5]);
502                 if (!strncasecmp(buf, "time=", 5)) {
503                         fmt_date(now, atol(&buf[5]), 0);
504                         wprintf("%s ", now);
505                 }
506
507                 if (!strncasecmp(buf, "part=", 5)) {
508                         extract_token(mime_filename, &buf[5], 1, '|', sizeof mime_filename);
509                         extract_token(mime_partnum, &buf[5], 2, '|', sizeof mime_partnum);
510                         extract_token(mime_disposition, &buf[5], 3, '|', sizeof mime_disposition);
511                         extract_token(mime_content_type, &buf[5], 4, '|', sizeof mime_content_type);
512                         mime_length = extract_int(&buf[5], 5);
513
514                         if (!strcasecmp(mime_disposition, "attachment")) {
515                                 snprintf(&mime_http[strlen(mime_http)],
516                                         (sizeof(mime_http) - strlen(mime_http) - 1),
517                                         "<A HREF=\"/output_mimepart?"
518                                         "msgnum=%ld&partnum=%s\" "
519                                         "TARGET=\"wc.%ld.%s\">"
520                                         "<IMG SRC=\"/static/attachment.gif\" "
521                                         "BORDER=0 ALIGN=MIDDLE>\n"
522                                         "Part %s: %s (%s, %d bytes)</A><br />\n",
523                                         msgnum, mime_partnum,
524                                         msgnum, mime_partnum,
525                                         mime_partnum, mime_filename,
526                                         mime_content_type, mime_length);
527                         }
528
529                         if ((!strcasecmp(mime_disposition, "inline"))
530                            && (!strncasecmp(mime_content_type, "image/", 6)) ){
531                                 snprintf(&mime_http[strlen(mime_http)],
532                                         (sizeof(mime_http) - strlen(mime_http) - 1),
533                                         "<IMG SRC=\"/output_mimepart?"
534                                         "msgnum=%ld&partnum=%s\">",
535                                         msgnum, mime_partnum);
536                         }
537
538                         /*** begin handler prep ***/
539                         if (!strcasecmp(mime_content_type, "text/x-vcard")) {
540                                 strcpy(vcard_partnum, mime_partnum);
541                         }
542
543                         if (!strcasecmp(mime_content_type, "text/calendar")) {
544                                 strcpy(cal_partnum, mime_partnum);
545                         }
546
547                         /*** end handler prep ***/
548
549                 }
550
551         }
552
553         /* Generate a reply-to address */
554         if (strlen(rfca) > 0) {
555                 strcpy(reply_to, rfca);
556         }
557         else {
558                 if ( (strlen(node) > 0)
559                    && (strcasecmp(node, serv_info.serv_nodename))
560                    && (strcasecmp(node, serv_info.serv_humannode)) ) {
561                         snprintf(reply_to, sizeof(reply_to), "%s @ %s",
562                                 from, node);
563                 }
564                 else {
565                         snprintf(reply_to, sizeof(reply_to), "%s", from);
566                 }
567         }
568
569         if (nhdr == 1) {
570                 wprintf("****");
571         }
572
573         wprintf("</SPAN>");
574         if (strlen(m_subject) > 0) {
575                 wprintf("<br />"
576                         "<SPAN CLASS=\"message_subject\">"
577                         "Subject: %s"
578                         "</SPAN>", m_subject
579                 );
580         }
581         wprintf("</TD>\n");
582
583         /* start msg buttons */
584         wprintf("<TD ALIGN=RIGHT>\n");
585
586         /* Reply */
587         wprintf("<a href=\"/display_enter?recp=");
588         urlescputs(reply_to);
589         wprintf("&subject=");
590         if (strncasecmp(m_subject, "Re:", 3)) wprintf("Re:%20");
591         urlescputs(m_subject);
592         wprintf("\">[Reply]</a> ");
593
594         if (WC->is_room_aide)  {
595         
596                 /* Move */
597                 wprintf("<a href=\"/confirm_move_msg?msgid=%ld\">[Move]</a> ",
598                         msgnum);
599
600                 /* Delete */
601                 wprintf("<a href=\"/delete_msg?msgid=%ld\" "
602                         "onClick=\"return confirm('Delete this message?');\">"
603                         "[Delete]</a>", msgnum);
604                         
605         }
606
607         wprintf("</TD></TR></TABLE>\n");
608
609         /* Begin body */
610         wprintf("<TABLE BORDER=0 WIDTH=100%% BGCOLOR=#FFFFFF "
611                 "CELLPADDING=1 CELLSPACING=0><TR><TD>");
612
613         /* 
614          * Learn the content type
615          */
616         strcpy(mime_content_type, "text/plain");
617         while (serv_getln(buf, sizeof buf), (strlen(buf) > 0)) {
618                 if (!strcmp(buf, "000")) {
619                         wprintf("<I>unexpected end of message</I><br /><br />\n");
620                         goto ENDBODY;
621                 }
622                 if (!strncasecmp(buf, "Content-type: ", 14)) {
623                         safestrncpy(mime_content_type, &buf[14],
624                                 sizeof(mime_content_type));
625                 }
626         }
627
628         /* Messages in legacy Citadel variformat get handled thusly... */
629         if (!strcasecmp(mime_content_type, "text/x-citadel-variformat")) {
630                 fmout(NULL, "JUSTIFY");
631         }
632
633         /* Boring old 80-column fixed format text gets handled this way... */
634         else if (!strcasecmp(mime_content_type, "text/plain")) {
635                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
636                         if (buf[strlen(buf)-1] == '\n') buf[strlen(buf)-1] = 0;
637                         if (buf[strlen(buf)-1] == '\r') buf[strlen(buf)-1] = 0;
638                         while ((strlen(buf) > 0) && (isspace(buf[strlen(buf) - 1])))
639                                 buf[strlen(buf) - 1] = 0;
640                         if ((bq == 0) &&
641                         ((!strncmp(buf, ">", 1)) || (!strncmp(buf, " >", 2)) || (!strncmp(buf, " :-)", 4)))) {
642                                 wprintf("<BLOCKQUOTE>");
643                                 bq = 1;
644                         } else if ((bq == 1) &&
645                                 (strncmp(buf, ">", 1)) && (strncmp(buf, " >", 2)) && (strncmp(buf, " :-)", 4))) {
646                                 wprintf("</BLOCKQUOTE>");
647                                 bq = 0;
648                         }
649                         wprintf("<TT>");
650                         url(buf);
651                         escputs(buf);
652                         wprintf("</TT><br />\n");
653                 }
654                 wprintf("</I><br />");
655         }
656
657         else /* HTML is fun, but we've got to strip it first */
658         if (!strcasecmp(mime_content_type, "text/html")) {
659                 output_html();
660         }
661
662         /* Unknown weirdness */
663         else {
664                 wprintf("I don't know how to display %s<br />\n",
665                         mime_content_type);
666                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) { }
667         }
668
669
670         /* Afterwards, offer links to download attachments 'n' such */
671         if (strlen(mime_http) > 0) {
672                 wprintf("%s", mime_http);
673         }
674
675         /* Handler for vCard parts */
676         if (strlen(vcard_partnum) > 0) {
677                 part_source = load_mimepart(msgnum, vcard_partnum);
678                 if (part_source != NULL) {
679
680                         /* If it's my vCard I can edit it */
681                         if (    (!strcasecmp(WC->wc_roomname, USERCONFIGROOM))
682                                 || (!strcasecmp(&WC->wc_roomname[11], USERCONFIGROOM))
683                                 || (WC->wc_view == VIEW_ADDRESSBOOK)
684                         ) {
685                                 wprintf("<A HREF=\"/edit_vcard?"
686                                         "msgnum=%ld&partnum=%s\">",
687                                         msgnum, vcard_partnum);
688                                 wprintf("[edit]</A>");
689                         }
690
691                         /* In all cases, display the full card */
692                         display_vcard(part_source, 0, 1, NULL);
693                 }
694         }
695
696         /* Handler for calendar parts */
697         if (strlen(cal_partnum) > 0) {
698                 part_source = load_mimepart(msgnum, cal_partnum);
699                 if (part_source != NULL) {
700                         cal_process_attachment(part_source,
701                                                 msgnum, cal_partnum);
702                 }
703         }
704
705         if (part_source) {
706                 free(part_source);
707                 part_source = NULL;
708         }
709
710 ENDBODY:
711         wprintf("</TD></TR></TABLE>\n");
712
713         /* end everythingamundo table */
714         wprintf("</TD></TR></TABLE>\n");
715         wprintf("</div><br />\n");
716 }
717
718
719 void summarize_message(long msgnum, int is_new) {
720         char buf[SIZ];
721
722         struct {
723                 char date[SIZ];
724                 char from[SIZ];
725                 char to[SIZ];
726                 char subj[SIZ];
727                 int hasattachments;
728         } summ;
729
730         memset(&summ, 0, sizeof(summ));
731         strcpy(summ.subj, "(no subject)");
732
733         /* ask for headers only with no MIME */
734         sprintf(buf, "MSG0 %ld|3", msgnum);
735         serv_puts(buf);
736         serv_getln(buf, sizeof buf);
737         if (buf[0] != '1') return;
738
739         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
740                 if (!strncasecmp(buf, "from=", 5)) {
741                         strcpy(summ.from, &buf[5]);
742                 }
743                 if (!strncasecmp(buf, "subj=", 5)) {
744                         strcpy(summ.subj, &buf[5]);
745                 }
746                 /* if (!strncasecmp(buf, "rfca=", 5)) {
747                         strcat(summ.from, " <");
748                         strcat(summ.from, &buf[5]);
749                         strcat(summ.from, ">");
750                 } */
751
752                 if (!strncasecmp(buf, "node=", 5)) {
753                         if ( ((WC->room_flags & QR_NETWORK)
754                         || ((strcasecmp(&buf[5], serv_info.serv_nodename)
755                         && (strcasecmp(&buf[5], serv_info.serv_fqdn)))))
756                         ) {
757                                 strcat(summ.from, " @ ");
758                                 strcat(summ.from, &buf[5]);
759                         }
760                 }
761
762                 if (!strncasecmp(buf, "rcpt=", 5)) {
763                         strcpy(summ.to, &buf[5]);
764                 }
765
766                 if (!strncasecmp(buf, "time=", 5)) {
767                         fmt_date(summ.date, atol(&buf[5]), 1);  /* brief */
768                 }
769         }
770
771         wprintf("<TD>");
772         if (is_new) wprintf("<B>");
773         wprintf("<A HREF=\"/readfwd?startmsg=%ld"
774                 "&maxmsgs=1&summary=0\">", 
775                 msgnum);
776         escputs(summ.subj);
777         wprintf("</A>");
778         if (is_new) wprintf("</B>");
779         wprintf("</TD><TD>");
780         if (is_new) wprintf("<B>");
781         escputs(summ.from);
782         if (is_new) wprintf("</B>");
783         wprintf(" </TD><TD>");
784         if (is_new) wprintf("<B>");
785         escputs(summ.date);
786         if (is_new) wprintf("</B>");
787         wprintf(" </TD>");
788         wprintf("<TD>"
789                 "<INPUT TYPE=\"checkbox\" NAME=\"msg_%ld\" VALUE=\"yes\">"
790                 "</TD>\n");
791
792         return;
793 }
794
795
796
797 void display_addressbook(long msgnum, char alpha) {
798         char buf[SIZ];
799         char mime_partnum[SIZ];
800         char mime_filename[SIZ];
801         char mime_content_type[SIZ];
802         char mime_disposition[SIZ];
803         int mime_length;
804         char vcard_partnum[SIZ];
805         char *vcard_source = NULL;
806
807         struct {
808                 char date[SIZ];
809                 char from[SIZ];
810                 char to[SIZ];
811                 char subj[SIZ];
812                 int hasattachments;
813         } summ;
814
815         memset(&summ, 0, sizeof(summ));
816         strcpy(summ.subj, "(no subject)");
817
818         sprintf(buf, "MSG0 %ld|1", msgnum);     /* ask for headers only */
819         serv_puts(buf);
820         serv_getln(buf, sizeof buf);
821         if (buf[0] != '1') return;
822
823         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
824                 if (!strncasecmp(buf, "part=", 5)) {
825                         extract_token(mime_filename, &buf[5], 1, '|', sizeof mime_filename);
826                         extract_token(mime_partnum, &buf[5], 2, '|', sizeof mime_partnum);
827                         extract_token(mime_disposition, &buf[5], 3, '|', sizeof mime_disposition);
828                         extract_token(mime_content_type, &buf[5], 4, '|', sizeof mime_content_type);
829                         mime_length = extract_int(&buf[5], 5);
830
831                         if (!strcasecmp(mime_content_type, "text/x-vcard")) {
832                                 strcpy(vcard_partnum, mime_partnum);
833                         }
834
835                 }
836         }
837
838         if (strlen(vcard_partnum) > 0) {
839                 vcard_source = load_mimepart(msgnum, vcard_partnum);
840                 if (vcard_source != NULL) {
841
842                         /* Display the summary line */
843                         display_vcard(vcard_source, alpha, 0, NULL);
844
845                         /* If it's my vCard I can edit it */
846                         if (    (!strcasecmp(WC->wc_roomname, USERCONFIGROOM))
847                                 || (!strcasecmp(&WC->wc_roomname[11], USERCONFIGROOM))
848                                 || (WC->wc_view == VIEW_ADDRESSBOOK)
849                         ) {
850                                 wprintf("<A HREF=\"/edit_vcard?"
851                                         "msgnum=%ld&partnum=%s\">",
852                                         msgnum, vcard_partnum);
853                                 wprintf("[edit]</A>");
854                         }
855
856                         free(vcard_source);
857                 }
858         }
859
860 }
861
862
863
864 /* If it's an old "Firstname Lastname" style record, try to
865  * convert it.
866  */
867 void lastfirst_firstlast(char *namebuf) {
868         char firstname[SIZ];
869         char lastname[SIZ];
870         int i;
871
872         if (namebuf == NULL) return;
873         if (strchr(namebuf, ';') != NULL) return;
874
875         i = num_tokens(namebuf, ' ');
876         if (i < 2) return;
877
878         extract_token(lastname, namebuf, i-1, ' ', sizeof lastname);
879         remove_token(namebuf, i-1, ' ');
880         strcpy(firstname, namebuf);
881         sprintf(namebuf, "%s; %s", lastname, firstname);
882 }
883
884
885 void fetch_ab_name(long msgnum, char *namebuf) {
886         char buf[SIZ];
887         char mime_partnum[SIZ];
888         char mime_filename[SIZ];
889         char mime_content_type[SIZ];
890         char mime_disposition[SIZ];
891         int mime_length;
892         char vcard_partnum[SIZ];
893         char *vcard_source = NULL;
894         int i;
895
896         struct {
897                 char date[SIZ];
898                 char from[SIZ];
899                 char to[SIZ];
900                 char subj[SIZ];
901                 int hasattachments;
902         } summ;
903
904         if (namebuf == NULL) return;
905         strcpy(namebuf, "");
906
907         memset(&summ, 0, sizeof(summ));
908         strcpy(summ.subj, "(no subject)");
909
910         sprintf(buf, "MSG0 %ld|1", msgnum);     /* ask for headers only */
911         serv_puts(buf);
912         serv_getln(buf, sizeof buf);
913         if (buf[0] != '1') return;
914
915         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
916                 if (!strncasecmp(buf, "part=", 5)) {
917                         extract_token(mime_filename, &buf[5], 1, '|', sizeof mime_filename);
918                         extract_token(mime_partnum, &buf[5], 2, '|', sizeof mime_partnum);
919                         extract_token(mime_disposition, &buf[5], 3, '|', sizeof mime_disposition);
920                         extract_token(mime_content_type, &buf[5], 4, '|', sizeof mime_content_type);
921                         mime_length = extract_int(&buf[5], 5);
922
923                         if (!strcasecmp(mime_content_type, "text/x-vcard")) {
924                                 strcpy(vcard_partnum, mime_partnum);
925                         }
926
927                 }
928         }
929
930         if (strlen(vcard_partnum) > 0) {
931                 vcard_source = load_mimepart(msgnum, vcard_partnum);
932                 if (vcard_source != NULL) {
933
934                         /* Grab the name off the card */
935                         display_vcard(vcard_source, 0, 0, namebuf);
936
937                         free(vcard_source);
938                 }
939         }
940
941         lastfirst_firstlast(namebuf);
942         striplt(namebuf);
943         for (i=0; i<strlen(namebuf); ++i) {
944                 if (namebuf[i] != ';') return;
945         }
946         strcpy(namebuf, "(no name)");
947 }
948
949
950
951 /*
952  * Record compare function for sorting address book indices
953  */
954 int abcmp(const void *ab1, const void *ab2) {
955         return(strcasecmp(
956                 (((const struct addrbookent *)ab1)->ab_name),
957                 (((const struct addrbookent *)ab2)->ab_name)
958         ));
959 }
960
961
962 /*
963  * Helper function for do_addrbook_view()
964  * Converts a name into a three-letter tab label
965  */
966 void nametab(char *tabbuf, char *name) {
967         stresc(tabbuf, name, 0, 0);
968         tabbuf[0] = toupper(tabbuf[0]);
969         tabbuf[1] = tolower(tabbuf[1]);
970         tabbuf[2] = tolower(tabbuf[2]);
971         tabbuf[3] = 0;
972 }
973
974
975 /*
976  * Render the address book using info we gathered during the scan
977  */
978 void do_addrbook_view(struct addrbookent *addrbook, int num_ab) {
979         int i = 0;
980         int displayed = 0;
981         int bg = 0;
982         static int NAMESPERPAGE = 60;
983         int num_pages = 0;
984         int page = 0;
985         int tabfirst = 0;
986         char tabfirst_label[SIZ];
987         int tablast = 0;
988         char tablast_label[SIZ];
989
990         if (num_ab == 0) {
991                 wprintf("<I>This address book is empty.</I>\n");
992                 return;
993         }
994
995         if (num_ab > 1) {
996                 qsort(addrbook, num_ab, sizeof(struct addrbookent), abcmp);
997         }
998
999         num_pages = num_ab / NAMESPERPAGE;
1000
1001         page = atoi(bstr("page"));
1002
1003         wprintf("Page: ");
1004         for (i=0; i<=num_pages; ++i) {
1005                 if (i != page) {
1006                         wprintf("<A HREF=\"/readfwd?page=%d\">", i);
1007                 }
1008                 else {
1009                         wprintf("<B>");
1010                 }
1011                 tabfirst = i * NAMESPERPAGE;
1012                 tablast = tabfirst + NAMESPERPAGE - 1;
1013                 if (tablast > (num_ab - 1)) tablast = (num_ab - 1);
1014                 nametab(tabfirst_label, addrbook[tabfirst].ab_name);
1015                 nametab(tablast_label, addrbook[tablast].ab_name);
1016                 wprintf("[%s&nbsp;-&nbsp;%s]",
1017                         tabfirst_label, tablast_label
1018                 );
1019                 if (i != page) {
1020                         wprintf("</A>\n");
1021                 }
1022                 else {
1023                         wprintf("</B>\n");
1024                 }
1025         }
1026         wprintf("<br />\n");
1027
1028         wprintf("<TABLE border=0 cellspacing=0 "
1029                 "cellpadding=3 width=100%%>\n"
1030         );
1031
1032         for (i=0; i<num_ab; ++i) {
1033
1034                 if ((i / NAMESPERPAGE) == page) {
1035
1036                         if ((displayed % 4) == 0) {
1037                                 if (displayed > 0) {
1038                                         wprintf("</TR>\n");
1039                                 }
1040                                 bg = 1 - bg;
1041                                 wprintf("<TR BGCOLOR=\"#%s\">",
1042                                         (bg ? "DDDDDD" : "FFFFFF")
1043                                 );
1044                         }
1045         
1046                         wprintf("<TD>");
1047         
1048                         wprintf("<A HREF=\"/readfwd?startmsg=%ld&is_singlecard=1",
1049                                 addrbook[i].ab_msgnum);
1050                         wprintf("&maxmsgs=1&summary=0&alpha=%s\">", bstr("alpha"));
1051                         vcard_n_prettyize(addrbook[i].ab_name);
1052                         escputs(addrbook[i].ab_name);
1053                         wprintf("</A></TD>\n");
1054                         ++displayed;
1055                 }
1056         }
1057
1058         wprintf("</TR></TABLE>\n");
1059 }
1060
1061
1062
1063 /* 
1064  * load message pointers from the server
1065  */
1066 int load_msg_ptrs(char *servcmd)
1067 {
1068         char buf[SIZ];
1069         int nummsgs;
1070         int maxload = 0;
1071
1072         nummsgs = 0;
1073         maxload = sizeof(WC->msgarr) / sizeof(long) ;
1074         serv_puts(servcmd);
1075         serv_getln(buf, sizeof buf);
1076         if (buf[0] != '1') {
1077                 wprintf("<EM>%s</EM><br />\n", &buf[4]);
1078                 return (nummsgs);
1079         }
1080         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1081                 if (nummsgs < maxload) {
1082                         WC->msgarr[nummsgs] = atol(buf);
1083                         ++nummsgs;
1084                 }
1085         }
1086         return (nummsgs);
1087 }
1088
1089
1090 /*
1091  * command loop for reading messages
1092  */
1093 void readloop(char *oper)
1094 {
1095         char cmd[SIZ];
1096         char buf[SIZ];
1097         char old_msgs[SIZ];
1098         int is_new = 0;
1099         int a, b;
1100         int nummsgs;
1101         long startmsg;
1102         int maxmsgs;
1103         int num_displayed = 0;
1104         int is_summary = 0;
1105         int is_addressbook = 0;
1106         int is_singlecard = 0;
1107         int is_calendar = 0;
1108         int is_tasks = 0;
1109         int is_notes = 0;
1110         int remaining_messages;
1111         int lo, hi;
1112         int lowest_displayed = (-1);
1113         int highest_displayed = 0;
1114         long pn_previous = 0L;
1115         long pn_current = 0L;
1116         long pn_next = 0L;
1117         int bg = 0;
1118         struct addrbookent *addrbook = NULL;
1119         int num_ab = 0;
1120
1121         startmsg = atol(bstr("startmsg"));
1122         maxmsgs = atoi(bstr("maxmsgs"));
1123         is_summary = atoi(bstr("summary"));
1124         if (maxmsgs == 0) maxmsgs = DEFAULT_MAXMSGS;
1125
1126         output_headers(1, 1, 1, 0, 0, 0, 0);
1127
1128         /* When in summary mode, always show ALL messages instead of just
1129          * new or old.  Otherwise, show what the user asked for.
1130          */
1131         if (!strcmp(oper, "readnew")) {
1132                 strcpy(cmd, "MSGS NEW");
1133         }
1134         else if (!strcmp(oper, "readold")) {
1135                 strcpy(cmd, "MSGS OLD");
1136         }
1137         else {
1138                 strcpy(cmd, "MSGS ALL");
1139         }
1140
1141         if ((WC->wc_view == VIEW_MAILBOX) && (maxmsgs > 1)) {
1142                 is_summary = 1;
1143                 strcpy(cmd, "MSGS ALL");
1144         }
1145
1146         if ((WC->wc_view == VIEW_ADDRESSBOOK) && (maxmsgs > 1)) {
1147                 is_addressbook = 1;
1148                 strcpy(cmd, "MSGS ALL");
1149                 maxmsgs = 32767;
1150         }
1151
1152         if (is_summary) {
1153                 strcpy(cmd, "MSGS ALL");
1154         }
1155
1156         /* Are we doing a summary view?  If so, we need to know old messages
1157          * and new messages, so we can do that pretty boldface thing for the
1158          * new messages.
1159          */
1160         strcpy(old_msgs, "");
1161         if (is_summary) {
1162                 serv_puts("GTSN");
1163                 serv_getln(buf, sizeof buf);
1164                 if (buf[0] == '2') {
1165                         strcpy(old_msgs, &buf[4]);
1166                 }
1167         }
1168
1169         is_singlecard = atoi(bstr("is_singlecard"));
1170
1171         if (WC->wc_view == VIEW_CALENDAR) {             /* calendar */
1172                 is_calendar = 1;
1173                 strcpy(cmd, "MSGS ALL");
1174                 maxmsgs = 32767;
1175         }
1176         if (WC->wc_view == VIEW_TASKS) {                /* tasks */
1177                 is_tasks = 1;
1178                 strcpy(cmd, "MSGS ALL");
1179                 maxmsgs = 32767;
1180         }
1181         if (WC->wc_view == VIEW_NOTES) {                /* notes */
1182                 is_notes = 1;
1183                 strcpy(cmd, "MSGS ALL");
1184                 maxmsgs = 32767;
1185         }
1186
1187         nummsgs = load_msg_ptrs(cmd);
1188         if (nummsgs == 0) {
1189
1190                 if ((!is_tasks) && (!is_calendar) && (!is_notes)) {
1191                         if (!strcmp(oper, "readnew")) {
1192                                 wprintf("<EM>No new messages.</EM>\n");
1193                         } else if (!strcmp(oper, "readold")) {
1194                                 wprintf("<EM>No old messages.</EM>\n");
1195                         } else {
1196                                 wprintf("<EM>No messages here.</EM>\n");
1197                         }
1198                 }
1199
1200                 goto DONE;
1201         }
1202
1203         if (startmsg == 0L) startmsg = WC->msgarr[0];
1204         remaining_messages = 0;
1205
1206         for (a = 0; a < nummsgs; ++a) {
1207                 if (WC->msgarr[a] >= startmsg) {
1208                         ++remaining_messages;
1209                 }
1210         }
1211
1212         wprintf("<form name=\"msgomatic\" "
1213                 "METHOD=\"POST\" ACTION=\"/do_stuff_to_msgs\">\n");
1214         if (is_summary) {
1215                 wprintf("<div id=\"fix_scrollbar_bug\">"
1216                         "<table border=0 cellspacing=0 "
1217                         "cellpadding=0 width=100%%>\n"
1218                         "<TR>"
1219                         "<TD><I>Subject</I></TD>"
1220                         "<TD><I>Sender</I></TD>"
1221                         "<TD><I>Date</I></TD>"
1222                         "<TD></TD>"
1223                         "</TR>\n"
1224                 );
1225         }
1226
1227         for (a = 0; a < nummsgs; ++a) {
1228                 if ((WC->msgarr[a] >= startmsg) && (num_displayed < maxmsgs)) {
1229
1230                         /* Are you a new message, or an old message? */
1231                         is_new = 0;
1232                         if (is_summary) {
1233                                 if (is_msg_in_mset(old_msgs, WC->msgarr[a])) {
1234                                         is_new = 0;
1235                                 }
1236                                 else {
1237                                         is_new = 1;
1238                                 }
1239                         }
1240
1241                         /* Learn which msgs "Prev" & "Next" buttons go to */
1242                         pn_current = WC->msgarr[a];
1243                         if (a > 0) pn_previous = WC->msgarr[a-1];
1244                         if (a < (nummsgs-1)) pn_next = WC->msgarr[a+1];
1245
1246                         /* If a tabular view, set up the line */
1247                         if (is_summary) {
1248                                 bg = 1 - bg;
1249                                 wprintf("<TR BGCOLOR=\"#%s\">",
1250                                         (bg ? "DDDDDD" : "FFFFFF")
1251                                 );
1252                         }
1253
1254                         /* Display the message */
1255                         if (is_summary) {
1256                                 summarize_message(WC->msgarr[a], is_new);
1257                         }
1258                         else if (is_addressbook) {
1259                                 fetch_ab_name(WC->msgarr[a], buf);
1260                                 ++num_ab;
1261                                 addrbook = realloc(addrbook,
1262                                         (sizeof(struct addrbookent) * num_ab) );
1263                                 safestrncpy(addrbook[num_ab-1].ab_name, buf,
1264                                         sizeof(addrbook[num_ab-1].ab_name));
1265                                 addrbook[num_ab-1].ab_msgnum = WC->msgarr[a];
1266                         }
1267                         else if (is_calendar) {
1268                                 display_calendar(WC->msgarr[a]);
1269                         }
1270                         else if (is_tasks) {
1271                                 display_task(WC->msgarr[a]);
1272                         }
1273                         else if (is_notes) {
1274                                 display_note(WC->msgarr[a]);
1275                         }
1276                         else {
1277                                 read_message(WC->msgarr[a]);
1278                         }
1279
1280                         /* If a tabular view, finish the line */
1281                         if (is_summary) {
1282                                 wprintf("</TR>\n");
1283                         }
1284
1285                         if (lowest_displayed < 0) lowest_displayed = a;
1286                         highest_displayed = a;
1287
1288                         ++num_displayed;
1289                         --remaining_messages;
1290                 }
1291         }
1292
1293         if (is_summary) {
1294                 wprintf("</table></div>\n");
1295         }
1296
1297         /* Bump these because although we're thinking in zero base, the user
1298          * is a drooling idiot and is thinking in one base.
1299          */
1300         ++lowest_displayed;
1301         ++highest_displayed;
1302
1303         /* If we're only looking at one message, do a prev/next thing */
1304         if (num_displayed == 1) {
1305            if ((!is_tasks) && (!is_calendar) && (!is_addressbook) && (!is_notes) && (!is_singlecard)) {
1306
1307                 wprintf("<div id=\"fix_scrollbar_bug\">"
1308                         "<table border=0 width=100%% bgcolor=\"#dddddd\"><tr><td>"
1309                         "Reading #%d of %d messages.</TD>\n"
1310                         "<TD ALIGN=RIGHT><FONT SIZE=+1>",
1311                         lowest_displayed, nummsgs);
1312
1313                 if (is_summary) {
1314                         wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" "
1315                                 "VALUE=\"Delete selected\">\n");
1316                 }
1317
1318                 if (pn_previous > 0L) {
1319                         wprintf("<A HREF=\"/%s"
1320                                 "?startmsg=%ld"
1321                                 "&maxmsgs=1"
1322                                 "&summary=0\">"
1323                                 "Previous</A> \n",
1324                                         oper,
1325                                         pn_previous );
1326                 }
1327
1328                 if (pn_next > 0L) {
1329                         wprintf("<A HREF=\"/%s"
1330                                 "?startmsg=%ld"
1331                                 "&maxmsgs=1"
1332                                 "&summary=0\">"
1333                                 "Next</A> \n",
1334                                         oper,
1335                                         pn_next );
1336                 }
1337
1338                 wprintf("<A HREF=\"/%s?startmsg=%ld"
1339                         "&maxmsgs=999999&summary=1\">"
1340                         "Summary"
1341                         "</A>",
1342                         oper,
1343                         WC->msgarr[0]);
1344
1345                 wprintf("</td></tr></table></div>\n");
1346             }
1347         }
1348
1349         /*
1350          * If we're not currently looking at ALL requested
1351          * messages, then display the selector bar
1352          */
1353         if (num_displayed > 1) {
1354            if ((!is_tasks) && (!is_calendar) && (!is_addressbook)
1355               && (!is_notes) && (!is_singlecard)) {
1356
1357                 wprintf("Reading #", lowest_displayed, highest_displayed);
1358
1359                 wprintf("<SELECT NAME=\"whichones\" SIZE=\"1\" "
1360                         "OnChange=\"location.href=msgomatic.whichones.options"
1361                         "[selectedIndex].value\">\n");
1362
1363                 for (b=0; b<nummsgs; b = b + maxmsgs) {
1364                 lo = b+1;
1365                 hi = b+maxmsgs;
1366                 if (hi > nummsgs) hi = nummsgs;
1367                         wprintf("<OPTION %s VALUE="
1368                                 "\"/%s"
1369                                 "?startmsg=%ld"
1370                                 "&maxmsgs=%d"
1371                                 "&summary=%d\">"
1372                                 "%d-%d</OPTION> \n",
1373                                 ((WC->msgarr[b] == startmsg) ? "SELECTED" : ""),
1374                                 oper,
1375                                 WC->msgarr[b],
1376                                 maxmsgs,
1377                                 is_summary,
1378                                 lo, hi);
1379                 }
1380                 wprintf("<OPTION VALUE=\"/%s?startmsg=%ld"
1381                         "&maxmsgs=999999&summary=%d\">"
1382                         "ALL"
1383                         "</OPTION> ",
1384                         oper,
1385                         WC->msgarr[0], is_summary);
1386
1387                 wprintf("</SELECT> of %d messages.", nummsgs);
1388
1389                 if (is_summary) {
1390                         wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" "
1391                                 "VALUE=\"Delete selected\">\n");
1392                 }
1393
1394             }
1395         }
1396         wprintf("</form>\n");
1397
1398 DONE:
1399         if (is_tasks) {
1400                 do_tasks_view();        /* Render the task list */
1401         }
1402
1403         if (is_calendar) {
1404                 do_calendar_view();     /* Render the calendar */
1405         }
1406
1407         if (is_addressbook) {
1408                 do_addrbook_view(addrbook, num_ab);     /* Render the address book */
1409         }
1410
1411         wDumpContent(1);
1412         if (addrbook != NULL) free(addrbook);
1413 }
1414
1415
1416 /*
1417  * Back end for post_message() ... this is where the actual message
1418  * gets transmitted to the server.
1419  */
1420 void post_mime_to_server(void) {
1421         char boundary[SIZ];
1422         int is_multipart = 0;
1423         static int seq = 0;
1424         struct wc_attachment *att;
1425         char *encoded;
1426         size_t encoded_length;
1427
1428         /* If there are attachments, we have to do multipart/mixed */
1429         if (WC->first_attachment != NULL) {
1430                 is_multipart = 1;
1431         }
1432
1433         if (is_multipart) {
1434                 sprintf(boundary, "---Citadel-Multipart-%s-%04x%04x---",
1435                         serv_info.serv_fqdn,
1436                         getpid(),
1437                         ++seq
1438                 );
1439
1440                 /* Remember, serv_printf() appends an extra newline */
1441                 serv_printf("Content-type: multipart/mixed; "
1442                         "boundary=\"%s\"\n", boundary);
1443                 serv_printf("This is a multipart message in MIME format.\n");
1444                 serv_printf("--%s", boundary);
1445         }
1446
1447         serv_puts("Content-type: text/html");
1448         serv_puts("");
1449         serv_puts("<HTML><BODY>\n");
1450         text_to_server(bstr("msgtext"), 0);
1451         serv_puts("</BODY></HTML>\n");
1452         
1453
1454         if (is_multipart) {
1455
1456                 /* Add in the attachments */
1457                 for (att = WC->first_attachment; att!=NULL; att=att->next) {
1458
1459                         encoded_length = ((att->length * 150) / 100);
1460                         encoded = malloc(encoded_length);
1461                         if (encoded == NULL) break;
1462                         CtdlEncodeBase64(encoded, att->data, att->length);
1463
1464                         serv_printf("--%s", boundary);
1465                         serv_printf("Content-type: %s", att->content_type);
1466                         serv_printf("Content-disposition: attachment; "
1467                                 "filename=\"%s\"", att->filename);
1468                         serv_puts("Content-transfer-encoding: base64");
1469                         serv_puts("");
1470                         serv_write(encoded, strlen(encoded));
1471                         serv_puts("");
1472                         serv_puts("");
1473                         free(encoded);
1474                 }
1475                 serv_printf("--%s--", boundary);
1476         }
1477
1478         serv_puts("000");
1479 }
1480
1481
1482 /*
1483  * Post message (or don't post message)
1484  *
1485  * Note regarding the "dont_post" variable:
1486  * A random value (actually, it's just a timestamp) is inserted as a hidden
1487  * field called "postseq" when the display_enter page is generated.  This
1488  * value is checked when posting, using the static variable dont_post.  If a
1489  * user attempts to post twice using the same dont_post value, the message is
1490  * discarded.  This prevents the accidental double-saving of the same message
1491  * if the user happens to click the browser "back" button.
1492  */
1493 void post_message(void)
1494 {
1495         char buf[SIZ];
1496         static long dont_post = (-1L);
1497         struct wc_attachment *att, *aptr;
1498
1499         if (WC->upload_length > 0) {
1500
1501                 /* There's an attachment.  Save it to this struct... */
1502                 att = malloc(sizeof(struct wc_attachment));
1503                 memset(att, 0, sizeof(struct wc_attachment));
1504                 att->length = WC->upload_length;
1505                 strcpy(att->content_type, WC->upload_content_type);
1506                 strcpy(att->filename, WC->upload_filename);
1507                 att->next = NULL;
1508
1509                 /* And add it to the list. */
1510                 if (WC->first_attachment == NULL) {
1511                         WC->first_attachment = att;
1512                 }
1513                 else {
1514                         aptr = WC->first_attachment;
1515                         while (aptr->next != NULL) aptr = aptr->next;
1516                         aptr->next = att;
1517                 }
1518
1519                 /* Netscape sends a simple filename, which is what we want,
1520                  * but Satan's browser sends an entire pathname.  Reduce
1521                  * the path to just a filename if we need to.
1522                  */
1523                 while (num_tokens(att->filename, '/') > 1) {
1524                         remove_token(att->filename, 0, '/');
1525                 }
1526                 while (num_tokens(att->filename, '\\') > 1) {
1527                         remove_token(att->filename, 0, '\\');
1528                 }
1529
1530                 /* Transfer control of this memory from the upload struct
1531                  * to the attachment struct.
1532                  */
1533                 att->data = WC->upload;
1534                 WC->upload_length = 0;
1535                 WC->upload = NULL;
1536                 display_enter();
1537                 return;
1538         }
1539
1540         if (!strcasecmp(bstr("sc"), "Cancel")) {
1541                 sprintf(WC->ImportantMessage, 
1542                         "Cancelled.  Message was not posted.");
1543         } else if (!strcasecmp(bstr("attach"), "Add")) {
1544                 display_enter();
1545                 return;
1546         } else if (atol(bstr("postseq")) == dont_post) {
1547                 sprintf(WC->ImportantMessage, 
1548                         "Automatically cancelled because you have already "
1549                         "saved this message.");
1550         } else {
1551                 sprintf(buf, "ENT0 1|%s|0|4|%s",
1552                         bstr("recp"),
1553                         bstr("subject") );
1554                 serv_puts(buf);
1555                 serv_getln(buf, sizeof buf);
1556                 if (buf[0] == '4') {
1557                         post_mime_to_server();
1558                         if (strlen(bstr("recp")) > 0) {
1559                                 sprintf(WC->ImportantMessage, "Message has been sent.\n");
1560                         }
1561                         else {
1562                                 sprintf(WC->ImportantMessage, "Message has been posted.\n");
1563                         }
1564                         dont_post = atol(bstr("postseq"));
1565                 } else {
1566                         sprintf(WC->ImportantMessage, 
1567                                 "%s", &buf[4]);
1568                 }
1569         }
1570
1571         free_attachments(WC);
1572         readloop("readnew");
1573 }
1574
1575
1576
1577
1578 /*
1579  * display the message entry screen
1580  */
1581 void display_enter(void)
1582 {
1583         char buf[SIZ];
1584         long now;
1585         struct wc_attachment *att;
1586
1587         if (strlen(bstr("force_room")) > 0) {
1588                 gotoroom(bstr("force_room"));
1589         }
1590
1591         /* Are we perhaps in an address book view?  If so, then an "enter
1592          * message" command really means "add new entry."
1593          */
1594         if (WC->wc_view == VIEW_ADDRESSBOOK) {
1595                 do_edit_vcard(-1, "", "");
1596                 return;
1597         }
1598
1599 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
1600         /* Are we perhaps in a calendar view?  If so, then an "enter
1601          * message" command really means "add new calendar item."
1602          */
1603         if (WC->wc_view == VIEW_CALENDAR) {
1604                 display_edit_event();
1605                 return;
1606         }
1607
1608         /* Are we perhaps in a tasks view?  If so, then an "enter
1609          * message" command really means "add new task."
1610          */
1611         if (WC->wc_view == VIEW_TASKS) {
1612                 display_edit_task();
1613                 return;
1614         }
1615 #endif
1616
1617         /* Otherwise proceed normally.  Do a custom room banner with no navbar... */
1618         output_headers(1, 1, 2, 0, 0, 0, 0);
1619         wprintf("<div id=\"banner\">\n");
1620         embed_room_banner(NULL, navbar_none);
1621         wprintf("</div>\n");
1622         wprintf("<div id=\"content\">\n"
1623                 "<div id=\"fix_scrollbar_bug\">"
1624                 "<table width=100%% border=0 bgcolor=\"#ffffff\"><tr><td>");
1625
1626         sprintf(buf, "ENT0 0|%s|0|0", bstr("recp"));
1627         serv_puts(buf);
1628         serv_getln(buf, sizeof buf);
1629
1630         if (!strncmp(buf, "570", 3)) {
1631                 if (strlen(bstr("recp")) > 0) {
1632                         svprintf("RECPERROR", WCS_STRING,
1633                                 "<SPAN CLASS=\"errormsg\">%s</SPAN><br />\n",
1634                                 &buf[4]
1635                         );
1636                 }
1637                 do_template("prompt_for_recipient");
1638                 goto DONE;
1639         }
1640         if (buf[0] != '2') {
1641                 wprintf("<EM>%s</EM><br />\n", &buf[4]);
1642                 goto DONE;
1643         }
1644
1645         now = time(NULL);
1646         fmt_date(buf, now, 0);
1647         strcat(&buf[strlen(buf)], " <I>from</I> ");
1648         stresc(&buf[strlen(buf)], WC->wc_username, 1, 1);
1649         if (strlen(bstr("recp")) > 0) {
1650                 strcat(&buf[strlen(buf)], " <I>to</I> ");
1651                 stresc(&buf[strlen(buf)], bstr("recp"), 1, 1);
1652         }
1653         strcat(&buf[strlen(buf)], " <I>in</I> ");
1654         stresc(&buf[strlen(buf)], WC->wc_roomname, 1, 1);
1655
1656         /* begin message entry screen */
1657         // wprintf("<div style=\"position:absolute; left:1%%; width:96%%; height:100%%\">\n");
1658
1659         wprintf("<form enctype=\"multipart/form-data\" "
1660                 "method=\"POST\" action=\"/post\" "
1661                 "name=\"enterform\""
1662                 "onSubmit=\"return submitForm();\""
1663                 ">\n");
1664         wprintf("<input type=\"hidden\" name=\"recp\" value=\"%s\">\n",
1665                 bstr("recp"));
1666         wprintf("<input type=\"hidden\" name=\"postseq\" value=\"%ld\">\n",
1667                 now);
1668
1669         wprintf("%s<br>\n", buf);       /* header bar */
1670         wprintf("<img src=\"static/enter.gif\" align=middle alt=\" \">");
1671                 /* "onLoad=\"document.enterform.msgtext.focus();\" " */
1672         wprintf("<font size=-1>Subject (optional):</font>"
1673                 "<input type=\"text\" name=\"subject\" value=\"");
1674         escputs(bstr("subject"));
1675         wprintf("\" size=40 maxlength=70>"
1676                 "&nbsp;"
1677         );
1678
1679         wprintf("<input type=\"submit\" name=\"sc\" value=\"");
1680         if (strlen(bstr("recp")) > 0) {
1681                 wprintf("Send message");
1682         } else {
1683                 wprintf("Post message");
1684         }
1685         wprintf("\">&nbsp;"
1686                 "<input type=\"submit\" name=\"sc\" value=\"Cancel\">\n");
1687
1688         wprintf("<center><script type=\"text/javascript\" "
1689                 "src=\"static/richtext.js\"></script>\n"
1690                 "<script type=\"text/javascript\">\n"
1691                 "function submitForm() { \n"
1692                 "  updateRTE('msgtext'); \n"
1693                 "  return true; \n"
1694                 "} \n"
1695                 "  \n"
1696                 "initRTE(\"static/\", \"static/\", \"\"); \n"
1697                 "</script> \n"
1698                 "<noscript>JavaScript must be enabled.</noscript> \n"
1699                 "<script type=\"text/javascript\"> \n"
1700                 "writeRichText('msgtext', '");
1701         msgescputs(bstr("msgtext"));
1702         wprintf("', '96%%', '200', true, false); \n"
1703                 "</script></center><br />\n");
1704
1705         /* Enumerate any attachments which are already in place... */
1706         wprintf("<img src=\"/static/attachment.gif\" border=0 "
1707                 "align=middle height=16 width=16> Attachments: ");
1708         wprintf("<select name=\"which_attachment\" size=1>");
1709         for (att = WC->first_attachment; att != NULL; att = att->next) {
1710                 wprintf("<option value=\"");
1711                 urlescputs(att->filename);
1712                 wprintf("\">");
1713                 escputs(att->filename);
1714                 /* wprintf(" (%s, %d bytes)",att->content_type,att->length); */
1715                 wprintf("</option>\n");
1716         }
1717         wprintf("</select>");
1718
1719         /* Now offer the ability to attach additional files... */
1720         wprintf("&nbsp;&nbsp;&nbsp;"
1721                 "Attach file: <input NAME=\"attachfile\" "
1722                 "SIZE=16 TYPE=\"file\">\n&nbsp;&nbsp;"
1723                 "<input type=\"submit\" name=\"attach\" value=\"Add\">\n");
1724
1725         wprintf("</form>\n");
1726
1727         wprintf("</td></tr></table></div>\n");
1728 DONE:   wDumpContent(1);
1729 }
1730
1731
1732
1733
1734
1735
1736
1737
1738 void delete_msg(void)
1739 {
1740         long msgid;
1741         char buf[SIZ];
1742
1743         msgid = atol(bstr("msgid"));
1744
1745         output_headers(1, 1, 1, 0, 0, 0, 0);
1746
1747         sprintf(buf, "DELE %ld", msgid);
1748         serv_puts(buf);
1749         serv_getln(buf, sizeof buf);
1750         wprintf("<EM>%s</EM><br />\n", &buf[4]);
1751
1752         wDumpContent(1);
1753 }
1754
1755
1756
1757
1758 /*
1759  * Confirm move of a message
1760  */
1761 void confirm_move_msg(void)
1762 {
1763         long msgid;
1764         char buf[SIZ];
1765         char targ[SIZ];
1766
1767         msgid = atol(bstr("msgid"));
1768
1769         output_headers(1, 1, 1, 0, 0, 0, 0);
1770
1771         wprintf("<div id=\"fix_scrollbar_bug\">"
1772                 "<table width=100%% border=0 bgcolor=\"#444455\"><tr><td>");
1773         wprintf("<font size=+1 color=\"#ffffff\"");
1774         wprintf("<b>Confirm move of message</b>\n");
1775         wprintf("</font></td></tr></table></div>\n");
1776
1777         wprintf("<CENTER>");
1778
1779         wprintf("Move this message to:<br />\n");
1780
1781         wprintf("<form METHOD=\"POST\" ACTION=\"/move_msg\">\n");
1782         wprintf("<INPUT TYPE=\"hidden\" NAME=\"msgid\" VALUE=\"%s\">\n",
1783                 bstr("msgid"));
1784
1785
1786         wprintf("<SELECT NAME=\"target_room\" SIZE=5>\n");
1787         serv_puts("LKRA");
1788         serv_getln(buf, sizeof buf);
1789         if (buf[0] == '1') {
1790                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1791                         extract_token(targ, buf, 0, '|', sizeof targ);
1792                         wprintf("<OPTION>");
1793                         escputs(targ);
1794                         wprintf("\n");
1795                 }
1796         }
1797         wprintf("</SELECT>\n");
1798         wprintf("<br />\n");
1799
1800         wprintf("<INPUT TYPE=\"submit\" NAME=\"yesno\" VALUE=\"Move\">");
1801         wprintf("&nbsp;");
1802         wprintf("<INPUT TYPE=\"submit\" NAME=\"yesno\" VALUE=\"Cancel\">");
1803         wprintf("</form></CENTER>\n");
1804
1805         wprintf("</CENTER>\n");
1806         wDumpContent(1);
1807 }
1808
1809
1810
1811 void move_msg(void)
1812 {
1813         long msgid;
1814         char buf[SIZ];
1815
1816         msgid = atol(bstr("msgid"));
1817
1818         output_headers(1, 1, 1, 0, 0, 0, 0);
1819
1820         if (!strcasecmp(bstr("yesno"), "Move")) {
1821                 sprintf(buf, "MOVE %ld|%s", msgid, bstr("target_room"));
1822                 serv_puts(buf);
1823                 serv_getln(buf, sizeof buf);
1824                 wprintf("<EM>%s</EM><br />\n", &buf[4]);
1825         } else {
1826                 wprintf("<EM>Message not moved.</EM><br />\n");
1827         }
1828
1829         wDumpContent(1);
1830 }
1831
1832 /*
1833  * This gets called when a user selects multiple messages in a summary
1834  * list and then clicks to perform a transformation of some sort on them
1835  * (such as deleting them).
1836  */
1837 void do_stuff_to_msgs(void) {
1838         char buf[SIZ];
1839         char sc[SIZ];
1840
1841         struct stuff_t {
1842                 struct stuff_t *next;
1843                 long msgnum;
1844         };
1845
1846         struct stuff_t *stuff = NULL;
1847         struct stuff_t *ptr;
1848
1849
1850         serv_puts("MSGS ALL");
1851         serv_getln(buf, sizeof buf);
1852
1853         if (buf[0] == '1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1854                 ptr = malloc(sizeof(struct stuff_t));
1855                 ptr->msgnum = atol(buf);
1856                 ptr->next = stuff;
1857                 stuff = ptr;
1858         }
1859
1860         strcpy(sc, bstr("sc"));
1861
1862         while (stuff != NULL) {
1863
1864                 sprintf(buf, "msg_%ld", stuff->msgnum);
1865                 if (!strcasecmp(bstr(buf), "yes")) {
1866
1867                         if (!strcasecmp(sc, "Delete selected")) {
1868                                 serv_printf("DELE %ld", stuff->msgnum);
1869                                 serv_getln(buf, sizeof buf);
1870                         }
1871
1872                 }
1873
1874                 ptr = stuff->next;
1875                 free(stuff);
1876                 stuff = ptr;
1877         }
1878
1879         readloop("readfwd");
1880 }