* Corrected overly-escaped reply-to addresses in "reply" button
authorArt Cancro <ajc@citadel.org>
Tue, 28 Dec 2004 03:58:25 +0000 (03:58 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 28 Dec 2004 03:58:25 +0000 (03:58 +0000)
* Repaired toggling of self-service account creation in admin screen
* Bumped internal version number to 5.28

webcit/ChangeLog
webcit/crypto.c
webcit/messages.c
webcit/siteconfig.c
webcit/webcit.h

index 976e2cab728ad7c068431d358ef1915576c90d71..8282e1eb42cc304fd39a64e922209eab248bcfcb 100644 (file)
@@ -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 <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index e7774d8a9e368d31323b7852ceed8249f2051b58..07c4d405e50f85262b765a1670519e8ebc5d7e3b 100644 (file)
@@ -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))) {
index 5092c6abce64ffbb326c43c13e294f3802159684..ffe4a20f65d84f4895480b223cb6dfdb3b2f33d7 100644 (file)
@@ -514,7 +514,7 @@ void read_message(long msgnum) {
        wprintf("<INPUT TYPE=\"hidden\" NAME=\"msgid\" VALUE=\"%ld\">\n",
                msgnum);
        wprintf("<INPUT TYPE=\"hidden\" NAME=\"recp\" VALUE=\"");
-       urlescputs(reply_to);
+       escputs(reply_to);
        wprintf("\">\n");
 
        if (!strncasecmp(m_subject, "Re:", 2)) {
index 1a83ae95f1e4063a487384506c98636807133ca7..bd78bb1206f6d3be5f22d545d351c0bc616ff0d0 100644 (file)
@@ -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"));
index a7f8a66cd30cf520592fa601ccf3583fa8946d37..f3a1e1a850696bca3dcf1dae0b02e0c6280e481a 100644 (file)
 #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"