]> code.citadel.org Git - citadel.git/blobdiff - webcit/roomops.c
* Repaired all my b0rken COLOR tags
[citadel.git] / webcit / roomops.c
index 7e93e37daa8a77f88bc8c9b48301284ba760fe31..66ffe4dd46c5d9f915890aaa1a4d748f4a2d38c5 100644 (file)
 #include "webcit.h"
 
 
+char *viewdefs[] = {
+       "Messages",
+       "Summary",
+       "Address Book",
+       "Calendar",
+       "Tasks"
+};
 
-
-
-
-
-char floorlist[128][256];
-
+char floorlist[128][SIZ];
 
 /*
  * load the list of floors
@@ -37,7 +39,7 @@ char floorlist[128][256];
 void load_floorlist(void)
 {
        int a;
-       char buf[256];
+       char buf[SIZ];
 
        for (a = 0; a < 128; ++a)
                floorlist[a][0] = 0;
@@ -150,7 +152,7 @@ int rordercmp(struct roomlisting *r1, struct roomlisting *r2)
  */
 void listrms(char *variety)
 {
-       char buf[256];
+       char buf[SIZ];
        int num_rooms = 0;
 
        struct roomlisting *rl = NULL;
@@ -215,16 +217,13 @@ void listrms(char *variety)
 
 
 /*
- * list all rooms by floor
+ * list all rooms by floor (only should get called from knrooms() because
+ * that's where output_headers() is called from)
  */
 void list_all_rooms_by_floor(void)
 {
        int a;
-       char buf[256];
-
-       load_floorlist();
-
-       output_headers(1);
+       char buf[SIZ];
 
        wprintf("<TABLE width=100%% border><TR><TH>Floor</TH>");
        wprintf("<TH>Rooms with new messages</TH>");
@@ -271,9 +270,8 @@ void list_all_rooms_by_floor(void)
 void zapped_list(void)
 {
        output_headers(1);
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770000><TR><TD>");
-       wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-       wprintf("<B>Zapped (forgotten) rooms</B>\n");
+       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#770000\"><TR><TD>");
+       wprintf("<SPAN CLASS=\"titlebar\">Zapped (forgotten) rooms</SPAN>\n");
        wprintf("</TD></TR></TABLE><BR>\n");
        listrms("LZRM -1");
        wprintf("<BR><BR>\n");
@@ -287,14 +285,12 @@ void zapped_list(void)
  */
 void readinfo(void)
 {
-       char buf[256];
+       char buf[SIZ];
 
        serv_puts("RINF");
        serv_gets(buf);
        if (buf[0] == '1') {
-               wprintf("<FONT SIZE=-1>");
                fmout(NULL);
-               wprintf("</FONT>");
        }
 }
 
@@ -307,12 +303,12 @@ void readinfo(void)
  * another room.
  */
 void embed_room_graphic(void) {
-       char buf[256];
+       char buf[SIZ];
 
        serv_puts("OIMG _roompic_");
        serv_gets(buf);
        if (buf[0] == '2') {
-               wprintf("<TD>");
+               wprintf("<TD BGCOLOR=\"#444455\">");
                wprintf("<IMG SRC=\"/image&name=_roompic_&room=");
                urlescputs(WC->wc_roomname);
                wprintf("\"></TD>");
@@ -327,19 +323,56 @@ void embed_room_graphic(void) {
  */
 void embed_newmail_button(void) {
        if ( (WC->new_mail > WC->remember_new_mail) && (WC->new_mail>0) ) {
-               wprintf("<TD VALIGN=TOP>"
+               wprintf(
+                       "<A HREF=\"/dotgoto?room=_MAIL_\">"
                        "<IMG SRC=\"/static/mail.gif\" border=0 "
                        "ALT=\"You have new mail\">"
-                       "<BR><BLINK>%d</BLINK>", WC->new_mail);
-               wprintf("<FONT SIZE=-2> new mail messages</FONT></TD>");
+                       "<BR><SPAN CLASS=\"youhavemail\">"
+                       "%d new mail</SPAN></A>", WC->new_mail);
                WC->remember_new_mail = WC->new_mail;
        }
 }
 
 
 
+/*
+ * Display the current view and offer an option to change it
+ */
+void embed_view_o_matic(void) {
+       int i;
+
+       wprintf("<FORM NAME=\"viewomatic\">\n"
+               "<SELECT NAME=\"newview\" SIZE=\"1\" "
+               "OnChange=\"location.href=viewomatic.newview.options"
+               "[selectedIndex].value\">\n");
+
+       for (i=0; i<(sizeof viewdefs / sizeof (char *)); ++i) {
+               /*
+                * Only offer the views that make sense, given the default
+                * view for the room.  For example, don't offer a Calendar
+                * view in a non-Calendar room.
+                */
+               if (
+                       (i == WC->wc_view)
+                  ||   (i == WC->wc_default_view)
+                  ||   ( (i == 0) && (WC->wc_default_view == 1) )
+                  ||   ( (i == 1) && (WC->wc_default_view == 0) )
+               ) {
+
+                       wprintf("<OPTION %s VALUE=\"/changeview?view=%d\">",
+                               ((i == WC->wc_view) ? "SELECTED" : ""),
+                               i );
+                       escputs(viewdefs[i]);
+                       wprintf("</OPTION>\n");
+               }
+       }
+       wprintf("</SELECT></FORM>\n");
+}
+
+
+
 void embed_room_banner(char *got) {
-       char fakegot[256];
+       char fakegot[SIZ];
 
        /* We need to have the information returned by a GOTO server command.
         * If it isn't supplied, we fake it by issuing our own GOTO.
@@ -350,8 +383,16 @@ void embed_room_banner(char *got) {
                got = fakegot;
        }
 
+       /* If the user happens to select the "make this my start page" link,
+        * we want it to remember the URL as a "/dotskip" one instead of
+        * a "skip" or "gotonext" or something like that.
+        */
+       snprintf(WC->this_page, sizeof(WC->this_page), "/dotskip&room=%s",
+               WC->wc_roomname);
+
        /* Check for new mail. */
        WC->new_mail = extract_int(&got[4], 9);
+       WC->wc_view = extract_int(&got[4], 11);
 
        svprintf("ROOMNAME", WCS_STRING, "%s", WC->wc_roomname);
        svprintf("NEWMSGS", WCS_STRING, "%d", extract_int(&got[4], 1));
@@ -359,8 +400,10 @@ void embed_room_banner(char *got) {
        svcallback("ROOMPIC", embed_room_graphic);
        svcallback("ROOMINFO", readinfo);
        svcallback("YOUHAVEMAIL", embed_newmail_button);
+       svcallback("VIEWOMATIC", embed_view_o_matic);
+       svcallback("START", offer_start_page);
 
-       do_template("roombanner.html");
+       do_template("roombanner");
        clear_local_substs();
 }
 
@@ -377,7 +420,7 @@ void embed_room_banner(char *got) {
  */
 void gotoroom(char *gname, int display_name)
 {
-       char buf[256];
+       char buf[SIZ];
        static long ls = (-1L);
 
 
@@ -387,9 +430,12 @@ void gotoroom(char *gname, int display_name)
                 wprintf("Cache-Control: no-store\n");
 
                wprintf("<HTML><HEAD>\n"
+                       "<META HTTP-EQUIV=\"refresh\" CONTENT=\"500363689;\">\n"
                        "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n"
+                       "<META HTTP-EQUIV=\"expired\" CONTENT=\"28-May-1971 18:10:00 GMT\">\n"
+                       "<meta name=\"MSSmartTagsPreventParsing\" content=\"TRUE\">\n"
                        "</HEAD>\n");
-               do_template("background.html");
+               do_template("background");
        }
        if (display_name != 2) {
                /* store ungoto information */
@@ -432,6 +478,8 @@ void gotoroom(char *gname, int display_name)
                wDumpContent(1);
        }
        strcpy(WC->wc_roomname, WC->wc_roomname);
+       WC->wc_view = extract_int(&buf[4], 11);
+       WC->wc_default_view = extract_int(&buf[4], 12);
 }
 
 
@@ -441,7 +489,7 @@ void gotoroom(char *gname, int display_name)
  */
 char *pop_march(int desired_floor)
 {
-       static char TheRoom[64];
+       static char TheRoom[128];
        int TheFloor = 0;
        int TheOrder = 32767;
        int TheWeight = 0;
@@ -483,9 +531,9 @@ char *pop_march(int desired_floor)
  */
 void gotonext(void)
 {
-       char buf[256];
+       char buf[SIZ];
        struct march *mptr, *mptr2;
-       char next_room[32];
+       char next_room[128];
 
        /* First check to see if the march-mode list is already allocated.
         * If it is, pop the first room off the list and go there.
@@ -553,7 +601,7 @@ void smart_goto(char *next_room) {
  */
 void slrp_highest(void)
 {
-       char buf[256];
+       char buf[SIZ];
 
        /* set pointer */
        serv_puts("SLRP HIGHEST");
@@ -570,7 +618,7 @@ void slrp_highest(void)
  */
 void ungoto(void)
 {
-       char buf[256];
+       char buf[SIZ];
 
        if (!strcmp(WC->ugname, "")) {
                smart_goto(WC->wc_roomname);
@@ -591,19 +639,94 @@ void ungoto(void)
        smart_goto(buf);
 }
 
+
+
+
+
+/*
+ * Set/clear/read the "self-service list subscribe" flag for a room
+ * 
+ * Set 'newval' to 0 to clear, 1 to set, any other value to leave unchanged.
+ * Always returns the new value.
+ */
+
+int self_service(int newval) {
+       int current_value = 0;
+       char buf[SIZ];
+       
+       char name[SIZ];
+       char password[SIZ];
+       char dirname[SIZ];
+       int flags, floor, order, view, flags2;
+
+       serv_puts("GETR");
+       serv_gets(buf);
+       if (buf[0] != '2') return(0);
+
+       extract(name, &buf[4], 0);
+       extract(password, &buf[4], 1);
+       extract(dirname, &buf[4], 2);
+       flags = extract_int(&buf[4], 3);
+       floor = extract_int(&buf[4], 4);
+       order = extract_int(&buf[4], 5);
+       view = extract_int(&buf[4], 6);
+       flags2 = extract_int(&buf[4], 7);
+
+       if (flags2 & QR2_SELFLIST) {
+               current_value = 1;
+       }
+       else {
+               current_value = 0;
+       }
+
+       if (newval == 1) {
+               flags2 = flags2 | QR2_SELFLIST;
+       }
+       else if (newval == 0) {
+               flags2 = flags2 & ~QR2_SELFLIST;
+       }
+       else {
+               return(current_value);
+       }
+
+       if (newval != current_value) {
+               serv_printf("SETR %s|%s|%s|%d|0|%d|%d|%d|%d",
+                       name, password, dirname, flags,
+                       floor, order, view, flags2);
+               serv_gets(buf);
+       }
+
+       return(newval);
+
+}
+
+
+
+
+
+
 /*
  * display the form for editing a room
  */
 void display_editroom(void)
 {
-       char buf[256];
+       char buf[SIZ];
+       char cmd[SIZ];
+       char node[SIZ];
+       char recp[SIZ];
        char er_name[20];
        char er_password[10];
        char er_dirname[15];
        char er_roomaide[26];
        unsigned er_flags;
        int er_floor;
-       int i;
+       int i, j;
+       char *tab;
+       char *shared_with;
+       char *not_shared_with;
+
+       tab = bstr("tab");
+       if (strlen(tab) == 0) tab = "admin";
 
        serv_puts("GETR");
        serv_gets(buf);
@@ -618,167 +741,419 @@ void display_editroom(void)
        er_flags = extract_int(&buf[4], 3);
        er_floor = extract_int(&buf[4], 4);
 
-
        output_headers(1);
 
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=000077><TR><TD>");
-       wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-       wprintf("<B>Room administration</B>\n");
-       wprintf("</FONT></TD></TR></TABLE>\n");
+       /* print the tabbed dialog */
+       wprintf("<TABLE border=0 cellspacing=0 cellpadding=0 width=100%%>"
+               "<TR ALIGN=CENTER BGCOLOR=\"#FFFFFF\">"
+               "<TD>&nbsp;</TD>\n");
 
-       wprintf("<UL>"
-               "<LI><A HREF=\"/confirm_delete_room\">\n"
-               "Delete this room</A>\n"
-               "<LI><A HREF=\"/display_editroompic\">\n"
-               "Set or change the graphic for this room's banner</A>\n"
-               "<LI><A HREF=\"/display_editinfo\">\n"
-               "Edit this room's Info file</A>\n"
-               "</UL>");
+       if (!strcmp(tab, "admin")) {
+               wprintf("<TD BGCOLOR=\"#000077\"><SPAN CLASS=\"tablabel\">");
+       }
+       else {
+               wprintf("<TD BGCOLOR=\"#AAAAAA\"><A HREF=\"/display_editroom&tab=admin\">");
+       }
+       wprintf("Room administration");
+       if (!strcmp(tab, "admin")) {
+               wprintf("</SPAN></TD>\n");
+       }
+       else {
+               wprintf("</A></TD>\n");
+       }
 
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=000077><TR><TD>");
-       wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-       wprintf("<B>Room editing</B>\n");
-       wprintf("</FONT></TD></TR></TABLE>\n");
+       wprintf("<TD>&nbsp;</TD>\n");
 
-       wprintf("<FORM METHOD=\"POST\" ACTION=\"/editroom\">\n");
+       if (!strcmp(tab, "config")) {
+               wprintf("<TD BGCOLOR=\"#000077\"><SPAN CLASS=\"tablabel\">");
+       }
+       else {
+               wprintf("<TD BGCOLOR=\"#AAAAAA\"><A HREF=\"/display_editroom&tab=config\">");
+       }
+       wprintf("Room configuration");
+       if (!strcmp(tab, "config")) {
+               wprintf("</SPAN></TD>\n");
+       }
+       else {
+               wprintf("</A></TD>\n");
+       }
 
-       wprintf("<UL><LI>Name of room: ");
-       wprintf("<INPUT TYPE=\"text\" NAME=\"er_name\" VALUE=\"%s\" MAXLENGTH=\"19\">\n", er_name);
+       wprintf("<TD>&nbsp;</TD>\n");
 
-       wprintf("<LI>Resides on floor: ");
-       load_floorlist();
-       wprintf("<SELECT NAME=\"er_floor\" SIZE=\"1\">\n");
-       for (i = 0; i < 128; ++i)
-               if (strlen(floorlist[i]) > 0) {
-                       wprintf("<OPTION ");
-                       if (i == er_floor)
-                               wprintf("SELECTED ");
-                       wprintf("VALUE=\"%d\">", i);
-                       escputs(floorlist[i]);
-                       wprintf("</OPTION>\n");
-               }
-       wprintf("</SELECT>\n");
+       if (!strcmp(tab, "sharing")) {
+               wprintf("<TD BGCOLOR=\"#000077\"><SPAN CLASS=\"tablabel\">");
+       }
+       else {
+               wprintf("<TD BGCOLOR=\"#AAAAAA\"><A HREF=\"/display_editroom&tab=sharing\">");
+       }
+       wprintf("Sharing");
+       if (!strcmp(tab, "sharing")) {
+               wprintf("</SPAN></TD>\n");
+       }
+       else {
+               wprintf("</A></TD>\n");
+       }
 
-       wprintf("<LI>Type of room:<UL>\n");
+       wprintf("<TD>&nbsp;</TD>\n");
 
-       wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"public\" ");
-       if ((er_flags & QR_PRIVATE) == 0)
-               wprintf("CHECKED ");
-       wprintf("> Public room\n");
+       if (!strcmp(tab, "listserv")) {
+               wprintf("<TD BGCOLOR=\"#000077\"><SPAN CLASS=\"tablabel\">");
+       }
+       else {
+               wprintf("<TD BGCOLOR=\"#AAAAAA\"><A HREF=\"/display_editroom&tab=listserv\">");
+       }
+       wprintf("Mailing list service");
+       if (!strcmp(tab, "listserv")) {
+               wprintf("</SPAN></TD>\n");
+       }
+       else {
+               wprintf("</A></TD>\n");
+       }
 
-       wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"guessname\" ");
-       if ((er_flags & QR_PRIVATE) &&
-           (er_flags & QR_GUESSNAME))
-               wprintf("CHECKED ");
-       wprintf("> Private - guess name\n");
+       wprintf("<TD>&nbsp;</TD></TR>"
+               "<TR><TD BGCOLOR=\"#000077\" COLSPAN=9 HEIGHT=5> </TD></TR>"
+               "</TABLE>\n");
 
-       wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"passworded\" ");
-       if ((er_flags & QR_PRIVATE) &&
-           (er_flags & QR_PASSWORDED))
-               wprintf("CHECKED ");
-       wprintf("> Private - require password:\n");
-       wprintf("<INPUT TYPE=\"text\" NAME=\"er_password\" VALUE=\"%s\" MAXLENGTH=\"9\">\n", er_password);
+       /* end tabbed dialog */ 
 
-       wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"invonly\" ");
-       if ((er_flags & QR_PRIVATE)
-           && ((er_flags & QR_GUESSNAME) == 0)
-           && ((er_flags & QR_PASSWORDED) == 0))
-               wprintf("CHECKED ");
-       wprintf("> Private - invitation only\n");
 
-       wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"bump\" VALUE=\"yes\" ");
-       wprintf("> If private, cause current users to forget room\n");
+       if (!strcmp(tab, "admin")) {
+               wprintf("<UL>"
+                       "<LI><A HREF=\"/confirm_delete_room\">\n"
+                       "Delete this room</A>\n"
+                       "<LI><A HREF=\"/display_editroompic\">\n"
+                       "Set or change the graphic for this room's banner</A>\n"
+                       "<LI><A HREF=\"/display_editinfo\">\n"
+                       "Edit this room's Info file</A>\n"
+                       "</UL>");
+       }
 
-       wprintf("</UL>\n");
+       if (!strcmp(tab, "config")) {
+               wprintf("<FORM METHOD=\"POST\" ACTION=\"/editroom\">\n");
+       
+               wprintf("<UL><LI>Name of room: ");
+               wprintf("<INPUT TYPE=\"text\" NAME=\"er_name\" VALUE=\"%s\" MAXLENGTH=\"19\">\n", er_name);
+       
+               wprintf("<LI>Resides on floor: ");
+               load_floorlist();
+               wprintf("<SELECT NAME=\"er_floor\" SIZE=\"1\">\n");
+               for (i = 0; i < 128; ++i)
+                       if (strlen(floorlist[i]) > 0) {
+                               wprintf("<OPTION ");
+                               if (i == er_floor)
+                                       wprintf("SELECTED ");
+                               wprintf("VALUE=\"%d\">", i);
+                               escputs(floorlist[i]);
+                               wprintf("</OPTION>\n");
+                       }
+               wprintf("</SELECT>\n");
+       
+               wprintf("<LI>Type of room:<UL>\n");
 
-       wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"prefonly\" VALUE=\"yes\" ");
-       if (er_flags & QR_PREFONLY)
+               wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"public\" ");
+               if ((er_flags & QR_PRIVATE) == 0)
                wprintf("CHECKED ");
-       wprintf("> Preferred users only\n");
+               wprintf("> Public room\n");
+
+               wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"guessname\" ");
+               if ((er_flags & QR_PRIVATE) &&
+                   (er_flags & QR_GUESSNAME))
+                       wprintf("CHECKED ");
+               wprintf("> Private - guess name\n");
+       
+               wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"passworded\" ");
+               if ((er_flags & QR_PRIVATE) &&
+                   (er_flags & QR_PASSWORDED))
+                       wprintf("CHECKED ");
+               wprintf("> Private - require password:\n");
+               wprintf("<INPUT TYPE=\"text\" NAME=\"er_password\" VALUE=\"%s\" MAXLENGTH=\"9\">\n", er_password);
+       
+               wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"type\" VALUE=\"invonly\" ");
+               if ((er_flags & QR_PRIVATE)
+                   && ((er_flags & QR_GUESSNAME) == 0)
+                   && ((er_flags & QR_PASSWORDED) == 0))
+                       wprintf("CHECKED ");
+               wprintf("> Private - invitation only\n");
+       
+               wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"bump\" VALUE=\"yes\" ");
+               wprintf("> If private, cause current users to forget room\n");
+       
+               wprintf("</UL>\n");
+       
+               wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"prefonly\" VALUE=\"yes\" ");
+               if (er_flags & QR_PREFONLY)
+                       wprintf("CHECKED ");
+               wprintf("> Preferred users only\n");
+       
+               wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"readonly\" VALUE=\"yes\" ");
+               if (er_flags & QR_READONLY)
+                       wprintf("CHECKED ");
+               wprintf("> Read-only room\n");
+       
+       /* directory stuff */
+               wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"directory\" VALUE=\"yes\" ");
+               if (er_flags & QR_DIRECTORY)
+                       wprintf("CHECKED ");
+               wprintf("> File directory room\n");
+
+               wprintf("<UL><LI>Directory name: ");
+               wprintf("<INPUT TYPE=\"text\" NAME=\"er_dirname\" VALUE=\"%s\" MAXLENGTH=\"14\">\n", er_dirname);
+
+               wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"ulallowed\" VALUE=\"yes\" ");
+               if (er_flags & QR_UPLOAD)
+                       wprintf("CHECKED ");
+               wprintf("> Uploading allowed\n");
+       
+               wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"dlallowed\" VALUE=\"yes\" ");
+               if (er_flags & QR_DOWNLOAD)
+                       wprintf("CHECKED ");
+               wprintf("> Downloading allowed\n");
+       
+               wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"visdir\" VALUE=\"yes\" ");
+               if (er_flags & QR_VISDIR)
+                       wprintf("CHECKED ");
+               wprintf("> Visible directory</UL>\n");
+       
+       /* end of directory stuff */
+       
+               wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"network\" VALUE=\"yes\" ");
+               if (er_flags & QR_NETWORK)
+                       wprintf("CHECKED ");
+               wprintf("> Network shared room\n");
+
+       /* start of anon options */
+       
+               wprintf("<LI>Anonymous messages<UL>\n");
+       
+               wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"anon\" VALUE=\"no\" ");
+               if (((er_flags & QR_ANONONLY) == 0)
+                   && ((er_flags & QR_ANONOPT) == 0))
+                       wprintf("CHECKED ");
+               wprintf("> No anonymous messages\n");
+       
+               wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"anon\" VALUE=\"anononly\" ");
+               if (er_flags & QR_ANONONLY)
+                       wprintf("CHECKED ");
+               wprintf("> All messages are anonymous\n");
+       
+               wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"anon\" VALUE=\"anon2\" ");
+               if (er_flags & QR_ANONOPT)
+                       wprintf("CHECKED ");
+               wprintf("> Prompt user when entering messages</UL>\n");
+       
+       /* end of anon options */
+       
+               wprintf("<LI>Room aide: \n");
+               serv_puts("GETA");
+               serv_gets(buf);
+               if (buf[0] != '2') {
+                       wprintf("<EM>%s</EM>\n", &buf[4]);
+               } else {
+                       extract(er_roomaide, &buf[4], 0);
+                       wprintf("<INPUT TYPE=\"text\" NAME=\"er_roomaide\" VALUE=\"%s\" MAXLENGTH=\"25\">\n", er_roomaide);
+               }
+       
+               wprintf("</UL><CENTER>\n");
+               wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"OK\">");
+               wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\">");
+               wprintf("</CENTER>\n");
+       }
 
