76e16cd2bf9b360d20fc9c2fa5195735102f33de
[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                         if (strlen(&buf[5]) > 0) {
745                                 strcpy(summ.subj, &buf[5]);
746                         }
747                 }
748                 /* if (!strncasecmp(buf, "rfca=", 5)) {
749                         strcat(summ.from, " <");
750                         strcat(summ.from, &buf[5]);
751                         strcat(summ.from, ">");
752                 } */
753
754                 if (!strncasecmp(buf, "node=", 5)) {
755                         if ( ((WC->room_flags & QR_NETWORK)
756                         || ((strcasecmp(&buf[5], serv_info.serv_nodename)
757                         && (strcasecmp(&buf[5], serv_info.serv_fqdn)))))
758                         ) {
759                                 strcat(summ.from, " @ ");
760                                 strcat(summ.from, &buf[5]);
761                         }
762                 }
763
764                 if (!strncasecmp(buf, "rcpt=", 5)) {
765                         strcpy(summ.to, &buf[5]);
766                 }
767
768                 if (!strncasecmp(buf, "time=", 5)) {
769                         fmt_date(summ.date, atol(&buf[5]), 1);  /* brief */
770                 }
771         }
772
773         wprintf("<TD>");
774         if (is_new) wprintf("<B>");
775         wprintf("<A HREF=\"/readfwd?startmsg=%ld"
776                 "&maxmsgs=1&summary=0\">", 
777                 msgnum);
778         escputs(summ.subj);
779         wprintf("</A>");
780         if (is_new) wprintf("</B>");
781         wprintf("</TD><TD>");
782         if (is_new) wprintf("<B>");
783         escputs(summ.from);
784         if (is_new) wprintf("</B>");
785         wprintf(" </TD><TD>");
786         if (is_new) wprintf("<B>");
787         escputs(summ.date);
788         if (is_new) wprintf("</B>");
789         wprintf(" </TD>");
790         wprintf("<TD>"
791                 "<INPUT TYPE=\"checkbox\" NAME=\"msg_%ld\" VALUE=\"yes\">"
792                 "</TD>\n");
793
794         return;
795 }
796
797
798
799 void display_addressbook(long msgnum, char alpha) {
800         char buf[SIZ];
801         char mime_partnum[SIZ];
802         char mime_filename[SIZ];
803         char mime_content_type[SIZ];
804         char mime_disposition[SIZ];
805         int mime_length;
806         char vcard_partnum[SIZ];
807         char *vcard_source = NULL;
808
809         struct {
810                 char date[SIZ];
811                 char from[SIZ];
812                 char to[SIZ];
813                 char subj[SIZ];
814                 int hasattachments;
815         } summ;
816
817         memset(&summ, 0, sizeof(summ));
818         strcpy(summ.subj, "(no subject)");
819
820         sprintf(buf, "MSG0 %ld|1", msgnum);     /* ask for headers only */
821         serv_puts(buf);
822         serv_getln(buf, sizeof buf);
823         if (buf[0] != '1') return;
824
825         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
826                 if (!strncasecmp(buf, "part=", 5)) {
827                         extract_token(mime_filename, &buf[5], 1, '|', sizeof mime_filename);
828                         extract_token(mime_partnum, &buf[5], 2, '|', sizeof mime_partnum);
829                         extract_token(mime_disposition, &buf[5], 3, '|', sizeof mime_disposition);
830                         extract_token(mime_content_type, &buf[5], 4, '|', sizeof mime_content_type);
831                         mime_length = extract_int(&buf[5], 5);
832
833                         if (!strcasecmp(mime_content_type, "text/x-vcard")) {
834                                 strcpy(vcard_partnum, mime_partnum);
835                         }
836
837                 }
838         }
839
840         if (strlen(vcard_partnum) > 0) {
841                 vcard_source = load_mimepart(msgnum, vcard_partnum);
842                 if (vcard_source != NULL) {
843
844                         /* Display the summary line */
845                         display_vcard(vcard_source, alpha, 0, NULL);
846
847                         /* If it's my vCard I can edit it */
848                         if (    (!strcasecmp(WC->wc_roomname, USERCONFIGROOM))
849                                 || (!strcasecmp(&WC->wc_roomname[11], USERCONFIGROOM))
850                                 || (WC->wc_view == VIEW_ADDRESSBOOK)
851                         ) {
852                                 wprintf("<A HREF=\"/edit_vcard?"
853                                         "msgnum=%ld&partnum=%s\">",
854                                         msgnum, vcard_partnum);
855                                 wprintf("[edit]</A>");
856                         }
857
858                         free(vcard_source);
859                 }
860         }
861
862 }
863
864
865
866 /* If it's an old "Firstname Lastname" style record, try to
867  * convert it.
868  */
869 void lastfirst_firstlast(char *namebuf) {
870         char firstname[SIZ];
871         char lastname[SIZ];
872         int i;
873
874         if (namebuf == NULL) return;
875         if (strchr(namebuf, ';') != NULL) return;
876
877         i = num_tokens(namebuf, ' ');
878         if (i < 2) return;
879
880         extract_token(lastname, namebuf, i-1, ' ', sizeof lastname);
881         remove_token(namebuf, i-1, ' ');
882         strcpy(firstname, namebuf);
883         sprintf(namebuf, "%s; %s", lastname, firstname);
884 }
885
886
887 void fetch_ab_name(long msgnum, char *namebuf) {
888         char buf[SIZ];
889         char mime_partnum[SIZ];
890         char mime_filename[SIZ];
891         char mime_content_type[SIZ];
892         char mime_disposition[SIZ];
893         int mime_length;
894         char vcard_partnum[SIZ];
895         char *vcard_source = NULL;
896         int i;
897
898         struct {
899                 char date[SIZ];
900                 char from[SIZ];
901                 char to[SIZ];
902                 char subj[SIZ];
903                 int hasattachments;
904         } summ;
905
906         if (namebuf == NULL) return;
907         strcpy(namebuf, "");
908
909         memset(&summ, 0, sizeof(summ));
910         strcpy(summ.subj, "(no subject)");
911
912         sprintf(buf, "MSG0 %ld|1", msgnum);     /* ask for headers only */
913         serv_puts(buf);
914         serv_getln(buf, sizeof buf);
915         if (buf[0] != '1') return;
916
917         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
918                 if (!strncasecmp(buf, "part=", 5)) {
919                         extract_token(mime_filename, &buf[5], 1, '|', sizeof mime_filename);
920                         extract_token(mime_partnum, &buf[5], 2, '|', sizeof mime_partnum);
921                         extract_token(mime_disposition, &buf[5], 3, '|', sizeof mime_disposition);
922                         extract_token(mime_content_type, &buf[5], 4, '|', sizeof mime_content_type);
923                         mime_length = extract_int(&buf[5], 5);
924
925                         if (!strcasecmp(mime_content_type, "text/x-vcard")) {
926                                 strcpy(vcard_partnum, mime_partnum);
927                         }
928
929                 }
930         }
931
932         if (strlen(vcard_partnum) > 0) {
933                 vcard_source = load_mimepart(msgnum, vcard_partnum);
934                 if (vcard_source != NULL) {
935
936                         /* Grab the name off the card */
937                         display_vcard(vcard_source, 0, 0, namebuf);
938
939                         free(vcard_source);
940                 }
941         }
942
943         lastfirst_firstlast(namebuf);
944         striplt(namebuf);
945         for (i=0; i<strlen(namebuf); ++i) {
946                 if (namebuf[i] != ';') return;
947         }
948         strcpy(namebuf, "(no name)");
949 }
950
951
952
953 /*
954  * Record compare function for sorting address book indices
955  */
956 int abcmp(const void *ab1, const void *ab2) {
957         return(strcasecmp(
958                 (((const struct addrbookent *)ab1)->ab_name),
959                 (((const struct addrbookent *)ab2)->ab_name)
960         ));
961 }
962
963
964 /*
965  * Helper function for do_addrbook_view()
966  * Converts a name into a three-letter tab label
967  */
968 void nametab(char *tabbuf, char *name) {
969         stresc(tabbuf, name, 0, 0);
970         tabbuf[0] = toupper(tabbuf[0]);
971         tabbuf[1] = tolower(tabbuf[1]);
972         tabbuf[2] = tolower(tabbuf[2]);
973         tabbuf[3] = 0;
974 }
975
976
977 /*
978  * Render the address book using info we gathered during the scan
979  */
980 void do_addrbook_view(struct addrbookent *addrbook, int num_ab) {
981         int i = 0;
982         int displayed = 0;
983         int bg = 0;
984         static int NAMESPERPAGE = 60;
985         int num_pages = 0;
986         int page = 0;
987         int tabfirst = 0;
988         char tabfirst_label[SIZ];
989         int tablast = 0;
990         char tablast_label[SIZ];
991
992         if (num_ab == 0) {
993                 wprintf("<I>This address book is empty.</I>\n");
994                 return;
995         }
996
997         if (num_ab > 1) {
998                 qsort(addrbook, num_ab, sizeof(struct addrbookent), abcmp);
999         }
1000
1001         num_pages = num_ab / NAMESPERPAGE;
1002
1003         page = atoi(bstr("page"));
1004
1005         wprintf("Page: ");
1006         for (i=0; i<=num_pages; ++i) {
1007                 if (i != page) {
1008                         wprintf("<A HREF=\"/readfwd?page=%d\">", i);
1009                 }
1010                 else {
1011                         wprintf("<B>");
1012                 }
1013                 tabfirst = i * NAMESPERPAGE;
1014                 tablast = tabfirst + NAMESPERPAGE - 1;
1015                 if (tablast > (num_ab - 1)) tablast = (num_ab - 1);
1016                 nametab(tabfirst_label, addrbook[tabfirst].ab_name);
1017                 nametab(tablast_label, addrbook[tablast].ab_name);
1018                 wprintf("[%s&nbsp;-&nbsp;%s]",
1019                         tabfirst_label, tablast_label
1020                 );
1021                 if (i != page) {
1022                         wprintf("</A>\n");
1023                 }
1024                 else {
1025                         wprintf("</B>\n");
1026                 }
1027         }
1028         wprintf("<br />\n");
1029
1030         wprintf("<TABLE border=0 cellspacing=0 "
1031                 "cellpadding=3 width=100%%>\n"
1032         );
1033
1034         for (i=0; i<num_ab; ++i) {
1035
1036                 if ((i / NAMESPERPAGE) == page) {
1037
1038                         if ((displayed % 4) == 0) {
1039                                 if (displayed > 0) {
1040                                         wprintf("</TR>\n");
1041                                 }
1042                                 bg = 1 - bg;
1043                                 wprintf("<TR BGCOLOR=\"#%s\">",
1044                                         (bg ? "DDDDDD" : "FFFFFF")
1045                                 );
1046                         }
1047         
1048                         wprintf("<TD>");
1049         
1050                         wprintf("<A HREF=\"/readfwd?startmsg=%ld&is_singlecard=1",
1051                                 addrbook[i].ab_msgnum);
1052                         wprintf("&maxmsgs=1&summary=0&alpha=%s\">", bstr("alpha"));
1053                         vcard_n_prettyize(addrbook[i].ab_name);
1054                         escputs(addrbook[i].ab_name);
1055                         wprintf("</A></TD>\n");
1056                         ++displayed;
1057                 }
1058         }
1059
1060         wprintf("</TR></TABLE>\n");
1061 }
1062
1063
1064
1065 /* 
1066  * load message pointers from the server
1067  */
1068 int load_msg_ptrs(char *servcmd)
1069 {
1070         char buf[SIZ];
1071         int nummsgs;
1072         int maxload = 0;
1073
1074         nummsgs = 0;
1075         maxload = sizeof(WC->msgarr) / sizeof(long) ;
1076         serv_puts(servcmd);
1077         serv_getln(buf, sizeof buf);
1078         if (buf[0] != '1') {
1079                 wprintf("<EM>%s</EM><br />\n", &buf[4]);
1080                 return (nummsgs);
1081         }
1082         while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1083                 if (nummsgs < maxload) {
1084                         WC->msgarr[nummsgs] = atol(buf);
1085                         ++nummsgs;
1086                 }
1087         }
1088         return (nummsgs);
1089 }
1090
1091
1092 /*
1093  * command loop for reading messages
1094  */
1095 void readloop(char *oper)
1096 {
1097         char cmd[SIZ];
1098         char buf[SIZ];
1099         char old_msgs[SIZ];
1100         int is_new = 0;
1101         int a, b;
1102         int nummsgs;
1103         long startmsg;
1104         int maxmsgs;
1105         int num_displayed = 0;
1106         int is_summary = 0;
1107         int is_addressbook = 0;
1108         int is_singlecard = 0;
1109         int is_calendar = 0;
1110         int is_tasks = 0;
1111         int is_notes = 0;
1112         int remaining_messages;
1113         int lo, hi;
1114         int lowest_displayed = (-1);
1115         int highest_displayed = 0;
1116         long pn_previous = 0L;
1117         long pn_current = 0L;
1118         long pn_next = 0L;
1119         int bg = 0;
1120         struct addrbookent *addrbook = NULL;
1121         int num_ab = 0;
1122
1123         startmsg = atol(bstr("startmsg"));
1124         maxmsgs = atoi(bstr("maxmsgs"));
1125         is_summary = atoi(bstr("summary"));
1126         if (maxmsgs == 0) maxmsgs = DEFAULT_MAXMSGS;
1127
1128         output_headers(1, 1, 1, 0, 0, 0, 0);
1129
1130         /* When in summary mode, always show ALL messages instead of just
1131          * new or old.  Otherwise, show what the user asked for.
1132          */
1133         if (!strcmp(oper, "readnew")) {
1134                 strcpy(cmd, "MSGS NEW");
1135         }
1136         else if (!strcmp(oper, "readold")) {
1137                 strcpy(cmd, "MSGS OLD");
1138         }
1139         else {
1140                 strcpy(cmd, "MSGS ALL");
1141         }
1142
1143         if ((WC->wc_view == VIEW_MAILBOX) && (maxmsgs > 1)) {
1144                 is_summary = 1;
1145                 strcpy(cmd, "MSGS ALL");
1146         }
1147
1148         if ((WC->wc_view == VIEW_ADDRESSBOOK) && (maxmsgs > 1)) {
1149                 is_addressbook = 1;
1150                 strcpy(cmd, "MSGS ALL");
1151                 maxmsgs = 32767;
1152         }
1153
1154         if (is_summary) {
1155                 strcpy(cmd, "MSGS ALL");
1156         }
1157
1158         /* Are we doing a summary view?  If so, we need to know old messages
1159          * and new messages, so we can do that pretty boldface thing for the
1160          * new messages.
1161          */
1162         strcpy(old_msgs, "");
1163         if (is_summary) {
1164                 serv_puts("GTSN");
1165                 serv_getln(buf, sizeof buf);
1166                 if (buf[0] == '2') {
1167                         strcpy(old_msgs, &buf[4]);
1168                 }
1169         }
1170
1171         is_singlecard = atoi(bstr("is_singlecard"));
1172
1173         if (WC->wc_view == VIEW_CALENDAR) {             /* calendar */
1174                 is_calendar = 1;
1175                 strcpy(cmd, "MSGS ALL");
1176                 maxmsgs = 32767;
1177         }
1178         if (WC->wc_view == VIEW_TASKS) {                /* tasks */
1179                 is_tasks = 1;
1180                 strcpy(cmd, "MSGS ALL");
1181                 maxmsgs = 32767;
1182         }
1183         if (WC->wc_view == VIEW_NOTES) {                /* notes */
1184                 is_notes = 1;
1185                 strcpy(cmd, "MSGS ALL");
1186                 maxmsgs = 32767;
1187         }
1188
1189         nummsgs = load_msg_ptrs(cmd);
1190         if (nummsgs == 0) {
1191
1192                 if ((!is_tasks) && (!is_calendar) && (!is_notes)) {
1193                         if (!strcmp(oper, "readnew")) {
1194                                 wprintf("<EM>No new messages.</EM>\n");
1195                         } else if (!strcmp(oper, "readold")) {
1196                                 wprintf("<EM>No old messages.</EM>\n");
1197                         } else {
1198                                 wprintf("<EM>No messages here.</EM>\n");
1199                         }
1200                 }
1201
1202                 goto DONE;
1203         }
1204
1205         if (startmsg == 0L) startmsg = WC->msgarr[0];
1206         remaining_messages = 0;
1207
1208         for (a = 0; a < nummsgs; ++a) {
1209                 if (WC->msgarr[a] >= startmsg) {
1210                         ++remaining_messages;
1211                 }
1212         }
1213
1214         wprintf("<form name=\"msgomatic\" "
1215                 "METHOD=\"POST\" ACTION=\"/do_stuff_to_msgs\">\n");
1216         if (is_summary) {
1217                 wprintf("<div id=\"fix_scrollbar_bug\">"
1218                         "<table border=0 cellspacing=0 "
1219                         "cellpadding=0 width=100%%>\n"
1220                         "<TR>"
1221                         "<TD><I>Subject</I></TD>"
1222                         "<TD><I>Sender</I></TD>"
1223                         "<TD><I>Date</I></TD>"
1224                         "<TD></TD>"
1225                         "</TR>\n"
1226                 );
1227         }
1228
1229         for (a = 0; a < nummsgs; ++a) {
1230                 if ((WC->msgarr[a] >= startmsg) && (num_displayed < maxmsgs)) {
1231
1232                         /* Are you a new message, or an old message? */
1233                         is_new = 0;
1234                         if (is_summary) {
1235                                 if (is_msg_in_mset(old_msgs, WC->msgarr[a])) {
1236                                         is_new = 0;
1237                                 }
1238                                 else {
1239                                         is_new = 1;
1240                                 }
1241                         }
1242
1243                         /* Learn which msgs "Prev" & "Next" buttons go to */
1244                         pn_current = WC->msgarr[a];
1245                         if (a > 0) pn_previous = WC->msgarr[a-1];
1246                         if (a < (nummsgs-1)) pn_next = WC->msgarr[a+1];
1247
1248                         /* If a tabular view, set up the line */
1249                         if (is_summary) {
1250                                 bg = 1 - bg;
1251                                 wprintf("<TR BGCOLOR=\"#%s\">",
1252                                         (bg ? "DDDDDD" : "FFFFFF")
1253                                 );
1254                         }
1255
1256                         /* Display the message */
1257                         if (is_summary) {
1258                                 summarize_message(WC->msgarr[a], is_new);
1259                         }
1260                         else if (is_addressbook) {
1261                                 fetch_ab_name(WC->msgarr[a], buf);
1262                                 ++num_ab;
1263                                 addrbook = realloc(addrbook,
1264                                         (sizeof(struct addrbookent) * num_ab) );
1265                                 safestrncpy(addrbook[num_ab-1].ab_name, buf,
1266                                         sizeof(addrbook[num_ab-1].ab_name));
1267                                 addrbook[num_ab-1].ab_msgnum = WC->msgarr[a];
1268                         }
1269                         else if (is_calendar) {
1270                                 display_calendar(WC->msgarr[a]);
1271                         }
1272                         else if (is_tasks) {
1273                                 display_task(WC->msgarr[a]);
1274                         }
1275                         else if (is_notes) {
1276                                 display_note(WC->msgarr[a]);
1277                         }
1278                         else {
1279                                 read_message(WC->msgarr[a]);
1280                         }
1281
1282                         /* If a tabular view, finish the line */
1283                         if (is_summary) {
1284                                 wprintf("</TR>\n");
1285                         }
1286
1287                         if (lowest_displayed < 0) lowest_displayed = a;
1288                         highest_displayed = a;
1289
1290                         ++num_displayed;
1291                         --remaining_messages;
1292                 }
1293         }
1294
1295         if (is_summary) {
1296                 wprintf("</table></div>\n");
1297         }
1298
1299         /* Bump these because although we're thinking in zero base, the user
1300          * is a drooling idiot and is thinking in one base.
1301          */
1302         ++lowest_displayed;
1303         ++highest_displayed;
1304
1305         /* If we're only looking at one message, do a prev/next thing */
1306         if (num_displayed == 1) {
1307            if ((!is_tasks) && (!is_calendar) && (!is_addressbook) && (!is_notes) && (!is_singlecard)) {
1308
1309                 wprintf("<div id=\"fix_scrollbar_bug\">"
1310                         "<table border=0 width=100%% bgcolor=\"#dddddd\"><tr><td>"
1311                         "Reading #%d of %d messages.</TD>\n"
1312                         "<TD ALIGN=RIGHT><FONT SIZE=+1>",
1313                         lowest_displayed, nummsgs);
1314
1315                 if (is_summary) {
1316                         wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" "
1317                                 "VALUE=\"Delete selected\">\n");
1318                 }
1319
1320                 if (pn_previous > 0L) {
1321                         wprintf("<A HREF=\"/%s"
1322                                 "?startmsg=%ld"
1323                                 "&maxmsgs=1"
1324                                 "&summary=0\">"
1325                                 "Previous</A> \n",
1326                                         oper,
1327                                         pn_previous );
1328                 }
1329
1330                 if (pn_next > 0L) {
1331                         wprintf("<A HREF=\"/%s"
1332                                 "?startmsg=%ld"
1333                                 "&maxmsgs=1"
1334                                 "&summary=0\">"
1335                                 "Next</A> \n",
1336                                         oper,
1337                                         pn_next );
1338                 }
1339
1340                 wprintf("<A HREF=\"/%s?startmsg=%ld"
1341                         "&maxmsgs=999999&summary=1\">"
1342                         "Summary"
1343                         "</A>",
1344                         oper,
1345                         WC->msgarr[0]);
1346
1347                 wprintf("</td></tr></table></div>\n");
1348             }
1349         }
1350
1351         /*
1352          * If we're not currently looking at ALL requested
1353          * messages, then display the selector bar
1354          */
1355         if (num_displayed > 1) {
1356            if ((!is_tasks) && (!is_calendar) && (!is_addressbook)
1357               && (!is_notes) && (!is_singlecard)) {
1358
1359                 wprintf("Reading #", lowest_displayed, highest_displayed);
1360
1361                 wprintf("<SELECT NAME=\"whichones\" SIZE=\"1\" "
1362                         "OnChange=\"location.href=msgomatic.whichones.options"
1363                         "[selectedIndex].value\">\n");
1364
1365                 for (b=0; b<nummsgs; b = b + maxmsgs) {
1366                 lo = b+1;
1367                 hi = b+maxmsgs;
1368                 if (hi > nummsgs) hi = nummsgs;
1369                         wprintf("<OPTION %s VALUE="
1370                                 "\"/%s"
1371                                 "?startmsg=%ld"
1372                                 "&maxmsgs=%d"
1373                                 "&summary=%d\">"
1374                                 "%d-%d</OPTION> \n",
1375                                 ((WC->msgarr[b] == startmsg) ? "SELECTED" : ""),
1376                                 oper,
1377                                 WC->msgarr[b],
1378                                 maxmsgs,
1379                                 is_summary,
1380                                 lo, hi);
1381                 }
1382                 wprintf("<OPTION VALUE=\"/%s?startmsg=%ld"
1383                         "&maxmsgs=999999&summary=%d\">"
1384                         "ALL"
1385                         "</OPTION> ",
1386                         oper,
1387                         WC->msgarr[0], is_summary);
1388
1389                 wprintf("</SELECT> of %d messages.", nummsgs);
1390
1391                 if (is_summary) {
1392                         wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" "
1393                                 "VALUE=\"Delete selected\">\n");
1394                 }
1395
1396             }
1397         }
1398         wprintf("</form>\n");
1399
1400 DONE:
1401         if (is_tasks) {
1402                 do_tasks_view();        /* Render the task list */
1403         }
1404
1405         if (is_calendar) {
1406                 do_calendar_view();     /* Render the calendar */
1407         }
1408
1409         if (is_addressbook) {
1410                 do_addrbook_view(addrbook, num_ab);     /* Render the address book */
1411         }
1412
1413         wDumpContent(1);
1414         if (addrbook != NULL) free(addrbook);
1415 }
1416
1417
1418 /*
1419  * Back end for post_message() ... this is where the actual message
1420  * gets transmitted to the server.
1421  */
1422 void post_mime_to_server(void) {
1423         char boundary[SIZ];
1424         int is_multipart = 0;
1425         static int seq = 0;
1426         struct wc_attachment *att;
1427         char *encoded;
1428         size_t encoded_length;
1429
1430         /* If there are attachments, we have to do multipart/mixed */
1431         if (WC->first_attachment != NULL) {
1432                 is_multipart = 1;
1433         }
1434
1435         if (is_multipart) {
1436                 sprintf(boundary, "---Citadel-Multipart-%s-%04x%04x---",
1437                         serv_info.serv_fqdn,
1438                         getpid(),
1439                         ++seq
1440                 );
1441
1442                 /* Remember, serv_printf() appends an extra newline */
1443                 serv_printf("Content-type: multipart/mixed; "
1444                         "boundary=\"%s\"\n", boundary);
1445                 serv_printf("This is a multipart message in MIME format.\n");
1446                 serv_printf("--%s", boundary);
1447         }
1448
1449         serv_puts("Content-type: text/html");
1450         serv_puts("");
1451         serv_puts("<HTML><BODY>\n");
1452         text_to_server(bstr("msgtext"), 0);
1453         serv_puts("</BODY></HTML>\n");
1454         
1455
1456         if (is_multipart) {
1457
1458                 /* Add in the attachments */
1459                 for (att = WC->first_attachment; att!=NULL; att=att->next) {
1460
1461                         encoded_length = ((att->length * 150) / 100);
1462                         encoded = malloc(encoded_length);
1463                         if (encoded == NULL) break;
1464                         CtdlEncodeBase64(encoded, att->data, att->length);
1465
1466                         serv_printf("--%s", boundary);
1467                         serv_printf("Content-type: %s", att->content_type);
1468                         serv_printf("Content-disposition: attachment; "
1469                                 "filename=\"%s\"", att->filename);
1470                         serv_puts("Content-transfer-encoding: base64");
1471                         serv_puts("");
1472                         serv_write(encoded, strlen(encoded));
1473                         serv_puts("");
1474                         serv_puts("");
1475                         free(encoded);
1476                 }
1477                 serv_printf("--%s--", boundary);
1478         }
1479
1480         serv_puts("000");
1481 }
1482
1483
1484 /*
1485  * Post message (or don't post message)
1486  *
1487  * Note regarding the "dont_post" variable:
1488  * A random value (actually, it's just a timestamp) is inserted as a hidden
1489  * field called "postseq" when the display_enter page is generated.  This
1490  * value is checked when posting, using the static variable dont_post.  If a
1491  * user attempts to post twice using the same dont_post value, the message is
1492  * discarded.  This prevents the accidental double-saving of the same message
1493  * if the user happens to click the browser "back" button.
1494  */
1495 void post_message(void)
1496 {
1497         char buf[SIZ];
1498         static long dont_post = (-1L);
1499         struct wc_attachment *att, *aptr;
1500
1501         if (WC->upload_length > 0) {
1502
1503                 /* There's an attachment.  Save it to this struct... */
1504                 att = malloc(sizeof(struct wc_attachment));
1505                 memset(att, 0, sizeof(struct wc_attachment));
1506                 att->length = WC->upload_length;
1507                 strcpy(att->content_type, WC->upload_content_type);
1508                 strcpy(att->filename, WC->upload_filename);
1509                 att->next = NULL;
1510
1511                 /* And add it to the list. */
1512                 if (WC->first_attachment == NULL) {
1513                         WC->first_attachment = att;
1514                 }
1515                 else {
1516                         aptr = WC->first_attachment;
1517                         while (aptr->next != NULL) aptr = aptr->next;
1518                         aptr->next = att;
1519                 }
1520
1521                 /* Netscape sends a simple filename, which is what we want,
1522                  * but Satan's browser sends an entire pathname.  Reduce
1523                  * the path to just a filename if we need to.
1524                  */
1525                 while (num_tokens(att->filename, '/') > 1) {
1526                         remove_token(att->filename, 0, '/');
1527                 }
1528                 while (num_tokens(att->filename, '\\') > 1) {
1529                         remove_token(att->filename, 0, '\\');
1530                 }
1531
1532                 /* Transfer control of this memory from the upload struct
1533                  * to the attachment struct.
1534                  */
1535                 att->data = WC->upload;
1536                 WC->upload_length = 0;
1537                 WC->upload = NULL;
1538                 display_enter();
1539                 return;
1540         }
1541
1542         if (!strcasecmp(bstr("sc"), "Cancel")) {
1543                 sprintf(WC->ImportantMessage, 
1544                         "Cancelled.  Message was not posted.");
1545         } else if (!strcasecmp(bstr("attach"), "Add")) {
1546                 display_enter();
1547                 return;
1548         } else if (atol(bstr("postseq")) == dont_post) {
1549                 sprintf(WC->ImportantMessage, 
1550                         "Automatically cancelled because you have already "
1551                         "saved this message.");
1552         } else {
1553                 sprintf(buf, "ENT0 1|%s|0|4|%s",
1554                         bstr("recp"),
1555                         bstr("subject") );
1556                 serv_puts(buf);
1557                 serv_getln(buf, sizeof buf);
1558                 if (buf[0] == '4') {
1559                         post_mime_to_server();
1560                         if (strlen(bstr("recp")) > 0) {
1561                                 sprintf(WC->ImportantMessage, "Message has been sent.\n");
1562                         }
1563                         else {
1564                                 sprintf(WC->ImportantMessage, "Message has been posted.\n");
1565                         }
1566                         dont_post = atol(bstr("postseq"));
1567                 } else {
1568                         sprintf(WC->ImportantMessage, 
1569                                 "%s", &buf[4]);
1570                 }
1571         }
1572
1573         free_attachments(WC);
1574         readloop("readnew");
1575 }
1576
1577
1578
1579
1580 /*
1581  * display the message entry screen
1582  */
1583 void display_enter(void)
1584 {
1585         char buf[SIZ];
1586         long now;
1587         struct wc_attachment *att;
1588
1589         if (strlen(bstr("force_room")) > 0) {
1590                 gotoroom(bstr("force_room"));
1591         }
1592
1593         /* Are we perhaps in an address book view?  If so, then an "enter
1594          * message" command really means "add new entry."
1595          */
1596         if (WC->wc_view == VIEW_ADDRESSBOOK) {
1597                 do_edit_vcard(-1, "", "");
1598                 return;
1599         }
1600
1601 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
1602         /* Are we perhaps in a calendar view?  If so, then an "enter
1603          * message" command really means "add new calendar item."
1604          */
1605         if (WC->wc_view == VIEW_CALENDAR) {
1606                 display_edit_event();
1607                 return;
1608         }
1609
1610         /* Are we perhaps in a tasks view?  If so, then an "enter
1611          * message" command really means "add new task."
1612          */
1613         if (WC->wc_view == VIEW_TASKS) {
1614                 display_edit_task();
1615                 return;
1616         }
1617 #endif
1618
1619         /* Otherwise proceed normally.  Do a custom room banner with no navbar... */
1620         output_headers(1, 1, 2, 0, 0, 0, 0);
1621         wprintf("<div id=\"banner\">\n");
1622         embed_room_banner(NULL, navbar_none);
1623         wprintf("</div>\n");
1624         wprintf("<div id=\"content\">\n"
1625                 "<div id=\"fix_scrollbar_bug\">"
1626                 "<table width=100%% border=0 bgcolor=\"#ffffff\"><tr><td>");
1627
1628         sprintf(buf, "ENT0 0|%s|0|0", bstr("recp"));
1629         serv_puts(buf);
1630         serv_getln(buf, sizeof buf);
1631
1632         if (!strncmp(buf, "570", 3)) {
1633                 if (strlen(bstr("recp")) > 0) {
1634                         svprintf("RECPERROR", WCS_STRING,
1635                                 "<SPAN CLASS=\"errormsg\">%s</SPAN><br />\n",
1636                                 &buf[4]
1637                         );
1638                 }
1639                 do_template("prompt_for_recipient");
1640                 goto DONE;
1641         }
1642         if (buf[0] != '2') {
1643                 wprintf("<EM>%s</EM><br />\n", &buf[4]);
1644                 goto DONE;
1645         }
1646
1647         now = time(NULL);
1648         fmt_date(buf, now, 0);
1649         strcat(&buf[strlen(buf)], " <I>from</I> ");
1650         stresc(&buf[strlen(buf)], WC->wc_username, 1, 1);
1651         if (strlen(bstr("recp")) > 0) {
1652                 strcat(&buf[strlen(buf)], " <I>to</I> ");
1653                 stresc(&buf[strlen(buf)], bstr("recp"), 1, 1);
1654         }
1655         strcat(&buf[strlen(buf)], " <I>in</I> ");
1656         stresc(&buf[strlen(buf)], WC->wc_roomname, 1, 1);
1657
1658         /* begin message entry screen */
1659         // wprintf("<div style=\"position:absolute; left:1%%; width:96%%; height:100%%\">\n");
1660
1661         wprintf("<form enctype=\"multipart/form-data\" "
1662                 "method=\"POST\" action=\"/post\" "
1663                 "name=\"enterform\""
1664                 "onSubmit=\"return submitForm();\""
1665                 ">\n");
1666         wprintf("<input type=\"hidden\" name=\"recp\" value=\"%s\">\n",
1667                 bstr("recp"));
1668         wprintf("<input type=\"hidden\" name=\"postseq\" value=\"%ld\">\n",
1669                 now);
1670
1671         wprintf("%s<br>\n", buf);       /* header bar */
1672         wprintf("<img src=\"static/enter.gif\" align=middle alt=\" \">");
1673                 /* "onLoad=\"document.enterform.msgtext.focus();\" " */
1674         wprintf("<font size=-1>Subject (optional):</font>"
1675                 "<input type=\"text\" name=\"subject\" value=\"");
1676         escputs(bstr("subject"));
1677         wprintf("\" size=40 maxlength=70>"
1678                 "&nbsp;"
1679         );
1680
1681         wprintf("<input type=\"submit\" name=\"sc\" value=\"");
1682         if (strlen(bstr("recp")) > 0) {
1683                 wprintf("Send message");
1684         } else {
1685                 wprintf("Post message");
1686         }
1687         wprintf("\">&nbsp;"
1688                 "<input type=\"submit\" name=\"sc\" value=\"Cancel\">\n");
1689
1690         wprintf("<center><script type=\"text/javascript\" "
1691                 "src=\"static/richtext.js\"></script>\n"
1692                 "<script type=\"text/javascript\">\n"
1693                 "function submitForm() { \n"
1694                 "  updateRTE('msgtext'); \n"
1695                 "  return true; \n"
1696                 "} \n"
1697                 "  \n"
1698                 "initRTE(\"static/\", \"static/\", \"\"); \n"
1699                 "</script> \n"
1700                 "<noscript>JavaScript must be enabled.</noscript> \n"
1701                 "<script type=\"text/javascript\"> \n"
1702                 "writeRichText('msgtext', '");
1703         msgescputs(bstr("msgtext"));
1704         wprintf("', '96%%', '200', true, false); \n"
1705                 "</script></center><br />\n");
1706
1707         /* Enumerate any attachments which are already in place... */
1708         wprintf("<img src=\"/static/attachment.gif\" border=0 "
1709                 "align=middle height=16 width=16> Attachments: ");
1710         wprintf("<select name=\"which_attachment\" size=1>");
1711         for (att = WC->first_attachment; att != NULL; att = att->next) {
1712                 wprintf("<option value=\"");
1713                 urlescputs(att->filename);
1714                 wprintf("\">");
1715                 escputs(att->filename);
1716                 /* wprintf(" (%s, %d bytes)",att->content_type,att->length); */
1717                 wprintf("</option>\n");
1718         }
1719         wprintf("</select>");
1720
1721         /* Now offer the ability to attach additional files... */
1722         wprintf("&nbsp;&nbsp;&nbsp;"
1723                 "Attach file: <input NAME=\"attachfile\" "
1724                 "SIZE=16 TYPE=\"file\">\n&nbsp;&nbsp;"
1725                 "<input type=\"submit\" name=\"attach\" value=\"Add\">\n");
1726
1727         wprintf("</form>\n");
1728
1729         wprintf("</td></tr></table></div>\n");
1730 DONE:   wDumpContent(1);
1731 }
1732
1733
1734
1735
1736
1737
1738
1739
1740 void delete_msg(void)
1741 {
1742         long msgid;
1743         char buf[SIZ];
1744
1745         msgid = atol(bstr("msgid"));
1746
1747         output_headers(1, 1, 1, 0, 0, 0, 0);
1748
1749         sprintf(buf, "DELE %ld", msgid);
1750         serv_puts(buf);
1751         serv_getln(buf, sizeof buf);
1752         wprintf("<EM>%s</EM><br />\n", &buf[4]);
1753
1754         wDumpContent(1);
1755 }
1756
1757
1758
1759
1760 /*
1761  * Confirm move of a message
1762  */
1763 void confirm_move_msg(void)
1764 {
1765         long msgid;
1766         char buf[SIZ];
1767         char targ[SIZ];
1768
1769         msgid = atol(bstr("msgid"));
1770
1771         output_headers(1, 1, 1, 0, 0, 0, 0);
1772
1773         wprintf("<div id=\"fix_scrollbar_bug\">"
1774                 "<table width=100%% border=0 bgcolor=\"#444455\"><tr><td>");
1775         wprintf("<font size=+1 color=\"#ffffff\"");
1776         wprintf("<b>Confirm move of message</b>\n");
1777         wprintf("</font></td></tr></table></div>\n");
1778
1779         wprintf("<CENTER>");
1780
1781         wprintf("Move this message to:<br />\n");
1782
1783         wprintf("<form METHOD=\"POST\" ACTION=\"/move_msg\">\n");
1784         wprintf("<INPUT TYPE=\"hidden\" NAME=\"msgid\" VALUE=\"%s\">\n",
1785                 bstr("msgid"));
1786
1787
1788         wprintf("<SELECT NAME=\"target_room\" SIZE=5>\n");
1789         serv_puts("LKRA");
1790         serv_getln(buf, sizeof buf);
1791         if (buf[0] == '1') {
1792                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1793                         extract_token(targ, buf, 0, '|', sizeof targ);
1794                         wprintf("<OPTION>");
1795                         escputs(targ);
1796                         wprintf("\n");
1797                 }
1798         }
1799         wprintf("</SELECT>\n");
1800         wprintf("<br />\n");
1801
1802         wprintf("<INPUT TYPE=\"submit\" NAME=\"yesno\" VALUE=\"Move\">");
1803         wprintf("&nbsp;");
1804         wprintf("<INPUT TYPE=\"submit\" NAME=\"yesno\" VALUE=\"Cancel\">");
1805         wprintf("</form></CENTER>\n");
1806
1807         wprintf("</CENTER>\n");
1808         wDumpContent(1);
1809 }
1810
1811
1812
1813 void move_msg(void)
1814 {
1815         long msgid;
1816         char buf[SIZ];
1817
1818         msgid = atol(bstr("msgid"));
1819
1820         output_headers(1, 1, 1, 0, 0, 0, 0);
1821
1822         if (!strcasecmp(bstr("yesno"), "Move")) {
1823                 sprintf(buf, "MOVE %ld|%s", msgid, bstr("target_room"));
1824                 serv_puts(buf);
1825                 serv_getln(buf, sizeof buf);
1826                 wprintf("<EM>%s</EM><br />\n", &buf[4]);
1827         } else {
1828                 wprintf("<EM>Message not moved.</EM><br />\n");
1829         }
1830
1831         wDumpContent(1);
1832 }
1833
1834 /*
1835  * This gets called when a user selects multiple messages in a summary
1836  * list and then clicks to perform a transformation of some sort on them
1837  * (such as deleting them).
1838  */
1839 void do_stuff_to_msgs(void) {
1840         char buf[SIZ];
1841         char sc[SIZ];
1842
1843         struct stuff_t {
1844                 struct stuff_t *next;
1845                 long msgnum;
1846         };
1847
1848         struct stuff_t *stuff = NULL;
1849         struct stuff_t *ptr;
1850
1851
1852         serv_puts("MSGS ALL");
1853         serv_getln(buf, sizeof buf);
1854
1855         if (buf[0] == '1') while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1856                 ptr = malloc(sizeof(struct stuff_t));
1857                 ptr->msgnum = atol(buf);
1858                 ptr->next = stuff;
1859                 stuff = ptr;
1860         }
1861
1862         strcpy(sc, bstr("sc"));
1863
1864         while (stuff != NULL) {
1865
1866                 sprintf(buf, "msg_%ld", stuff->msgnum);
1867                 if (!strcasecmp(bstr(buf), "yes")) {
1868
1869                         if (!strcasecmp(sc, "Delete selected")) {
1870                                 serv_printf("DELE %ld", stuff->msgnum);
1871                                 serv_getln(buf, sizeof buf);
1872                         }
1873
1874                 }
1875
1876                 ptr = stuff->next;
1877                 free(stuff);
1878                 stuff = ptr;
1879         }
1880
1881         readloop("readfwd");
1882 }