X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fsiteconfig.c;h=253e1a5763c57292979cbaad45e071ac9635aa38;hb=6f49b72635d2c113c126eab5579fc5f1a8928bc6;hp=1f513d81a9bbebfc721aa81a6639db7ce1a85a28;hpb=2f8ba8d58350ea377595b951fb7d20a5618ea0ef;p=citadel.git diff --git a/webcit/siteconfig.c b/webcit/siteconfig.c index 1f513d81a..253e1a576 100644 --- a/webcit/siteconfig.c +++ b/webcit/siteconfig.c @@ -1,7 +1,7 @@ /* * Administrative screen for site-wide configuration * - * Copyright (c) 1996-2012 by the citadel.org team + * Copyright (c) 1996-2014 by the citadel.org team * * This program is open source software. You can redistribute it and/or * modify it under the terms of the GNU General Public License, version 3. @@ -115,7 +115,7 @@ void LoadZoneFiles(void) Put(ZoneHash, HKEY("UTC"), ZName, HFreeStrBuf); zones = icaltimezone_get_builtin_timezones(); for (z = 0; z < zones->num_elements; ++z) { - /* syslog(9, "Location: %-40s tzid: %s\n", + /* syslog(LOG_DEBUG, "Location: %-40s tzid: %s\n", icaltimezone_get_location(icalarray_element_at(zones, z)), icaltimezone_get_tzid(icalarray_element_at(zones, z)) ); */ @@ -187,7 +187,7 @@ CfgMapping ServerConfig[] = { {CFG_STR, 0, 0, "", HKEY("c_smtps_port")}, {CFG_YES, 0, 0, "", HKEY("c_enable_fulltext")}, {CFG_YES, 0, 0, "", HKEY("c_auto_cull")}, - {CFG_YES, 0, 0, "", HKEY("c_instant_expunge")}, + {CFG_YES, 0, 0, "", HKEY("reserved3")}, {CFG_YES, 0, 0, "", HKEY("c_allow_spoofing")}, {CFG_YES, 0, 0, "", HKEY("c_journal_email")}, {CFG_YES, 0, 0, "", HKEY("c_journal_pubmsgs")}, @@ -210,7 +210,11 @@ CfgMapping ServerConfig[] = { {CFG_STR, 0, 0, "", HKEY("c_pop3_fetch")}, {CFG_STR, 0, 0, "", HKEY("c_pop3_fastest")}, {CFG_YES, 0, 0, "", HKEY("c_spam_flag_only")}, - {CFG_YES, 0, 0, "", HKEY("c_guest_logins")} + {CFG_YES, 0, 0, "", HKEY("c_guest_logins")}, + {CFG_STR, 0, 0, "", HKEY("c_port_number")}, + {CFG_STR, 0, 0, "", HKEY("c_ctdluid")}, + {CFG_STR, 0, 0, "", HKEY("c_nntp_port")}, + {CFG_STR, 0, 0, "", HKEY("c_nntps_port")} };