]> code.citadel.org Git - citadel.git/blobdiff - citadel/ChangeLog
* Changed the comments at the beginning of each file to a consistent format
[citadel.git] / citadel / ChangeLog
index cbe1dcc9026d6c9a327a49674bbd0b2480e15096..fe87be2be93e2737a424b7e458df80bf6506e0cf 100644 (file)
@@ -1,4 +1,74 @@
  $Log$
+ Revision 572.9  2000/06/28 03:42:56  ajc
+ * Changed the comments at the beginning of each file to a consistent format
+ * Improved the parameterization of commands in the IMAP module
+
+ Revision 572.8  2000/06/27 01:27:13  ajc
+ * Coupla very small changes to get on the road to IMAP support
+
+ Revision 572.7  2000/06/22 21:41:48  ajc
+ * Made the ICQ stuff far more reliable ... by removing it!
+
+ Revision 572.6  2000/06/21 03:46:20  ajc
+ * IMAP is now legal but useless, supporting NOOP, LOGIN, and LOGOUT.
+
+ Revision 572.5  2000/06/15 20:15:52  ajc
+ * Inserted a skeleton IMAP module into the build.  IT DOES NOT WORK AT ALL.
+
+ Revision 572.4  2000/06/04 02:30:56  ajc
+ * CtdlForEachMessage() now returns the number of messages processed.  It also
+   accepts the MSGS_EQ mode, for targeting a specific message number (useful
+   for determining whether the specified message actually exists in a room).
+ * Completed the server side of the moderation system (serv_moderate.c module
+   which implements the MMOD command)
+
+ Revision 572.3  2000/06/03 05:47:57  ajc
+ * Replaced most of the very repetitive and very redundant access level checks
+   in most commands with a single API call:  CtdlAccessCheck()
+ * serv_moderate.c: added (not finished)
+
+ Revision 572.2  2000/06/02 03:38:50  ajc
+ * Bind unix socket prior to TCP socket for citadel protocol
+ * Fixed bug in sendcommand.c which was causing it to crash on attach
+
+ 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