-       wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"readonly\" VALUE=\"yes\" ");
-       if (er_flags & QR_READONLY)
-               wprintf("CHECKED ");
-       wprintf("> Read-only room\n");
 
-/* directory stuff */
-       wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"directory\" VALUE=\"yes\" ");
-       if (er_flags & QR_DIRECTORY)
-               wprintf("CHECKED ");
-       wprintf("> File directory room\n");
+       /* Sharing the room with other Citadel nodes... */
+       if (!strcmp(tab, "sharing")) {
 
-       wprintf("<UL><LI>Directory name: ");
-       wprintf("<INPUT TYPE=\"text\" NAME=\"er_dirname\" VALUE=\"%s\" MAXLENGTH=\"14\">\n", er_dirname);
+               shared_with = strdup("");
+               not_shared_with = strdup("");
 
-       wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"ulallowed\" VALUE=\"yes\" ");
-       if (er_flags & QR_UPLOAD)
-               wprintf("CHECKED ");
-       wprintf("> Uploading allowed\n");
+               /* Learn the current configuration */
+               serv_puts("CONF getsys|application/x-citadel-ignet-config");
+               serv_gets(buf);
+               if (buf[0]=='1') while (serv_gets(buf), strcmp(buf, "000")) {
+                       extract(node, buf, 0);
+                       not_shared_with = realloc(not_shared_with,
+                                       strlen(not_shared_with) + 32);
+                       strcat(not_shared_with, node);
+                       strcat(not_shared_with, "|");
+               }
 
