]> code.citadel.org Git - citadel.git/blobdiff - citadel/ChangeLog
replace calls to gets with fgets
[citadel.git] / citadel / ChangeLog
index 53117e2733b8cb18ea66d02d6db2e471756c33e7..849fe7052e08e42062a0641db826e3bed29e7d21 100644 (file)
@@ -1,4 +1,159 @@
  $Log$
+ Revision 590.142  2002/03/12 03:36:55  nbryant
+ replace calls to gets with fgets
+
+ Revision 590.141  2002/03/12 03:19:09  nbryant
+ more sprintf bashing. now the only ones left are in mime_parser
+
+ Revision 590.140  2002/03/12 01:33:42  nbryant
+  - pass -Wcast-qual to gcc
+  - more sprintf bashing
+
+ Revision 590.139  2002/03/12 00:03:43  nbryant
+ more sprintf removals
+
+ Revision 590.138  2002/03/11 06:00:21  nbryant
+ use <db.h> before <db3/db.h> or <db4/db.h>
+ this is the only way i can think of to make it work everywhere; people on
+ systems like FreeBSD where the ports work the other way around will have to
+ specify an extra -I flag in their CPPFLAGS variable.
+
+ Revision 590.137  2002/03/11 05:42:46  nbryant
+ removed all references to sprintf from several files (not all files yet)
+ and replace with snprintf
+
+ Revision 590.136  2002/03/11 04:16:20  nbryant
+ warning fixes on sparc-sun-solaris2.8 with gcc 3.0.4, mostly for *printf
+ format strings
+
+ Revision 590.135  2002/03/11 03:55:24  nbryant
+  - fixes for building without OpenSSL
+  - setenv doesn't exist on all systems, use putenv instead
+  - support Solaris' curses implementation
+
+ Revision 590.134  2002/03/09 22:52:04  ajc
+ * Applied a patch submitted by <xperc@hotmail.com> to fix a potential buffer
+   overflow problem in lprintf().  I also did the same fix to cprintf().
+
+ Revision 590.133  2002/03/09 16:47:57  ajc
+ * Added BMBX to fix a problem
+
+ Revision 590.132  2002/03/09 06:18:37  ajc
+ * one more tweak
+
+ Revision 590.131  2002/03/09 05:22:29  ajc
+ * this should do it.
+
+ Revision 590.130  2002/03/09 05:02:20  ajc
+ * Attempts to fix the access control crap
+
+ Revision 590.129  2002/03/08 05:42:02  ajc
+ * Patch to allow invitations and admin access to mailbox rooms.  NEEDS TESTING!
+
+ Revision 590.128  2002/03/07 04:30:37  ajc
+ * Force recipient only in Mail>, not in all mailbox rooms
+
+ Revision 590.127  2002/03/05 22:45:40  error
+ * Autoconf fixes for DB4 support
+
+ Revision 590.126  2002/03/05 04:47:49  ajc
+ * vcard.c: another API update
+
+ Revision 590.125  2002/03/04 05:29:39  ajc
+ * Made a small API change to vcard.c for WebCit, brought the change over here too
+   in order to keep vcard.c identical everywhere.
+
+ Revision 590.124  2002/03/03 06:48:25  ajc
+ * Client and server options to disable self-service user account creation
+
+ Revision 590.123  2002/03/03 06:31:58  ajc
+ * Added password starred-out entry to newprompt() and strprompt()
+ * Applied the above setting to password set/change in <.A>ide <U>seredit
+
+ Revision 590.122  2002/03/03 06:18:45  ajc
+ * Implemented the CREU server command to administratively create user accounts
+ * Added the ability to create new user accounts to <.A>ide <U>seredit
+
+ Revision 590.121  2002/03/03 06:05:16  ajc
+ * Split up some of the code in order to prepare for user accounts to be
+   administratively created without logging in to them.
+
+ Revision 590.120  2002/03/02 05:56:48  ajc
+ * Properly implemented the network filter list.  Finished the server module and
+   did a client-side <.A>ide <S>ysconfig <F>ilterlist command.
+
+ Revision 590.119  2002/03/01 04:24:20  ajc
+ * Cosmetic change to Received: line
+
+ Revision 590.118  2002/03/01 04:16:22  ajc
+ * CtdlReadMessageBody() -- fixed bug that caused the prepend buffer to be
+   discarded instead of prepended.  "Received:" lines now work.
+
+ Revision 590.117  2002/02/23 19:20:51  ajc
+ * Do the use table purge in two phases to avoid crashy crashy
+
+ Revision 590.116  2002/02/20 22:42:19  ajc
+ * Started adding better management of source IP addressses in SMTP service
+
+ Revision 590.115  2002/02/15 04:28:57  ajc
+ * Wrote the expire/purge routine for the new use table
+
+ Revision 590.114  2002/02/15 04:05:08  ajc
+ * Began implementation of a networker use table that doesn't chew up oodles
+   of CPU time.  (It uses a cdb instead.)
+
+ Revision 590.113  2002/02/15 03:40:06  ajc
+ * Stu's changes (which he checked in without making any ChangeLog comments,
+   bad Stu!) didn't build properly without curses.  Added #ifdef's.
+
+ Revision 590.112  2002/02/13 22:15:10  ajc
+ * That was stupid.
+
+ Revision 590.111  2002/02/13 22:04:11  ajc
+ * added vcard_to_html() function
+
+ Revision 590.110  2002/02/13 15:48:55  ajc
+ * Allow the READ command to return packets bigger than 1 byte.  (ooops!)
+
+ Revision 590.109  2002/02/12 20:15:25  ajc
+ * Threw in a few more #ifdef's so the client build doesn't barf on
+   non-curses systems
+ * Added rc_prompt_control (<N>ext/<S>top active at paginator: on/off/user)
+
+ Revision 590.108  2002/02/11 15:52:10  ajc
+ * Don't crash when deleting "purge this vCard" messages
+
+ Revision 590.107  2002/02/10 22:36:41  nbryant
+  - replace cdb_trunc with a complete version of the code i had been
+    working on; fallback code for db < 3.3.x needed
+  - change 'can't connect to host.port' to 'can't connect to host:port'
+
+ Revision 590.106  2002/02/08 22:39:08  ajc
+ * If there's already a Subject line in memory, display it below the usual
+   headers when the user hits <E>
+
+ Revision 590.105  2002/02/08 22:36:23  ajc
+ * Changed the logic for printing RFC822 addresses (again)
+ * Implemented cdb_trunc() in database_sleepycat.c, using db_truncate()
+   (We need to either provide an alternative implementation or require DB >=3.3)
+ * Automatically Re: subject line in the client where appropriate
+
+ Revision 590.104  2002/02/08 19:02:25  ajc
+ * Added client and server side support for entering Subject lines in
+   messages when not using RFC822.
+
+ Revision 590.103  2002/02/08 18:10:07  ajc
+ * When outputting a message in non-RFC822 format, don't display an Internet
+   address if the user is local.
+
+ Revision 590.102  2002/02/07 04:42:49  ajc
+ * Silently refuse to add directory entries for Internet addresses already
+   belonging to other users.
+ * cdb_trunc() for CtdlDirectoryInit: implemented for GDBM, stubbed for DB
+
+ Revision 590.101  2002/02/05 05:05:53  ajc
+ * Don't crash when posting if the user doesn't have an Internet directory address
+
  Revision 590.100  2002/02/03 15:29:03  error
  * fixed a silly oversight in serv_crypto.c when removing the ETLS command