From 39d387a1a8341f99ed32785893afcdc45188d9f8 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 13 Mar 2002 03:56:52 +0000 Subject: [PATCH] * New site config option "Allow system Aides to gain access to mailboxes" --- webcit/ChangeLog | 4 +++- webcit/siteconfig.c | 7 ++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 0482abee8..bd38e3881 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -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 1998-12-03 Nathan Bryant * webserver.c: warning fix - diff --git a/webcit/siteconfig.c b/webcit/siteconfig.c index eafb097d2..2ae8a594d 100644 --- a/webcit/siteconfig.c +++ b/webcit/siteconfig.c @@ -199,7 +199,11 @@ void display_siteconfig(void) wprintf("", ((atoi(buf) != 0) ? "CHECKED" : "")); wprintf("\n"); break; - + case 31: + wprintf("Allow system Aides access to mailboxes"); + wprintf("", ((atoi(buf) != 0) ? "CHECKED" : "")); + wprintf("\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."); } -- 2.30.2