-       wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"dlallowed\" VALUE=\"yes\" ");
-       if (er_flags & QR_DOWNLOAD)
-               wprintf("CHECKED ");
-       wprintf("> Downloading allowed\n");
+               serv_puts("GNET");
+               serv_gets(buf);
+               if (buf[0]=='1') while (serv_gets(buf), strcmp(buf, "000")) {
+                       extract(cmd, buf, 0);
+                       extract(node, buf, 1);
+                       if (!strcasecmp(cmd, "ignet_push_share")) {
+                               shared_with = realloc(shared_with,
+                                               strlen(shared_with) + 32);
+                               strcat(shared_with, node);
+                               strcat(shared_with, "|");
+                       }
+               }
 
-       wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"visdir\" VALUE=\"yes\" ");
-       if (er_flags & QR_VISDIR)
-               wprintf("CHECKED ");
-       wprintf("> Visible directory</UL>\n");
+               for (i=0; i<num_tokens(shared_with, '|'); ++i) {
+                       extract(node, shared_with, i);
+                       for (j=0; j<num_tokens(not_shared_with, '|'); ++j) {
+                               extract(cmd, not_shared_with, j);
+                               if (!strcasecmp(node, cmd)) {
+                                       remove_token(not_shared_with, j, '|');
+                               }
+                       }
+               }
 
