* Semi-broken vCard replacement implementation in place.
[citadel.git] / citadel / ChangeLog
index 49516cd9dfea85697bd818e337fd361b1e17e309..07c480735d90ac46b2edd7cd5bd92020cde56c9d 100644 (file)
@@ -1,4 +1,82 @@
 $Log$
+Revision 1.380  1999/10/07 02:58:46  ajc
+* Semi-broken vCard replacement implementation in place.
+* Added "Z" (Zap, supersede) field to message format
+
+Revision 1.377  1999/10/04 03:19:52  ajc
+* We now have a housekeeping thread and a housekeeping queue.
+
+Revision 1.376  1999/10/03 21:48:21  ajc
+* Added serv_upgrade.h to automagically convert pre-5.55 format user records
+  to 5.55 format user records and generate vCards.
+
+Revision 1.375  1999/09/29 21:13:17  ajc
+* CtdlWriteObject() can now store objects in personal rooms for any specified
+  user -- rather than only the current user or non-personal rooms.
+
+Revision 1.374  1999/09/29 17:26:56  ajc
+* serv_vcard.c: fixed crashola bug in cmd_greg()
+* tools.c: simplified and improved the string tokenizer.  Now it runs in a
+           single pass with no intermediate buffer.
+
+Revision 1.373  1999/09/28 03:27:37  ajc
+* Fully migrated cmd_greg() and cmd_regi() into serv_vcard (still has bugs)
+
+Revision 1.372  1999/09/27 03:33:40  ajc
+* cmd_regi() is now in serv_vcard and writes to the vcard instead of to the
+  usersupp file.  Still needs tweaking.
+
+Revision 1.371  1999/09/24 03:32:19  ajc
+* "read my vCard" and "write my vCard" are written and tested.
+
+Revision 1.370  1999/09/24 02:54:17  ajc
+* Worked a little more on the vCard stuff.  The serv_vcard module is now in
+  place, and a "read my vcard" function is there; "write my" is next...
+
+Revision 1.369  1999/09/23 03:07:56  ajc
+* The vCard 'class' is now linked into the server, though it's not really
+  functional yet.  Its constructors/destructors are debugged, though.
+
+Revision 1.368  1999/09/19 21:28:33  ajc
+* Finished off the message architecture stuff with a new class of hooks to
+  enable future server-side handlers.
+
+Revision 1.367  1999/09/19 15:57:06  ajc
+* migrated cmd_ent3() to CtdlSaveMessage()
+
+Revision 1.366  1999/09/19 05:13:57  ajc
+* Debugged the new version of CtdlWriteObject()
+
+Revision 1.365  1999/09/16 03:23:23  ajc
+* Did most of the migration from save_message() to CtdlSaveMsg().  The
+  latter builds a "struct CtdlMessage" (so we can run server-side handlers
+  against it later on), then serializes it and stores to disk.
+* BROKEN BUILD ALERT!!  cmd_ent3() and CtdlWriteObject() are still not
+  migrated.  They are stubbed out and will MALFUNCTION if used right now!!
+
+Revision 1.364  1999/09/07 01:42:42  ajc
+* cmd_msg3() now uses serialize_message() for its output.  All message
+  commands will eventually exist as a "struct CtdlMessage" at some point
+  so that we can install server-side handler hooks.
+
+Revision 1.363  1999/09/07 00:04:13  ajc
+* netproc.c: put outgoing messages into the use table, too -- this prevents
+  locally originated messages from showing up again if a remote system is
+  misconfigured and spools them back to us.
+
+Revision 1.362  1999/09/06 03:39:15  ajc
+* citadel.c: run strproc() on new passwords
+
+Revision 1.361  1999/09/03 17:50:26  playcow
+For URL view, don't prompt user to select url if there is only one.  Display
+<U>RL View prompt if message contains url(s). -Ben
+
+Revision 1.360  1999/09/02 02:09:59  ajc
+* msgbase.c: new function serialize_message() for future use
+
+Revision 1.359  1999/09/01 21:09:25  ajc
+* database.c: display the GDBM version string on startup
+
 Revision 1.358  1999/09/01 02:36:34  ajc
 * Actually _enforce_ the max msg len limit