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