-/* end of directory stuff */
+               /* Display the stuff */
+               wprintf("<CENTER><BR>"
+                       "<TABLE border=1 cellpadding=5><TR>"
+                       "<TD><B><I>Shared with</I></B></TD>"
+                       "<TD><B><I>Not shared with</I></B></TD></TR>\n"
+                       "<TR><TD>\n");
+
+               for (i=0; i<num_tokens(shared_with, '|'); ++i) {
+                       extract(node, shared_with, i);
+                       if (strlen(node) > 0) {
+                               wprintf("%s ", node);
+                               wprintf("<A HREF=\"/netedit&cmd=remove&line="
+                                       "ignet_push_share|");
+                               urlescputs(node);
+                               wprintf("&tab=sharing\">(unshare)</A><BR>");
+                       }
+               }
 
-       wprintf("<LI><INPUT TYPE=\"checkbox\" NAME=\"network\" VALUE=\"yes\" ");
-       if (er_flags & QR_NETWORK)
-               wprintf("CHECKED ");
-       wprintf("> Network shared room\n");
+               wprintf("</TD><TD>\n");
 
-/* start of anon options */
+               for (i=0; i<num_tokens(not_shared_with, '|'); ++i) {
+                       extract(node, not_shared_with, i);
+                       if (strlen(node) > 0) {
+                               wprintf("%s ", node);
+                               wprintf("<A HREF=\"/netedit&cmd=add&line="
+                                       "ignet_push_share|");
+                               urlescputs(node);
+                               wprintf("&tab=sharing\">(share)</A><BR>");
+                       }
+               }
 
