From f6dd7f2ddc07f58ceea582b508a24162c90a92ba Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 28 Dec 2004 03:58:25 +0000 Subject: [PATCH] * Corrected overly-escaped reply-to addresses in "reply" button * Repaired toggling of self-service account creation in admin screen * Bumped internal version number to 5.28 --- webcit/ChangeLog | 6 ++++++ webcit/crypto.c | 2 +- webcit/messages.c | 2 +- webcit/siteconfig.c | 2 +- webcit/webcit.h | 4 ++-- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 976e2cab7..8282e1eb4 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,9 @@ $Log$ +Revision 527.1 2004/12/28 03:58:24 ajc +* Corrected overly-escaped reply-to addresses in "reply" button +* Repaired toggling of self-service account creation in admin screen +* Bumped internal version number to 5.28 + Revision 527.0 2004/12/07 04:41:37 ajc * THIS IS 5.27 @@ -2137,3 +2142,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/crypto.c b/webcit/crypto.c index e7774d8a9..07c4d405e 100644 --- a/webcit/crypto.c +++ b/webcit/crypto.c @@ -83,7 +83,7 @@ void init_ssl(void) * Initialize SSL transport layer */ SSL_library_init(); - OpenSSL_add_all_algorithms(); + /* OpenSSL_add_all_algorithms(); */ SSL_load_error_strings(); ssl_method = SSLv2_server_method(); if (!(ssl_ctx = SSL_CTX_new(ssl_method))) { diff --git a/webcit/messages.c b/webcit/messages.c index 5092c6abc..ffe4a20f6 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -514,7 +514,7 @@ void read_message(long msgnum) { wprintf("\n", msgnum); wprintf("\n"); if (!strncasecmp(m_subject, "Re:", 2)) { diff --git a/webcit/siteconfig.c b/webcit/siteconfig.c index 1a83ae95f..bd78bb120 100644 --- a/webcit/siteconfig.c +++ b/webcit/siteconfig.c @@ -676,7 +676,7 @@ void siteconfig(void) serv_printf("%s", ((!strcasecmp(bstr("c_aide_zap"), "yes") ? "1" : "0"))); serv_printf("%s", bstr("c_imap_port")); serv_printf("%s", bstr("c_net_freq")); - serv_printf("%s", bstr("c_disable_newu")); + serv_printf("%s", ((!strcasecmp(bstr("c_disable_newu"), "yes") ? "1" : "0"))); serv_printf("1"); /* placeholder -- deprecated */ serv_printf("%s", bstr("c_purge_hour")); serv_printf("%s", bstr("c_ldap_host")); diff --git a/webcit/webcit.h b/webcit/webcit.h index a7f8a66cd..f3a1e1a85 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -32,10 +32,10 @@ #define SLEEPING 180 /* TCP connection timeout */ #define WEBCIT_TIMEOUT 900 /* WebCit session timeout */ #define PORT_NUM 2000 /* port number to listen on */ -#define SERVER "WebCit v5.27" /* who's in da house */ +#define SERVER "WebCit v5.28" /* who's in da house */ #define DEVELOPER_ID 0 #define CLIENT_ID 4 -#define CLIENT_VERSION 527 /* This version of WebCit */ +#define CLIENT_VERSION 528 /* This version of WebCit */ #define MINIMUM_CIT_VERSION 626 /* min required Citadel vers */ #define DEFAULT_HOST "localhost" /* Default Citadel server */ #define DEFAULT_PORT "504" -- 2.30.2