]> code.citadel.org Git - citadel.git/blobdiff - citadel/ChangeLog
* Changed some of the rev-level sensitive stuff to look at the actual version
[citadel.git] / citadel / ChangeLog
index 146cba17141a82765f9362d80b06a1268e34425b..9fe53ba4cbdcd2bd85a6ce36bf49bea82e33747c 100644 (file)
@@ -1,4 +1,132 @@
  $Log$
+ Revision 572.1  2000/05/26 19:27:51  ajc
+ * Changed some of the rev-level sensitive stuff to look at the actual version
+   of Citadel running, not the last version with which we ran setup
+ * Added a moderation system.  Default filter level for new users is in the
+   config file.  Per-user setting is in usersupp.  Moderation level of each
+   message is in SuppMsgInfo.  Tweaked CONF, GETU, and SETU.  Read filter is
+   working.  Moderate message up/down commands are not here yet.  See
+   techdoc/moderation.txt for more info.
+
+ Revision 572.0  2000/05/23 02:09:30  ajc
+ * Updated docs and tagged everything for the 5.72 release
+
+ Revision 571.7  2000/05/20 23:28:20  ajc
+ * Fixed bug in client API that was causing netproc to crash
+
+ Revision 571.6  2000/05/15 00:05:19  ajc
+ * Double the retry interval for SMTP deliveries after each failed attempt.
+
+ Revision 571.5  2000/05/11 03:08:47  ajc
+ * serv_smtp.c: clear the relevant state buffers after an SMTP DATA command
+   completes, allowing multiple messages in one session.  Closes bug #58.
+
+ Revision 571.4  2000/04/24 03:36:43  ajc
+ * Removed references to strucmp() and struncmp(), replaced them with
+   strcasecmp() and strncasecmp() as we did in the server a while ago, and
+   set up the config script to figure out whether they need to be compiled
+   in.  Also moved them to tools.h
+ * Wrote a password manager for the client
+
+ Revision 571.3  2000/04/19 03:17:10  ajc
+ * Don't ever expire the Local System Configuration> room
+
+ Revision 571.2  2000/04/16 19:03:47  ajc
+ * Minor changes to avoid host lookup for local clients
+
+ Revision 571.1  2000/04/15 19:55:52  ajc
+ * Fixed "Unvalidated users appear even with registration disabled" bug #36
+
+ Revision 571.0  2000/04/13 02:43:24  ajc
+ * Fixed a problem that crashed the client during <G>oto commands if a room
+   existed with a name more than 32 characters (thanks to Magus for reporting
+   this one).
+ * Tagged everything and updated docs for the 5.71 release
+
+ Revision 570.18  2000/04/10 01:47:22  ajc
+ * More paginator changes.  Shuffled code around, added pagination to a bunch
+   of other functions, and replaced the old, cumbersome pagination with the
+   new, easy, API-based one in everything except message output.
+
+ Revision 570.17  2000/04/09 17:51:18  ajc
+ * Added pprintf() (paginated version of printf) to the client-side API.  Now
+   any client side function can be paginated simply by changing all of the
+   printf's to pprintf's.  I've already done this for the user list and wholist
+   (removing the old style pagination) and for "read directory."
+
+ Revision 570.16  2000/04/08 04:52:48  ajc
+ * Another minor stoopid little time display fix
+
+ Revision 570.15  2000/04/08 03:58:12  nbryant
+  * backed out the previous changes since they didn't look good on some
+    xterms with a blue bold mode. just set the background color to black
+    instead. this makes black-on-white terminals actually readable, if not
+    particularly good looking.
+
+ Revision 570.14  2000/04/08 01:36:30  nbryant
+  * citadel.c, commands.c: comment out cls() as this wasn't called if
+    ansi_color=user anyway, and we have no way of knowing whether the user's
+    terminal does background color erase, which was the reason for adding this
+    in the first place. with the recent changes to color(), the display will get
+    screwed up if they *do* have background color erase. perhaps this is a job
+    for terminfo.
+
+ Revision 570.13  2000/04/08 00:37:42  nbryant
+  * commands.c: fix color support for black-on-white color terminals such as
+    CDE's dtterm. this just avoids white-on-white text; some color combinations
+    such as yellow-on-white still aren't very legible due to contrast. There's
+    not much I can think to do about that without affecting the look on the
+    white-on-black terminals which probably account for most users.
+
+ Revision 570.12  2000/04/07 20:22:34  ajc
+ * Fixed am/pm bug in time display
+
+ Revision 570.11  2000/04/07 19:22:45  ajc
+ * For services disabled by setting port number to -1, administratively skip
+   the bind instead of just allowing it to fail.
+
+ Revision 570.10  2000/03/31 04:31:02  ajc
+ * Quick fix to 'stats' utility to purge records with bogus timestamps
+
+ Revision 570.9  2000/03/31 02:10:52  ajc
+ * Caved in to pressure and enabled <R>eply in public rooms.
+
+ Revision 570.8  2000/03/28 03:55:53  ajc
+ * Modified <.RU> to allow search for partial match
+
+ Revision 570.7  2000/03/27 03:08:19  ajc
+ * Third parameter of CtdlDeleteMessages() now takes "" instead of NULL to
+   specify 'any MIME type'.
+
+ Revision 570.6  2000/03/27 01:14:08  nbryant
+  * Makefile.in: generate parsedate.c automatically
+  * configure.in: check for bison/byacc/yacc. bison seems to build cleaner
+    code.
+  * parsedate.c: removed from CVS
+  * parsedate.y: added #include <stdlib.h> so it builds with bison
+
+ Revision 570.5  2000/03/27 00:46:10  nbryant
+  * First cut at Solaris fixes. There may still be some *printf("%s", NULL)
+    type of issues lurking in the shadows.
+
+ Revision 570.4  2000/03/25 18:29:58  nbryant
+ changed my email address
+
+ Revision 570.3  2000/03/23 02:41:50  ajc
+ *** empty log message ***
+
+ Revision 570.2  2000/03/21 03:23:24  ajc
+ * Experimental new linebreak mode
+
+ Revision 570.1  2000/03/20 14:43:19  ajc
+ * "Brown paper bag" fix for SMTP bug (incoming long fields crash logger)
+
+ Revision 570.0  2000/03/19 23:42:34  ajc
+ * This is the official 5.70 release.
+
+ Revision 1.494  2000/03/19 23:04:08  ajc
+ * Small cosmetic change to date/time output
+
  Revision 1.493  2000/03/19 05:02:39  ajc
  * SMTP hacks to deal with AOL braindamage
 
@@ -1762,3 +1890,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * Initial CVS import 
+