-       wprintf("<LI>Anonymous messages<UL>\n");
+               wprintf("</TD></TR>"
+                       "</TABLE><BR>\n"
+                       "<I><B>Reminder:</B> When sharing a room, "
+                       "it must be shared from both ends.  Adding a node to "
+                       "the 'shared' list sends messages out, but in order to"
+                       " receive messages, the other nodes must be configured"
+                       " to send messages out to your system as well.</I><BR>"
+                       "</CENTER>\n");
 
-       wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"anon\" VALUE=\"no\" ");
-       if (((er_flags & QR_ANONONLY) == 0)
-           && ((er_flags & QR_ANONOPT) == 0))
-               wprintf("CHECKED ");
-       wprintf("> No anonymous messages\n");
+       }
 
-       wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"anon\" VALUE=\"anononly\" ");
-       if (er_flags & QR_ANONONLY)
-               wprintf("CHECKED ");
-       wprintf("> All messages are anonymous\n");
+       /* Mailing list management */
+       if (!strcmp(tab, "listserv")) {
 
-       wprintf("<LI><INPUT TYPE=\"radio\" NAME=\"anon\" VALUE=\"anon2\" ");
-       if (er_flags & QR_ANONOPT)
-               wprintf("CHECKED ");
-       wprintf("> Prompt user when entering messages</UL>\n");
+               wprintf("<BR><center>"
+                       "<TABLE BORDER=0 WIDTH=100%% CELLPADDING=5>"
+                       "<TR><TD VALIGN=TOP>");
 
-/* end of anon options */
+               wprintf("<i>The contents of this room are being "
+                       "mailed <b>as individual messages</b> "
+                       "to the following list recipients:"
+                       "</i><br><br>\n");
 
-       wprintf("<LI>Room aide: \n");
-       serv_puts("GETA");
-       serv_gets(buf);
-       if (buf[0] != '2') {
-               wprintf("<EM>%s</EM>\n", &buf[4]);
-       } else {
-               extract(er_roomaide, &buf[4], 0);
-               wprintf("<INPUT TYPE=\"text\" NAME=\"er_roomaide\" VALUE=\"%s\" MAXLENGTH=\"25\">\n", er_roomaide);
-       }
+               serv_puts("GNET");
+               serv_gets(buf);
+               if (buf[0]=='1') while (serv_gets(buf), strcmp(buf, "000")) {
+                       extract(cmd, buf, 0);
+                       if (!strcasecmp(cmd, "listrecp")) {
+                               extract(recp, buf, 1);
+                       
+                               escputs(recp);
+                               wprintf(" <A HREF=\"/netedit&cmd=remove&line="
+                                       "listrecp|");
+                               urlescputs(recp);
+                               wprintf("&tab=listserv\">(remove)</A><BR>");
+
+                       }
+               }
+               wprintf("<BR><FORM METHOD=\"POST\" ACTION=\"/netedit\">\n"
+                       "<INPUT TYPE=\"hidden\" NAME=\"tab\" VALUE=\"listserv\">\n"
+                       "<INPUT TYPE=\"hidden\" NAME=\"prefix\" VALUE=\"listrecp|\">\n");
+               wprintf("<INPUT TYPE=\"text\" NAME=\"line\">\n");
+               wprintf("<INPUT TYPE=\"submit\" NAME=\"cmd\" VALUE=\"Add\">");
+               wprintf("</FORM>\n");
+
+               wprintf("</TD><TD VALIGN=TOP>\n");
+               
+               wprintf("<i>The contents of this room are being "
+                       "mailed <b>in digest form</b> "
+                       "to the following list recipients:"
+                       "</i><br><br>\n");
+
+               serv_puts("GNET");
+               serv_gets(buf);
+               if (buf[0]=='1') while (serv_gets(buf), strcmp(buf, "000")) {
+                       extract(cmd, buf, 0);
+                       if (!strcasecmp(cmd, "digestrecp")) {
+                               extract(recp, buf, 1);
+                       
+                               escputs(recp);
+                               wprintf(" <A HREF=\"/netedit&cmd=remove&line="
+                                       "digestrecp|");
+                               urlescputs(recp);
+                               wprintf("&tab=listserv\">(remove)</A><BR>");
+
+                       }
+               }
+               wprintf("<BR><FORM METHOD=\"POST\" ACTION=\"/netedit\">\n"
+                       "<INPUT TYPE=\"hidden\" NAME=\"tab\" VALUE=\"listserv\">\n"
+                       "<INPUT TYPE=\"hidden\" NAME=\"prefix\" VALUE=\"digestrecp|\">\n");
+               wprintf("<INPUT TYPE=\"text\" NAME=\"line\">\n");
+               wprintf("<INPUT TYPE=\"submit\" NAME=\"cmd\" VALUE=\"Add\">");
+               wprintf("</FORM>\n");
+               
+               wprintf("</TD></TR></TABLE><HR>\n");
+
+               if (self_service(999) == 1) {
+                       wprintf("This room is configured to allow "
+                               "self-service subscribe/unsubscribe requests."
+                               " <A HREF=\"/toggle_self_service?newval=0&"
+                               "tab=listserv\">"
+                               "Click to disable.</A><BR>\n"
+                               "The URL for subscribe/unsubscribe is: "
+                               "<TT>http://%s/listsub</TT><BR>\n",
+                               WC->http_host
+                       );
+               }
+               else {
+                       wprintf("This room is <i>not</i> configured to allow "
+                               "self-service subscribe/unsubscribe requests."
+                               " <A HREF=\"/toggle_self_service?newval=1&"
+                               "tab=listserv\">"
+                               "Click to enable.</A><BR>\n"
+                       );
+               }
 
-       wprintf("</UL><CENTER>\n");
-       wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"OK\">");
-       wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\">");
-       wprintf("</CENTER>\n");
+
+               wprintf("</CENTER>\n");
+       }
 
        wDumpContent(1);
 }
 
 
