]> code.citadel.org Git - citadel.git/blobdiff - citadel/ChangeLog
Added the OPNA command for downloading attachments
[citadel.git] / citadel / ChangeLog
index 564e01f58823e1b81f19c9e0c0955b5540548cc6..dfb75e731c3f98333eb108bc806c4c13e9f8c430 100644 (file)
@@ -1,3 +1,77 @@
+Sun Jan 31 18:29:18 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Added qpdecode.c to the distribution (decodes quoted-printable)
+       * Finished the MIME parser
+       * Gave MSG0 a reasonable behaviour for MIME messages
+       * Added the OPNA command for downloading attachments
+
+Sat Jan 30 18:39:53 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Look for citadel.rc in current directory if not found elsewhere
+       * More work on the MIME parser
+       * Added base64.c to the distribution
+
+1999-01-29 Nathan Bryant <bryant@cs.usm.maine.edu>
+       * fixes for IRIX (thanks to wr and family for use of the Indy):
+         - use memset()/memcpy() instead of bzero()/bcopy() in all cases
+         - configure updates
+         - handle `long' pid's
+         - a few other little bits
+
+Mon Jan 25 21:23:07 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Fixed bug in save_message() which crashed the server on mail to sysop
+       * Rewrote pop_march() to be smarter about <G>oto heuristics
+
+Sat Jan 23 14:32:19 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Changed internal storage of express messages from a linked list to
+         a single, resizable buffer.
+       * Added a "room order" key to the room record, to allow some control
+         over room listing order.
+       * Made the room list commands aware of the room order key.
+       * Overhauled <G>oto heuristics to pay attention to floor & room order
+
+Wed Jan 20 19:21:51 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Added some more code to the unfinished MIME parser
+       * Changed module loading path to simply "modules" because after calling
+         get_config(), the cwd is guaranteed to be the correct BBS directory.
+
+Tue Jan 19 21:28:29 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Fixed a bug in the user editing command (client side)
+       * Started a rewrite of the MIME parser
+
+Thu Jan 14 21:21:15 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Brought over the mime_parser from WebCit and began preliminary work
+         on supporting MIME format messages.
+
+Tue Jan 12 22:30:00 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Various changes to begin work on support for MIME messages
+               - Defined format type 4 for MIME
+               - msgbase.c: *temporary* hacks in output_message() for Type 4
+               - citmail.c: added more robust header parsing, and support
+                            for Type 4.  Also eliminated the crappy built-in
+                            SMTP server.
+               - Updated some of the technical documentation
+
+Sun Jan 10 13:34:36 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Fixed access to page log room
+
+Fri Jan  8 12:35:09 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * control.c: include <limits.h> to fix PATH_MAX undefined
+       * serv_chat.c: made the following changes to cmd_sexp() --
+               * Send zero-length message to check only, don't send
+               * Send "-" message on the command line to invoke
+                 the SEND_LISTING transfer mode for a multi-line message
+       * Added facilities to log all pages to a room (site configurable)
+
+Tue Jan  5 23:24:52 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Replaced all occurances of malloc(), realloc(), and free() in the
+         server and server-modules with mallok(), reallok(), and phree().
+         Wrote macros and a set of leak-tracking functions.
+
+Sun Jan  3 20:38:45 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Documentation changes
+
+Fri Jan  1 01:01:45 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Fixed security problem relating to private rooms
+
 Wed Dec 30 20:10:52 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * sysdep.c: put a bigger string buffer into lprintf() to avoid overruns