* New site config option "Allow system Aides to gain access to mailboxes"
authorArt Cancro <ajc@citadel.org>
Wed, 13 Mar 2002 03:56:52 +0000 (03:56 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 13 Mar 2002 03:56:52 +0000 (03:56 +0000)
webcit/ChangeLog
webcit/siteconfig.c

index 0482abee849447005626d5a8db23314963d4cddc..bd38e38810c27312c19404172e6d9298e8a69550 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 323.13  2002/03/13 03:56:52  ajc
+* New site config option "Allow system Aides to gain access to mailboxes"
+
 Revision 323.12  2002/03/12 23:13:57  ajc
 * Moved room access controls out of the admin menu and into the room commands
   menu.  Prettied up the access control list screen.
@@ -749,4 +752,3 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
index eafb097d286d2e94f1b3e5f8a6205dcc1034135b..2ae8a594d4249c7a02eaf6936418cc22cda6171e 100644 (file)
@@ -199,7 +199,11 @@ void display_siteconfig(void)
                        wprintf("<INPUT TYPE=\"checkbox\" NAME=\"c_disable_newu\" VALUE=\"yes\" %s>", ((atoi(buf) != 0) ? "CHECKED" : ""));
                        wprintf("</TD></TR>\n");
                        break;
-
+               case 31:
+                       wprintf("<TR><TD>Allow system Aides access to mailboxes</TD><TD>");
+                       wprintf("<INPUT TYPE=\"checkbox\" NAME=\"c_aide_mailboxes\" VALUE=\"yes\" %s>", ((atoi(buf) != 0) ? "CHECKED" : ""));
+                       wprintf("</TD></TR>\n");
+                       break;
                }
        }
 
@@ -255,6 +259,7 @@ void siteconfig(void)
        serv_printf("%s", bstr("c_imap_port"));
        serv_printf("%s", bstr("c_net_freq"));
        serv_printf("%s", bstr("c_disable_newu"));
+       serv_printf("%s", bstr("c_aide_mailboxes"));
        serv_printf("000");
        display_success("System configuration has been updated.");
 }