+/* 
+ * Toggle self-service list subscription
+ */
+void toggle_self_service(void) {
+       int newval = 0;
+
+       newval = atoi(bstr("newval"));
+       self_service(newval);
+       display_editroom();
+}
+
+
+
 /*
  * save new parameters for a room
  */
 void editroom(void)
 {
-       char buf[256];
+       char buf[SIZ];
        char er_name[20];
        char er_password[10];
        char er_dirname[15];
@@ -924,7 +1299,7 @@ void editroom(void)
  */
 void display_whok(void)
 {
-        char buf[256], room[256], username[256];
+        char buf[SIZ], room[SIZ], username[SIZ];
 
         serv_puts("GETR");
         serv_gets(buf);
@@ -939,6 +1314,11 @@ void display_whok(void)
 
         output_headers(1);
 
+        wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#007700\"><TR><TD>");
+        wprintf("<SPAN CLASS=\"titlebar\">Access control list for ");
+       escputs(WC->wc_roomname);
+        wprintf("</SPAN></TD></TR></TABLE>\n");
+
         if(!strcmp(bstr("sc"), "Kick")) {
                 sprintf(buf, "KICK %s", username);
                 serv_puts(buf);
@@ -948,7 +1328,7 @@ void display_whok(void)
                         display_error(&buf[4]);
                         return;
                 } else {
-                        wprintf("User %s kicked out of room %s.\n", 
+                        wprintf("<B><I>User %s kicked out of room %s.</I></B>\n", 
                                 username, room);
                 }
         } else if(!strcmp(bstr("sc"), "Invite")) {
@@ -960,13 +1340,19 @@ void display_whok(void)
                         display_error(&buf[4]);
                         return;
                 } else {
-                        wprintf("User %s invited to room %s.\n", 
+                        wprintf("<B><I>User %s invited to room %s.</I></B>\n", 
                                 username, room);
                 }
         }
         
 
-        wprintf("<FORM METHOD=\"POST\" ACTION=\"/display_whok\">\n");
+
+       wprintf("<TABLE border=0 CELLSPACING=10><TR VALIGN=TOP>"
+               "<TD>The users listed below have access to this room.  "
+               "To remove a user from the access list, select the user "
+               "name from the list and click 'Kick'.<BR><BR>");
+       
+        wprintf("<CENTER><FORM METHOD=\"POST\" ACTION=\"/display_whok\">\n");
         wprintf("<SELECT NAME=\"username\" SIZE=10>\n");
         serv_puts("WHOK");
         serv_gets(buf);
@@ -978,17 +1364,23 @@ void display_whok(void)
                         wprintf("\n");
                 }
         }
-        wprintf("</SELECT>\n");
+        wprintf("</SELECT><BR>\n");
 
-        wprintf("<CENTER>\n");
         wprintf("<input type=submit name=sc value=\"Kick\">");
-        wprintf("</CENTER>\n");
-        wprintf("</FORM>\n");
-        wprintf("<FORM METHOD=\"POST\" ACTION=\"/display_whok\">\n");
+        wprintf("</FORM></CENTER>\n");
+
+       wprintf("</TD><TD>"
+               "To grant another user access to this room, enter the "
+               "user name in the box below and click 'Invite'.<BR><BR>");
+
+        wprintf("<CENTER><FORM METHOD=\"POST\" ACTION=\"/display_whok\">\n");
         wprintf("Invite: ");
-        wprintf("<input type=text name=username>\n");
-        wprintf("<input type=hidden name=sc value=\"Invite\">");
-        wprintf("<input type=submit value=\"Invite\">");
+        wprintf("<input type=text name=username><BR>\n"
+               "<input type=hidden name=sc value=\"Invite\">"
+               "<input type=submit value=\"Invite\">"
+               "</FORM></CENTER>\n");
+
+       wprintf("</TD></TR></TABLE>\n");
         wDumpContent(1);
 }
 
@@ -1000,7 +1392,7 @@ void display_whok(void)
 void display_entroom(void)
 {
        int i;
-       char buf[256];
+       char buf[SIZ];
 
        serv_puts("CRE8 0");
        serv_gets(buf);
@@ -1011,10 +1403,9 @@ void display_entroom(void)
        }
        output_headers(1);
 
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=000077><TR><TD>");
-       wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-       wprintf("<B>Enter (create) a new room</B>\n");
-       wprintf("</FONT></TD></TR></TABLE>\n");
+       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#000077\"><TR><TD>");
+       wprintf("<SPAN CLASS=\"titlebar\">Enter (create) a new room</SPAN>\n");
+       wprintf("</TD></TR></TABLE>\n");
 
        wprintf("<FORM METHOD=\"POST\" ACTION=\"/entroom\">\n");
 
@@ -1055,7 +1446,12 @@ void display_entroom(void)
        wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"OK\">");
        wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\">");
        wprintf("</CENTER>\n");
-       wprintf("</FORM>\n");
+       wprintf("</FORM>\n<HR>");
+       serv_printf("MESG roomaccess");
+       serv_gets(buf);
+       if (buf[0] == '1') {
+               fmout(NULL);
+       }
        wDumpContent(1);
 }
 
