]> code.citadel.org Git - citadel.git/commitdiff
* Removed the "aides access to mailboxes" config option, which is no longer
authorArt Cancro <ajc@citadel.org>
Sat, 19 Jun 2004 02:42:13 +0000 (02:42 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 19 Jun 2004 02:42:13 +0000 (02:42 +0000)
  part of the Citadel system.

webcit/ChangeLog
webcit/siteconfig.c

index 7c16330aba1f3b1279ba370b2bef1c65c12faadd..9f6713a059bf69fd723e94cf975d2e6e42bec8d2 100644 (file)
@@ -1,4 +1,8 @@
 $Log$
+Revision 521.9  2004/06/19 02:42:12  ajc
+* Removed the "aides access to mailboxes" config option, which is no longer
+  part of the Citadel system.
+
 Revision 521.8  2004/06/16 02:07:22  ajc
 * Removed a couple of lines of debugging code leftover from last night
 
@@ -1904,3 +1908,4 @@ 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 5d814bbbb034d6e0e92069f3d2fd2c55ee6a1b5f..46a65c2bd6a99d5a251c260e7ae0e8585ff569e0 100644 (file)
@@ -446,14 +446,7 @@ void display_siteconfig(void)
                        }
                        break;
                case 31:
-                       if (!strcasecmp(whichmenu, "access")) {
-                               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");
-                       }
-                       else {
-                               wprintf("<INPUT TYPE=\"hidden\" NAME=\"c_aide_mailboxes\" VALUE=\"%s\">", buf);
-                       }
+                       /* placeholder -- there is no option 31 */
                        break;
                case 32:
                        if (!strcasecmp(whichmenu, "tuning")) {
@@ -581,7 +574,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("1");       /* placeholder -- deprecated */
        serv_printf("%s", bstr("c_purge_hour"));
        serv_printf("%s", bstr("c_ldap_host"));
        serv_printf("%s", bstr("c_ldap_port"));