* Autocompletion now fetches candidate addresses using the AUTO server
authorArt Cancro <ajc@citadel.org>
Wed, 14 Sep 2005 03:53:43 +0000 (03:53 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 14 Sep 2005 03:53:43 +0000 (03:53 +0000)
  command being built for Citadel 6.56

webcit/ChangeLog
webcit/autocompletion.c
webcit/webcit.h

index 7fa33373402392951566009bca4b842939b6c7a8..5d961c5ac18b808459f7544ca179716a6e92d055 100644 (file)
@@ -1,4 +1,8 @@
 $Log$
+Revision 625.1  2005/09/14 03:53:43  ajc
+* Autocompletion now fetches candidate addresses using the AUTO server
+  command being built for Citadel 6.56
+
 Revision 625.0  2005/09/13 14:02:32  ajc
 * THIS IS 6.25
 
@@ -2953,3 +2957,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 5b71a9ebd22c769804b2f70bef9f9308ef512fb3..9c99817350d1c4b55d4cf618ae1c3c607e61ffc3 100644 (file)
@@ -27,7 +27,7 @@ void recp_autocomplete(void) {
        wprintf("<ul>");
 
 
-       serv_printf("LIST %s", bstr("recp"));
+       serv_printf("AUTO %s", bstr("recp"));
        serv_getln(buf, sizeof buf);
        if (buf[0] == '1') {
                while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
index ce9be5bf2152ae52b1bf2a1f6b894407763c0da5..35c9f7358bf01288a6e78e2647ffe3ccd1d3c700 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 v6.25"  /* who's in da house */
+#define SERVER                 "WebCit v6.26"  /* who's in da house */
 #define DEVELOPER_ID           0
 #define CLIENT_ID              4
-#define CLIENT_VERSION         625             /* This version of WebCit */
-#define MINIMUM_CIT_VERSION    655             /* min required Citadel vers */
+#define CLIENT_VERSION         626             /* This version of WebCit */
+#define MINIMUM_CIT_VERSION    656             /* min required Citadel vers */
 #define DEFAULT_HOST           "localhost"     /* Default Citadel server */
 #define DEFAULT_PORT           "504"
 #define LB                     (1)             /* Internal escape chars */