@@ -1066,7 +1462,7 @@ void display_entroom(void)
  */
 void entroom(void)
 {
-       char buf[256];
+       char buf[SIZ];
        char er_name[20];
        char er_type[20];
        char er_password[10];
@@ -1110,10 +1506,9 @@ void display_private(char *rname, int req_pass)
 
        output_headers(1);
 
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770000><TR><TD>");
-       wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-       wprintf("<B>Goto a private room</B>\n");
-       wprintf("</FONT></TD></TR></TABLE>\n");
+       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#770000\"><TR><TD>");
+       wprintf("<SPAN CLASS=\"titlebar\">Goto a private room</SPAN>\n");
+       wprintf("</TD></TR></TABLE>\n");
 
        wprintf("<CENTER>\n");
        wprintf("If you know the name of a hidden (guess-name) or\n");
@@ -1123,7 +1518,7 @@ void display_private(char *rname, int req_pass)
        wprintf("so you don't have to keep returning here.\n");
        wprintf("<BR><BR>");
 
-       wprintf("<FORM METHOD=\"POST\" ACTION=\"/goto_private\">\n");
+       wprintf("<FORM METHOD=\"GET\" ACTION=\"/goto_private\">\n");
 
        wprintf("<TABLE border><TR><TD>");
        wprintf("Enter room name:</TD><TD>");
@@ -1147,8 +1542,8 @@ void display_private(char *rname, int req_pass)
  */
 void goto_private(void)
 {
-       char hold_rm[32];
-       char buf[256];
+       char hold_rm[SIZ];
+       char buf[SIZ];
 
        if (strcasecmp(bstr("sc"), "OK")) {
                display_main_menu();
@@ -1184,16 +1579,15 @@ void display_zap(void)
 {
        output_headers(1);
 
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770000><TR><TD>");
-       wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-       wprintf("<B>Zap (forget) the current room</B>\n");
-       wprintf("</FONT></TD></TR></TABLE>\n");
+       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#770000\"><TR><TD>");
+       wprintf("<SPAN CLASS=\"titlebar\">Zap (forget) the current room</SPAN>\n");
+       wprintf("</TD></TR></TABLE>\n");
 
        wprintf("If you select this option, <em>%s</em> will ", WC->wc_roomname);
        wprintf("disappear from your room list.  Is this what you wish ");
        wprintf("to do?<BR>\n");
 
-       wprintf("<FORM METHOD=\"POST\" ACTION=\"/zap\">\n");
+       wprintf("<FORM METHOD=\"GET\" ACTION=\"/zap\">\n");
        wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"OK\">");
        wprintf("<INPUT TYPE=\"submit\" NAME=\"sc\" VALUE=\"Cancel\">");
        wprintf("</FORM>\n");
@@ -1206,8 +1600,8 @@ void display_zap(void)
  */
 void zap(void)
 {
-       char buf[256];
-       char final_destination[256];
+       char buf[SIZ];
+       char final_destination[SIZ];
 
        /* If the forget-room routine fails for any reason, we fall back
         * to the current room; otherwise, we go to the Lobby
@@ -1218,12 +1612,12 @@ void zap(void)
                serv_printf("GOTO %s", WC->wc_roomname);
                serv_gets(buf);
                if (buf[0] != '2') {
-                       /* ExpressMessageCat(&buf[4]);   FIXME    */
+                       /* ExpressMessageCat(&buf[4]); */
                } else {
                        serv_puts("FORG");
                        serv_gets(buf);
                        if (buf[0] != '2') {
-                               /* ExpressMessageCat(&buf[4]);  FIXME   */
+                               /* ExpressMessageCat(&buf[4]); */
                        } else {
                                strcpy(final_destination, "_BASEROOM_");
                        }
@@ -1240,7 +1634,7 @@ void zap(void)
  */
 void confirm_delete_room(void)
 {
-       char buf[256];
+       char buf[SIZ];
 
        serv_puts("KILL 0");
        serv_gets(buf);
@@ -1249,13 +1643,12 @@ void confirm_delete_room(void)
                return;
        }
        output_headers(1);
-       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=770000><TR><TD>");
-       wprintf("<FONT SIZE=+1 COLOR=\"FFFFFF\"");
-       wprintf("<B>Confirm deletion of room</B>\n");
-       wprintf("</FONT></TD></TR></TABLE>\n");
+       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#770000\"><TR><TD>");
+       wprintf("<SPAN CLASS=\"titlebar\">Confirm deletion of room</SPAN>\n");
+       wprintf("</TD></TR></TABLE>\n");
 
        wprintf("<CENTER>");
-       wprintf("<FORM METHOD=\"POST\" ACTION=\"/delete_room\">\n");
+       wprintf("<FORM METHOD=\"GET\" ACTION=\"/delete_room\">\n");
 
        wprintf("Are you sure you want to delete <FONT SIZE=+1>");
        escputs(WC->wc_roomname);
@@ -1274,8 +1667,8 @@ void confirm_delete_room(void)
  */
 void delete_room(void)
 {
-       char buf[256];
-       char sc[256];
+       char buf[SIZ];
+       char sc[SIZ];
 
        strcpy(sc, bstr("sc"));
 
@@ -1291,3 +1684,337 @@ void delete_room(void)
                smart_goto("_BASEROOM_");
        }
 }
+
+
+
+/*
+ * Perform changes to a room's network configuration
+ */
+void netedit(void) {
+       FILE *fp;
+       char buf[SIZ];
+       char line[SIZ];
+
+       if (strlen(bstr("line"))==0) {
+               display_editroom();
+               return;
+       }
+
+       strcpy(line, bstr("prefix"));
+       strcat(line, bstr("line"));
+       strcat(line, bstr("suffix"));
+
+       fp = tmpfile();
+       if (fp == NULL) {
+               display_editroom();
+               return;
+       }
+
+       serv_puts("GNET");
+       serv_gets(buf);
+       if (buf[0] != '1') {
+               fclose(fp);
+               display_editroom();
+               return;
+       }
+
+       /* This loop works for add *or* remove.  Spiffy, eh? */
+       while (serv_gets(buf), strcmp(buf, "000")) {
+               if (strcasecmp(buf, line)) {
+                       fprintf(fp, "%s\n", buf);
+               }
+       }
+
+       rewind(fp);
+       serv_puts("SNET");
+       serv_gets(buf);
+       if (buf[0] != '4') {
+               fclose(fp);
+               display_editroom();
+               return;
+       }
+
+       while (fgets(buf, sizeof buf, fp) != NULL) {
+               buf[strlen(buf)-1] = 0;
+               serv_puts(buf);
+       }
+
+       if (!strcasecmp(bstr("cmd"), "add")) {
+               serv_puts(line);
+       }
+
+       serv_puts("000");
+       fclose(fp);
+       display_editroom();
+}
+
+
+
+/*
+ * Convert a room name to a folder-ish-looking name.
+ */
+void room_to_folder(char *folder, char *room, int floor, int is_mailbox)
+{
+       int i;
+
+       /*
+        * For mailboxes, just do it straight...
+        */
+       if (is_mailbox) {
+               sprintf(folder, "My folders|%s", room);
+       }
+
+       /*
+        * Otherwise, prefix the floor name as a "public folders" moniker
+        */
+       else {
+               sprintf(folder, "%s|%s", floorlist[floor], room);
+       }
+
+       /*
+        * Replace "/" characters with "|" for pseudo-folder-delimiting
+        */
+       for (i=0; i<strlen(folder); ++i) {
+               if (folder[i] == '/') folder[i] = '|';
+       }
+}
+
+
+
+
+
+
+
+/*
+ * Change the view for this room
+ */
+void change_view(void) {
+       int view;
+       char buf[SIZ];
+
+       view = atol(bstr("view"));
+
+       serv_printf("VIEW %d", view);
+       serv_gets(buf);
+       smart_goto(WC->wc_roomname);
+}
+
+
+/*
+ * Show the room list in "folders" format.  (only should get called by
+ * knrooms() because that's where output_headers() is called from)
+ */
+void folders(void) {
+       char buf[SIZ];
+
+       int levels, oldlevels;
+       int swap = 0;
+
+       struct folder {
+               char room[SIZ];
+               char name[SIZ];
+               int hasnewmsgs;
+               int is_mailbox;
+               int selectable;
+       };
+
+       struct folder *fold = NULL;
+       struct folder ftmp;
+       int max_folders = 0;
+       int alloc_folders = 0;
+       int i, j, k, t;
+       int p;
+       int flags;
+       int floor;
+       int nests = 0;
+
+       /* Start with the mailboxes */
+       max_folders = 1;
+       alloc_folders = 1;
+       fold = malloc(sizeof(struct folder));
+       memset(fold, 0, sizeof(struct folder));
+       strcpy(fold[0].name, "My folders");
+       fold[0].is_mailbox = 1;
+
+       /* Then add floors */
+       serv_puts("LFLR");
+       serv_gets(buf);
+       if (buf[0]=='1') while(serv_gets(buf), strcmp(buf, "000")) {
+               if (max_folders >= alloc_folders) {
+                       alloc_folders = max_folders + 100;
+                       fold = realloc(fold,
+                               alloc_folders * sizeof(struct folder));
+               }
+               memset(&fold[max_folders], 0, sizeof(struct folder));
+               extract(fold[max_folders].name, buf, 1);
+               ++max_folders;
+       }
+
+       /* Now add rooms */
+       for (p = 0; p < 2; ++p) {
+               if (p == 0) serv_puts("LKRN");
+               else if (p == 1) serv_puts("LKRO");
+               serv_gets(buf);
+               if (buf[0]=='1') while(serv_gets(buf), strcmp(buf, "000")) {
+                       if (max_folders >= alloc_folders) {
+                               alloc_folders = max_folders + 100;
+                               fold = realloc(fold,
+                                       alloc_folders * sizeof(struct folder));
+                       }
+                       memset(&fold[max_folders], 0, sizeof(struct folder));
+                       extract(fold[max_folders].room, buf, 0);
+                       if (p == 0) fold[max_folders].hasnewmsgs = 1;
+                       flags = extract_int(buf, 1);
+                       floor = extract_int(buf, 2);
+                       if (flags & QR_MAILBOX) {
+                               fold[max_folders].is_mailbox = 1;
+                       }
+                       room_to_folder(fold[max_folders].name,
+                                       fold[max_folders].room,
+                                       floor,
+                                       fold[max_folders].is_mailbox);
+                       fold[max_folders].selectable = 1;
+                       ++max_folders;
+               }
+       }
+
+       /* Bubble-sort the folder list */
+       for (i=0; i<max_folders; ++i) {
+               for (j=0; j<(max_folders-1)-i; ++j) {
+                       if (fold[j].is_mailbox == fold[j+1].is_mailbox) {
+                               swap = strcasecmp(fold[j].name, fold[j+1].name);
+                       }
+                       else {
+                               if ( (fold[j+1].is_mailbox)
+                                  && (!fold[j].is_mailbox)) {
+                                       swap = 1;
+                               }
+                               else {
+                                       swap = 0;
+                               }
+                       }
+                       if (swap > 0) {
+                               memcpy(&ftmp, &fold[j], sizeof(struct folder));
+                               memcpy(&fold[j], &fold[j+1],
+                                                       sizeof(struct folder));
+                               memcpy(&fold[j+1], &ftmp,
+                                                       sizeof(struct folder));
+                       }
+               }
+       }
+
+       /* Output */
+       nests = 0;
+       levels = 0;
+       oldlevels = 0;
+       for (i=0; i<max_folders; ++i) {
+
+               levels = num_tokens(fold[i].name, '|');
+               if (levels > oldlevels) {
+                       for (k=0; k<(levels-oldlevels); ++k) {
+                               ++nests;
+                       }
+               }
+               if (levels < oldlevels) {
+                       for (k=0; k<(oldlevels-levels); ++k) {
+                               --nests;
+                       }
+               }
+               oldlevels = levels;
+
+               for (t=0; t<nests; ++t) wprintf("&nbsp;&nbsp;&nbsp;");
+               if (fold[i].selectable) {
+                       wprintf("<A HREF=\"/dotgoto?room=");
+                       urlescputs(fold[i].room);
+                       wprintf("\">");
+               }
+               else {
+                       wprintf("<i>");
+               }
+               if (fold[i].hasnewmsgs) wprintf("<B>");
+               extract(buf, fold[i].name, levels-1);
+               escputs(buf);
+               if (fold[i].hasnewmsgs) wprintf("</B>");
+               if (fold[i].selectable) {
+                       wprintf("</A>");
+               }
+               else {
+                       wprintf("</i>");
+               }
+               if (!strcasecmp(fold[i].name, "My Folders|Mail")) {
+                       wprintf(" (INBOX)");
+               }
+               wprintf("<BR>\n");
+       }
+       while (nests-- > 0) ;; 
+
+       free(fold);
+       wDumpContent(1);
+}
+
+
+/* Do either a known rooms list or a folders list, depending on the
+ * user's preference
+ */
+void knrooms() {
+       char listviewpref[SIZ];
+
+       output_headers(3);
+       load_floorlist();
+
+       /* Determine whether the user is trying to change views */
+       if (bstr("view") != NULL) {
+               if (strlen(bstr("view")) > 0) {
+                       set_preference("roomlistview", bstr("view"));
+               }
+       }
+
+       get_preference("roomlistview", listviewpref);
+
+       if (strcasecmp(listviewpref, "folders")) {
+               strcpy(listviewpref, "rooms");
+       }
+
+       /* title bar */
+       wprintf("<TABLE WIDTH=100%% BORDER=0 BGCOLOR=\"#000077\"><TR><TD>"
+               "<SPAN CLASS=\"titlebar\">"
+       );
+       if (!strcasecmp(listviewpref, "rooms")) {
+               wprintf("Room list");
+       }
+       if (!strcasecmp(listviewpref, "folders")) {
+               wprintf("Folder list");
+       }
+       wprintf("</SPAN></TD>\n");
+
+
+       /* offer the ability to switch views */
+       wprintf("<TD><FORM NAME=\"roomlistomatic\">\n"
+               "<SELECT NAME=\"newview\" SIZE=\"1\" "
+               "OnChange=\"location.href=roomlistomatic.newview.options"
+               "[selectedIndex].value\">\n");
+
+       wprintf("<OPTION %s VALUE=\"/knrooms&view=rooms\">"
+               "View as room list"
+               "</OPTION>\n",
+               ( !strcasecmp(listviewpref, "rooms") ? "SELECTED" : "" )
+       );
+
+       wprintf("<OPTION %s VALUE=\"/knrooms&view=folders\">"
+               "View as folder list"
+               "</OPTION>\n",
+               ( !strcasecmp(listviewpref, "folders") ? "SELECTED" : "" )
+       );
+
+       wprintf("</SELECT></FORM></TD><TD>\n");
+       offer_start_page();
+       wprintf("</TD></TR></TABLE><BR>\n");
+
+       /* Display the room list in the user's preferred format */
+       if (!strcasecmp(listviewpref, "folders")) {
+               folders();
+       }
+       else {
+               list_all_rooms_by_floor();
+       }
+}