]> code.citadel.org Git - citadel.git/blob - citadel/ChangeLog
fixes for BSDI. see ChangeLog.
[citadel.git] / citadel / ChangeLog
1 1999-02-24 Nathan Bryant <bryant@cs.usm.maine.edu>
2         * configure.in: improved check for pthreads
3         * configure.in, routines.c, acconfig.h: check for ut_type in struct utmp
4         * configure.in, Makefile.in: support for building server modules as
5           relocatable objects for BSDI (which still uses a.out *gag* *choke*)
6         * configure.in: compiler choice & flags for BSDI; check for libtermcap
7         * database.c: don't use a critical section in open_databases()
8         * housekeeping.c: use getfloor()/putfloor() instead of
9           lgetfloor()/lputfloor() in check_ref_counts()
10         * mime_parser.c: include <errno.h>
11         * msgbase.c: include <limits.h>
12         * sysdep.c: hacks for BSDI. use signals to fake thread cancellation;
13           don't call master_cleanup() directly from signal handler.
14         * routines.c: prototype getutline() if necessary
15         * getutline.c: stupid bugfix
16
17 Mon Feb 15 22:59:00 EST 1999 Vaggelis Tsirkas
18         * citadel.c: increased hostname buffer size to handle very big names
19
20 1999-02-15 Nathan Bryant <bryant@cs.usm.maine.edu>
21         * sysdep.c(main): initialize alen before call to accept()
22
23 1999-02-04 Nathan Bryant <bryant@cs.usm.maine.edu>
24         * configure.in: improved check for cygwin
25         * configure.in, routines.c: access utmp directly instead of calling
26           `who' if getutline() is available.
27         * configure.in, Makefile.in, getutline.c: replace getutline() on
28           systems which don't have it
29         * routines.c: now always access utmp directly unless we can't find
30           utmp.h
31
32 1999-02-02 Nathan Bryant <bryant@cs.usm.maine.edu>
33         * Fixes for Cygwin:
34           - ifdef out file download methods that require named pipes (client)
35           - include pthread.h and gdbm.h only if they are present (fixes
36             auto dependency generation)
37           - include snprintf.h where needed
38           - handle .exe suffixes for "make install"
39
40 Tue Feb  2 22:15:08 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
41         * Overhauled the express messaging system (again)
42
43 Mon Feb  1 19:48:04 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
44         * messages.c: implemented client download of MIME attachments
45
46 Sun Jan 31 18:29:18 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
47         * Added qpdecode.c to the distribution (decodes quoted-printable)
48         * Finished the MIME parser
49         * Gave MSG0 a reasonable behaviour for MIME messages
50         * Added the OPNA command for downloading attachments
51
52 Sat Jan 30 18:39:53 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
53         * Look for citadel.rc in current directory if not found elsewhere
54         * More work on the MIME parser
55         * Added base64.c to the distribution
56
57 1999-01-29 Nathan Bryant <bryant@cs.usm.maine.edu>
58         * fixes for IRIX (thanks to wr and family for use of the Indy):
59           - use memset()/memcpy() instead of bzero()/bcopy() in all cases
60           - configure updates
61           - handle `long' pid's
62           - a few other little bits
63
64 Mon Jan 25 21:23:07 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
65         * Fixed bug in save_message() which crashed the server on mail to sysop
66         * Rewrote pop_march() to be smarter about <G>oto heuristics
67
68 Sat Jan 23 14:32:19 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
69         * Changed internal storage of express messages from a linked list to
70           a single, resizable buffer.
71         * Added a "room order" key to the room record, to allow some control
72           over room listing order.
73         * Made the room list commands aware of the room order key.
74         * Overhauled <G>oto heuristics to pay attention to floor & room order
75
76 Wed Jan 20 19:21:51 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
77         * Added some more code to the unfinished MIME parser
78         * Changed module loading path to simply "modules" because after calling
79           get_config(), the cwd is guaranteed to be the correct BBS directory.
80
81 Tue Jan 19 21:28:29 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
82         * Fixed a bug in the user editing command (client side)
83         * Started a rewrite of the MIME parser
84
85 Thu Jan 14 21:21:15 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
86         * Brought over the mime_parser from WebCit and began preliminary work
87           on supporting MIME format messages.
88
89 Tue Jan 12 22:30:00 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
90         * Various changes to begin work on support for MIME messages
91                 - Defined format type 4 for MIME
92                 - msgbase.c: *temporary* hacks in output_message() for Type 4
93                 - citmail.c: added more robust header parsing, and support
94                              for Type 4.  Also eliminated the crappy built-in
95                              SMTP server.
96                 - Updated some of the technical documentation
97
98 Sun Jan 10 13:34:36 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
99         * Fixed access to page log room
100
101 Fri Jan  8 12:35:09 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
102         * control.c: include <limits.h> to fix PATH_MAX undefined
103         * serv_chat.c: made the following changes to cmd_sexp() --
104                 * Send zero-length message to check only, don't send
105                 * Send "-" message on the command line to invoke
106                   the SEND_LISTING transfer mode for a multi-line message
107         * Added facilities to log all pages to a room (site configurable)
108
109 Tue Jan  5 23:24:52 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
110         * Replaced all occurances of malloc(), realloc(), and free() in the
111           server and server-modules with mallok(), reallok(), and phree().
112           Wrote macros and a set of leak-tracking functions.
113
114 Sun Jan  3 20:38:45 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
115         * Documentation changes
116
117 Fri Jan  1 01:01:45 EST 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
118         * Fixed security problem relating to private rooms
119
120 Wed Dec 30 20:10:52 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
121         * sysdep.c: put a bigger string buffer into lprintf() to avoid overruns
122
123 Sat Dec 26 16:56:46 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
124         * internetmail.config: commented this file more clearly
125
126 Wed Dec 23 20:42:49 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
127         * citadel.c: added some experimental code to automatically reconnect
128           to the server if the connection is broken.  For some reason, it only
129           works once.
130
131 Wed Dec 23 18:47:12 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
132         * sysdep.c: ignore SIGPIPE.  This keeps broken connections from
133           crashing the whole server.
134         * Tagged everything for the official 5.50 release.
135
136 Mon Dec 21 07:54:20 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
137         * housekeeping.c: call kill_session() with session_to_kill,
138           not ccptr->cs_pid (was crashing the server)
139
140 Sat Dec 19 13:57:48 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
141         * Added "-i" flag to netproc to make it skip the export phase.
142           Updated other programs to call netproc in this way when appropriate.
143         * Updated network.txt to reflect the usage for netproc (which has
144           been wrong for several releases)
145
146 Thu Dec 17 00:17:04 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
147         * Started removing the word "beta" from the docs and code.
148           Preparing for an actual release.
149         * msgbase.c: generate an 'I' field when requested (i.e. on locally
150           originating messages.  this was breaking parts of the network)
151
152 1998-12-15 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
153         * msgbase.c: remove extra call to alias() which was causing
154           Citadel-to-Citadel mail to fall into the bit bucket.
155         * msgbase.c: fixed tempfile naming problem that could cause a new
156           outgoing netmail message to overwrite another if netproc had not been
157           run in between
158
159 1998-12-14 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
160         * More session table stability nonsense
161
162 Sun Dec 13 17:40:08 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
163         * sysdep.c, citserver.c: (hopefully) fixed a session table concurrency
164           bug which was causing the server to occasionally crash.
165         * removed serv_test.so from the default build
166
167 Fri Dec 11 18:50:00 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
168         * setup.c: default value for maxsessions is now 0 (no limit)
169         * room_ops.c: don't allow users to create a room called "Mail"
170         * serv_expire.c: fixed "number of messages purged" display
171         * commands.c: when using color, default to low-intensity colors
172
173 Tue Dec  8 07:58:16 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
174         * Beta 2
175
176 Sat Dec  5 01:24:03 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
177         * Added a new type of module hook for adding logging functions
178         * Removed whitespace to left and right of '@' in netmail recipients
179         * sysdep.c: read citadel.config _before_ initializing loadable modules
180         * stats.c: fixed segfault resulting from extracting log lines
181         * Ripped most of the "attachments" stuff out of both the client and
182           server.  (Thought of a better way to handle it ... LATER.)
183
184 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
185         * setup.c: create citadel.config with mode 0600
186         * Makefile.in: don't chmod sendcommand
187         * serv_upgrade.c: don't create citadel.config if it doesn't already
188           exist (paranoia)
189         * setup.c: saner defaults for nodename and fqdn
190
191 Wed Dec  2 20:37:05 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
192         * msgbase.c: modified AddMessageToRoom() and all functions that call it
193           to use a more reliable/accurate method to set quickroom.QRhighest
194         * weekly.in: don't sort/purge filedir where filedir doesn't exist
195
196 1998-12-02 Nathan Bryant <bryant@cs.usm.maine.edu>
197         * weekly is now generated by configure
198
199 Mon Nov 30 19:48:52 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
200         * room_ops.c: added sort_msglist() to move and save operations
201         * sendcommand.c: added (also updated utils.txt, weekly, Makefile.in)
202         * BETA 1
203
204 Sun Nov 29 23:57:39 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
205         * Fixed cmd_regi() to not display a second result code after xfer
206         * Makefile.in: Removed "chmod 4755 citmail netmailer"
207
208 1998-11-23 Nathan Bryant <bryant@cs.usm.maine.edu>
209         * citadel.spec: added
210
211 1998-11-22 Nathan Bryant <bryant@cs.usm.maine.edu>
212         * Makefile.in: split install target into install-exec, install-data,
213           and install-doc subtargets
214
215 Sat Nov 21 16:53:30 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
216         * Added a fourth color mode in the client: "user" which turns color
217           on or off according to a per-user flag stored on the server.  Added
218           server-side support for this too, of course.
219         * import.c: removed
220         * serv_expire.c: finished the code to purge stale visits
221         * sysdep.c: strip trailing nonprintables in client_gets()
222         * routines2.c: fixed <.AS> command; all configs now work properly
223         * Moved num_parms() and all the extract() type functions into tools.c
224           and removed them from all other files.  Linked in tools.[o|ro] there.
225         * netproc.c: handled incoming file transfers to correct room directory
226         * room_ops.c: fixed incorrect naming of files in info and images dirs
227
228 Fri Nov 20 20:29:07 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
229         * setup.c: removed all prompts that can be configured from within the
230           client in order to simplify the setup procedure
231
232 Thu Nov 19 23:28:33 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
233         * Fixed serv_upgrade.c and export5.c (found elsewhere) to use a new
234           export format which treats visits as a separate section
235         * serv_expire.c: began writing functions to purge rooms and visits
236           (neither work yet), and added a way to call defrag_databases()
237
238 Wed Nov 18 23:51:17 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
239         * Reimplemented 'visit' structs stored globally instead of as
240           lists-per-user
241
242 Tue Nov 17 22:37:48 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
243         * Started implementing global room numbers.
244
245 Sun Nov 15 20:32:34 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
246         * room_ops.c: mailbox rooms always appear on the main floor
247         * made QR_MAILBOX rooms non-editable
248         * cmd_setr() delete old room record when room name changes
249           (This causes a big mess that exposes a flaw in the whole design.)
250         * room_ops.c: users can delete messages from their mailboxes
251
252 Thu Nov 12 23:59:13 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
253         * Rewrote cmd_rchg() and also increased the size of the "fakename"
254           buffer.  Overruns are probably what was causing the crashes.
255         * Changed the way cmd_ent3() handles mail messages; the previous code
256           rerouted all private mail to the trash.
257
258 Wed Nov 11 17:57:39 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
259         * citserver.c: slight changes to cmd_rchg() and cmd_hchg() [crashes]
260         * citserver.c, msgbase.c, user_ops.c: hide the owner-prefix of mail
261           rooms in a couple more places: set_wtmpsupp() and make_message()
262         * sysdep.c: added an fflush() to lprintf() for "tail -f"-able logs
263         * serv_expire.c: purge ops are now a command instead of a cleanup
264           function.  This is probably temporary as well.
265         * citadel.c: fixed the way <.WL> parses the returned data from a
266           TIME command.
267
268 1998-11-11 Nathan Bryant <bryant@cs.usm.maine.edu>
269         * serv_upgrade.c: fix uninitialized variable
270
271 Wed Nov 11 00:47:32 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
272         * msgbase.c: fixed a bug that was misrouting incoming network msgs
273         * server.h, database.c: wrapped all GDBM calls in critical sections
274           to avoid making those calls re-entrantly (gdbm fatal: lseek error)
275
276 1998-11-10 Nathan Bryant <bryant@cs.usm.maine.edu>
277         * Makefile.in: link in snprintf.o where needed
278
279 1998-11-09 Nathan Bryant <bryant@cs.usm.maine.edu>
280         * client_chat.c: eliminate calls to sprintf()
281         * commands.h, routines.c, routines2.c: warning fix
282         * commands.c, control.c, cux2ascii.c, file_ops.c, import.c,
283           ipc_c_tcp.c: eliminate sprintf() calls
284
285 Mon Nov  9 19:15:31 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
286         * serv_upgrade.c: added all missing fields to export/import
287         * serv_expire.c: support per-user purge time when purging users
288         * user_ops.c: added per-user purge time to AGUP and ASUP commands
289         * routines.c: added more stuff to <.A>ide <E>dit user
290
291 Sun Nov  8 22:56:53 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
292         * serv_expire.c: created; moved message expiry from serv_test.c,
293           moved user purge from userpurge.c
294         * userpurge.c: deleted
295         * routines2.c: finished <.AS> command
296         * room_ops.c: fixed Aide room access (for some reason, the Aide
297           room had the QR_MAILBOX flag set)
298
299 1998-11-08 Nathan Bryant <bryant@cs.usm.maine.edu>
300         * useradmin.c: really removed (cvs remove)
301         * aidepost.c, citadel.c: convert all sprintf() calls to snprintf()
302         * sysdep.c: fix overrun in lprintf() described by dme/Dead Monkey
303         * citmail.c, citserver.c: convert all sprintf() call to snprintf()
304
305 Sun Nov  8 13:19:36 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
306         * useradmin.c: removed
307         * utils.doc: removed references to useradmin and sysoputil
308
309 Fri Nov  6 20:22:20 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
310         * citadel.h (and related files): removed defunct parameters,
311           c_defent and c_msgbase (erase your test bbs)
312         * Implemented CONF server command for site-global configs
313         * Shuffled yesno() and yesno_d() from routines.c to commands.c
314         * commands.c: implemented boolprompt()
315         * routines2.c: started adding CONF questions to <.AS> command
316         * room_ops.c: began a fix for the mysterious disappearing Aide room
317
318 1998-11-05 Nathan Bryant <bryant@cs.usm.maine.edu>
319         * snprintf.c: warning fix propagated over from gcit
320
321 1998-11-04 Nathan Bryant <bryant@cs.usm.maine.edu>
322         * added RCS Id keyword strings to sources
323         * citmail.c: reverted to version 1.10
324
325 Wed Nov  4 10:53:13 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
326         * messages.c: temporarily set screenwidth to a fixed value of 80
327           during <P>rint operations.
328
329 Mon Nov  2 12:59:03 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
330         * setup.c: looks for 'citadel', 'bbs', or 'guest' in /etc/passwd to
331           try to get a default for bbsuid if it's currently set to 0
332         * citmail.c: changed usersupp.eternal to usersupp.usernum (why didn't
333           it complain about this before?)
334         * serv_upgrade.c: began writing an "export" command to do sidegrades
335
336 Sun Nov  1 18:47:42 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
337         * serv_upgrade.c: cosmetic changes
338         * Implemented message expiry by date (this really needs to be moved
339           out of serv_test.c, but where does it belong?)
340
341 1998-11-01 Nathan Bryant <bryant@cs.usm.maine.edu>
342         * serv_upgrade.c: warning fixes
343         * acconfig.h: remove ANSI_COLOR
344         * Configure, Makefile.tmpl: removed
345
346 Sat Oct 31 20:48:44 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
347         * More stoopid ANSI colour additions here and there.
348         * ANSI colour selection is now in citadel.rc instead of an option in
349           the configure script.  "on" "off" and "auto" are available.
350         * added "build.txt" to the techdoc directory, with LS's build notes
351
352 1998-10-31 Nathan Bryant <bryant@cs.usm.maine.edu>
353         * citadel.c, commands.c, commands.h: set background color to black
354           before clearing screen, so that we can actually see text on
355           black-on-white xterms.
356
357 1998-10-29 Nathan Bryant <bryant@cs.usm.maine.edu>
358         * rooms.c: fix color of Mail>
359         * citadel.c: send ANSI detect sequence after attach_to_server() so the
360           terminal doesn't send the answerback sequence to the shell if we
361           can't connect.
362
363 Wed Oct 28 20:20:14 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us
364         * citadel.c: Added a splash of colour to the Wholist
365
366 1998-10-28 Nathan Bryant <bryant@cs.usm.maine.edu>
367         * configure.in: added comments
368         * mkinstalldirs: new file to be used for `make install'
369         * aclocal.m4, missing: new files, also swiped from automake
370         * citadel.c: don't mung the terminal if we can't find citadel.rc
371         * Makefile.in: added `install' target, `clean' removes
372           *.mo, rebuild configure when configure.in changes.
373         * configure.in: check for install and autoconf
374         * configure.in, Makefile.in: only pass -fPIC to gcc
375         * policy.c: warning fix for OSF/1 (use memset() instead of bzero())
376
377 Tue Oct 27 22:25:42 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
378         * Unified the "unpacked database" format for both upgrades and
379           sidegrades (also see export5.c elsewhere)
380         * citserver.c: clear out cmdbuf before reading a command; some server
381           commands were accidentally extracting parameters from previous cmds
382         * rooms.c: removed the warning about the ineffectiveness of kicking
383           users out of public rooms, because the new server can do lockouts
384
385 1998-10-27 Nathan Bryant <bryant@cs.usm.maine.edu>
386         * sysdep.c (client_gets), ipc_c_tcp.c (serv_gets): improved handling
387           of long lines. 
388         * Makefile.in: partial support for VPATH builds, autodependency fix
389
390 Tue Oct 27 00:08:16 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
391         * minor documentation changes
392
393 Sun Oct 25 14:57:40 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
394         * messages.c: fixed an oversight that was allowing attachments even
395           when disabled in citadel.rc
396
397 1998-10-25 Nathan Bryant <bryant@cs.usm.maine.edu>
398         * routines2.c: warning fix
399
400 Sat Oct 24 22:07:56 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
401         * Client: added message expiration policy questions to room edit
402         * Client: added <.A>ide <S>ystem configuration command
403
404 1998-10-24 Nathan Bryant <bryant@cs.usm.maine.edu>
405         * Makefile.in: Auto dependency generation (may require GNU make, but
406           does at least function without this feature on OSF/1 make);
407           Makefile is regenerated when Makefile.in changes (ditto);
408           `realclean' is now known as `distclean';
409           portability fixes for older Unix make utilities
410         * citadel.c, citadel.h, commands.c: make client suspendable
411
412 Fri Oct 23 19:34:38 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
413         * setup.c: default node name is now obtained from uname()
414         * config.c: added put_config()
415         * policy.c: added, moved GetExpirePolicy() from room_ops.c
416         * policy.c: implemented cmd_gpex() and cmd_spex()
417
418 Wed Oct 21 22:24:48 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
419         * Mail rooms now hide their owner-prefix from the client.
420         * proxy.c: added configurability and primitive message expiry
421
422 1998-10-20 Nathan Bryant <bryant@cs.usm.maine.edu>
423         * Makefile.tmpl: fix to build client with old Configure script
424         * configure.in: autologin defaults to enabled if crypt() is available
425         * room_ops.c: fix improper null-termination bug I introduced
426
427 Mon Oct 19 20:52:55 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
428         * Client ability to force display of prompts in Mail rooms, even when
429           the user has prompting turned off (citadel.rc option)
430
431 1998-10-16 Nathan Bryant <bryant@cs.usm.maine.edu>
432         * sysdep.c (cprintf): generate a newline on truncated buffer
433         * room_ops.c: exploitable overrun fixes
434
435 Thu Oct 15 19:27:32 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
436         * msgbase.c: reimplemented cmd_move()
437           room_ops.c: wrote AddMessageToRoom() which is used for both entering
438           and moving messages.
439         * setup.c: system-default message expire policy of "number of
440           messages, 150" is now a default configuration instead of a temp hack
441         * proxy.c: cache dir create now dies on any error except EEXIST
442
443 Wed Oct 14 22:41:16 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
444         * Misc code cleanup
445
446 1998-10-13 Nathan Bryant <bryant@cs.usm.maine.edu>
447         * configure.in: don't check for -lcrypt unless autologin is enabled
448         * file_ops.c: fix another overrun
449
450 Mon Oct 12 15:27:21 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
451         * Killed the "rooms" subdirectory (it isn't used anymore)
452         * dynloader.c: Made dynamically added server commands case-insensitive
453         * import.c is now serv_upgrade.c, a module
454         * Removed most of the "level 9" trace messages no longer needed
455
456 1998-10-12 Nathan Bryant <bryant@cs.usm.maine.edu>
457         * Makefile.in: simplified to use pattern rules; files compiled with
458           -D_REENTRANT go to *.ro to allow the same files to be used with both
459           client and server
460         * tools.c, tools.h: new files; misc routines used by both client and
461           server go here. contains safestrncpy() at the moment.
462         * rooms.c: fix several exploitable buffer overruns
463         * sysdep.c: fix infinite loop when long lines are received from the
464           client; fix exploitable buffer overrun in cprintf()
465         * ipc_c_tcp.c: fix infinite loop on long line from server
466         * serv_upgrade.sh: remove uncnsrd-dependent absolute path
467         * .cvsignore: add *.ro
468
469 Sun Oct 11 23:17:48 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
470         * Built some more of the message expiry infrastructure
471
472 1998-10-11 Nathan Bryant <bryant@cs.usm.maine.edu>
473         * citserver.c: fix two more overruns, one of which was preventing
474           the "From Host" from showing up in the <W>ho listing.
475
476 Sun Oct 11 02:51:55 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
477         * Moved "struct visit" and its associated defs from citadel.h to
478           server.h where they belong
479         * Set up data structures for room policies (expiry, etc.)
480
481 1998-10-10 Nathan Bryant <bryant@cs.usm.maine.edu>
482         * citserver.c: fix overrun which caused segv's on servers with long
483           hostnames.
484
485 Fri Oct  9 18:34:06 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
486         * user_ops.c: added PurgeStaleRelationships() to do processing at
487           session logout time to remove visits for rooms which no longer exist
488         * user_ops.c: implemented NewMailCount()
489
490 1998-10-09 Nathan Bryant <bryant@cs.usm.maine.edu>
491         * serv_chat.c: fix buffer overrun that was resulting in segv's
492         * serv_chat.c: fix another overrun that could cause sessions to hang,
493           and cleaned up some other strncpy()-related stuff. DON'T FORGET TO
494           NULL-TERMINATE DESTINATION BUFFERS AFTER STRNCPY CALLS.
495
496 Fri Oct  9 13:22:37 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
497         * Implemented "lazy mode" traversal - pressing the space bar will do
498           <N>ext messsage, <G>oto next room, or read <N>ew as appropriate.
499         * room_ops.c: modify CtdlRoomAccess() to allow access to mailbox rooms
500           only to their owners.
501
502 Thu Oct  8 17:13:27 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
503         * messages.c, citadel.rc: added the ability to display message numbers
504           in the header when reading messages.  I think this is butt ugly, but
505           some of the DaveCode afficionados seem to like it...
506
507 Thu Oct  8 15:34:45 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
508         * room_ops.c: Added is_noneditable() function to replace all of the
509           duplicated code present in all functions which edit room parameters.
510
511 1998-10-08 Nathan Bryant <bryant@cs.usm.maine.edu>
512         * lots of warning fixes; builds with -std1 on dec unix
513         * aidepost.c, citadel.h, citmail.c, file_ops.c, msgbase.c, netmailer.c,
514           netproc.c, rcit.c, server.h, stats.c, userlist.c: use time_t where
515           needed
516         * control.c, room_ops.c, serv_chat.c, sysdep.c: use memset() instead of
517           bzero()
518         * dynloader.c, dynloader.h, messages.c, server.h, sysdep.c,
519           sysdep_decls.h: function pointer/prototyping fixes
520         * rooms.c: use mkfifo(3) instead of system("mkfifo")
521
522 1998-10-07 Nathan Bryant <bryant@cs.usm.maine.edu>
523         * snprintf.c, snprintf.h: new files
524         * Makefile.in, configure.in, dynloader.c, sysdep.c: support for the
525           above; citserver now builds and runs on Digital Unix 4.0d with the
526           GNU-style configure script. there is a bug with the hostname display
527           in the wholist.
528         * netproc.c: sillyness fix
529         * room_ops.h: prototype delete_room()
530         * client_chat.c, commands.c, serv_chat.c, sysdep.c:
531           use HAVE_SYS_SELECT_H macro
532
533 Mon Oct  5 17:01:32 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
534         * Began fixing the stuff I broke
535
536 Sun Oct  4 23:35:18 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
537         * Did the big migration to the new data structures.  Lots of stuff is
538           now broken.  Basic moving from room to room works, but Mail is
539           broken, and some of the administrative commands are unimplemented.
540
541 1998-10-02 Nathan Bryant <bryant@cs.usm.maine.edu>
542         * configure.in: autologin now defaults to disabled
543
544 Fri Oct  2 00:04:31 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
545         * Finally removed all three usersupp.foo[MAXROOMS] elements, and
546           migrated all the code that used them to use "struct visit" instead.
547
548 Thu Oct  1 23:02:20 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
549         * Rewrote [l][get|put]room() functions to use room names rather than
550           room index numbers.  Temporarily prepended a "n" to these four
551           function names until they are put to use.
552
553 Thu Oct  1 16:27:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
554         * Removed a few more references to usersupp.lastseen[]
555
556 1998-10-01 Nathan Bryant <bryant@cs.usm.maine.edu>
557         * .cvsignore: add so_locations (generated by osf1 ld with shared libs)
558         * Makefile.in: restructured variables for greater consistency, use
559           @echo to print out notices during the make process, add so_locations
560           to `cleaner'
561         * configure.in, Makefile.in: configure checks for -rdynamic
562         * ipc_c_tcp.c: fix DEC compiler warning wrt unsigned char
563         * stats.c: add semicolon to placate DREC compiler
564         * user_ops.c: define _POSIX_C_SOURCE, include <limits.h>
565         * configure.in: pass -pthread to DEC compiler, don't check for
566           libpthread[s] on DEC Unix
567
568 1998-09-30 Nathan Bryant <bryant@cs.usm.maine.edu>
569         * Makefile.in: new variable PTHREAD_DEFS for portability
570         * aidepost.c, citadel.c, citmail.c, mailinglist.c, msgform.c,
571           netmailer.c, netpoll.c, netproc.c, rcit.c, readlog.c, setup.c,
572           stats.c, userlist.c, whobbs.c: return type of main() is int
573         * citadel.c, commands.c, messages.c: use time_t properly
574         * citserver.c: include <limits.h>
575         * config.guess, config.sub, install-sh: new files
576         * configure.in: don't use gcc on Digital Unix
577
578 Tue Sep 29 23:17:34 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
579         * room_ops.c: modified usergoto() to look at the new data structures
580           for counting new messages and such.
581
582 1998-09-29 Nathan Bryant <bryant@cs.usm.maine.edu>
583         * user_ops.c: fix compiler warning and potential memory leak,
584           include sysdep.h
585         * configure.in, Makefile.in: only build the server if we find pthreads
586         * Makefile.in: realclean removes config.{cache,log,status}
587
588 Tue Sep 29 13:20:14 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
589         * Removed code from some of the utilities which was still attempting
590           to access the old non-gdbm data store.
591         * housekeeping.c: rewrote check_ref_counts() to do a ForEachRoom()
592           traversal instead of a MAXROOMS loop.
593         * sysdep.c: set up a dummy CitContext record to be used during server
594           startup, during which time there is no real context.
595
596 Mon Sep 28 23:51:51 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
597         * Implemented the function ForEachRoom() to handle all-rooms traversal
598           (this will work with both the old and new paradigms, because both
599           use a GDBM database with one room per record).  Migrated all room
600           list commands to use it.
601
602 Mon Sep 28 22:05:35 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
603         * Implemented the function CtdlRoomAccess() to handle *all* of the
604           user-access-to-rooms functionality.  Migrated all room list commands
605           to use it.  Still need to migrate gotos.
606
607 1998-09-28 Nathan Bryant <bryant@cs.usm.maine.edu>
608         * configure.in, acconfig.h: new files; partially functional GNU
609           autoconf configure script. Run autoheader; autoconf; ./configure
610           --prefix=`pwd` to test.
611         * Makefile.tmpl: new file; this is what Makefile.in used to be. Used by
612           Configure.
613         * Makefile.in: modified to work with autoconf-style configure script
614         * Configure: modified to use Makefile.tmpl and generate autoconf-style
615           macros. Removed procfs detection. Pass -O2 to gcc, -O to other
616           compilers. Removed mknod/mkfifo detection; code should use mkfifo(3).
617         * citmail.c, msgform.c, netproc.c, routines.c, support.c, userlist.c,
618           whobbs.c: use HAVE_STRERROR macro rather than NO_STRERROR
619         * commands.c: use HAVE_TERMIOS_H macro rather than POSIX_TERMIO
620         * netproc.c: remove procfs stuff. simply attempt to kill the target
621           process with signal zero instead; this checks whether the process
622           exists.
623         * setup.c, useradmin.c: use HAVE_CURSES_H macro
624
625 Sun Sep 27 23:41:29 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
626         * BOTH the old and new generation systems are being written to at
627           this point.  Code that reads stuff is still using the old system.
628
629 Sun Sep 27 16:10:49 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
630         * Changed all "generation" variables from char to long, in preparation
631           for removing MAXROOMS.  Generations for new rooms are now timestamps.
632         * Defined "struct visit" to hold user/room relationships.
633         * Removed some #define's from citadel.h that are no longer used.
634
635 Wed Sep 23 13:41:49 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
636         * More changes to support attachments.  They mostly work, but only
637           in fixed-format messages.
638
639 Mon Sep 21 21:19:17 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
640         * msgbase.c: began laying the groundwork to support attachments.
641           Purchased Rogaine(tm) in preparation for expected hair loss.
642
643 1998-09-21 Nathan Bryant <bryant@cs.usm.maine.edu>
644         * msgbase.c: include dynloader.h
645         * citadelapi.h: removed
646         * dynloader.h: prototype CtdlRegisterUserHook()
647
648 Sun Sep 20 18:56:37 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
649         * Added a UserFunctionHook category to implement hooks which perform
650           operations on various users or usernames
651
652 Fri Sep 18 21:14:41 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
653         * citserver.c: removed cmd_extn() and related code
654
655 1998-09-18 Nathan Bryant <bryant@cs.usm.maine.edu>
656         * user_ops.c: include dynloader.h
657         * roomstats.{c,mk}: removed
658         * Configure, Makefile.in: autodependency-related fixes
659
660 Thu Sep 17 22:55:29 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
661         * Various changes to allow "new messages" to work correctly with Mail
662
663 Thu Sep 17 22:21:45 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
664         * server.h, dynloader.c, citserver.c, user_ops.c: reduced the number
665           of hook types by inventing an EventType field to the Session hook.
666         * proxy.c: added pre-fetching
667
668 1998-09-17 Nathan Bryant <bryant@cs.usm.maine.edu>
669         * Makefile.in: add SERV_MODULES and PROXY_TARGETS to `cleaner'
670         * dynloader.[ch], serv_{chat,test}.[ch], sysdep.c: cleaned
671           up the dynamic loader interface as follows:
672           - all the symbol table stuff is gone.
673           - modules are loaded once at server startup and never unloaded.
674           - Added a new function CtdlRegisterProtoHook() to handle the stuff
675             that was being done with the symbol tables.
676           - Dynamic_Module_Init() now returns a pointer to a static struct
677             DLModule_Info; this structure itself has been modified to use char*
678             fields instead of fixed char arrays.
679         * roomstats.c: include <stdarg.h> not <stdargs.h> (is this file still
680           in use?)
681         * Configure, Makefile.in: added autodependency support
682
683 Wed Sep 16 22:25:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
684         * Implemented separate structs, lists, and functions for each type
685           of server-side hook available.
686
687 1998-09-16 Nathan Bryant <bryant@cs.usm.maine.edu>
688         * ipc_c_tcp.c: Fixed up some #include/prototyping stuff, call memcpy()
689           instead of bcopy()
690         * hooks.h: removed
691         * sysdep.c, user_ops.c: removed reference to hooks.h
692
693 Wed Sep 16 11:42:42 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
694         * ipc_c_tcp.c: Reversed any changes that have been made to this file,
695           because something was causing abominally slow response time.
696         * proxy.c: added.  This will eventually become a caching, pre-fetching
697           multiuser proxy server for the Citadel protocol.
698
699 1998-09-15 Nathan Bryant <bryant@cs.usm.maine.edu>
700         * Makefile.in: remove support.o from serv_chat.so, add -fPIC to compile
701           flags for serv_chat.o
702         * dynloader.c: include "sysdep_decls.h", use RTLD_NOW not RTLD_LAZY
703         * dynloader.h: prototype CtdlRegisterHook()
704         * .cvsignore: added data
705
706 Mon Sep 14 20:49:08 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
707         * Tried my hand at adding the ability for server extensions to
708           register various types of "hooks" in addition to just adding
709           server commands.  This is probably not final.
710
711 Tue Sep  8 12:11:56 EDT 1998 Brian Costello <btx@calyx.net>
712         * Added support for dynamic server modules.  Reworked serv_chat.c
713           to be such a module.
714
715 Tue Sep  1 23:09:50 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
716         * userpurge.c: rewrote using functions from the server core, rather
717           than the now-defunct external API.  This'll be ready once the module
718           loading code is done.  (I just had to commit _something_ tonight.)
719
720 Mon Aug 31 22:47:58 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
721         * Yanked the citadelapi.c module.  This wasn't working out well.
722         * techdocs/citadelapi.txt - began documenting the new API to be used
723           by modules which will be dynamic linked into the server - most of
724           this API is existing server functions.
725         * Added a ForEachUser() function with callback mechanism, and reworked
726           cmd_list() to use it.
727
728 Sun Aug 30 21:52:43 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
729         * Moved all of the gdbm databases to a separate "data" directory.
730
731 1998-08-26 Nathan Bryant <bryant@cs.usm.maine.edu>
732         * Makefile.in: realclean removes Makefile, fixed `touch citadel.h'
733           problem
734
735 1998-08-25 Nathan Bryant <bryant@cs.usm.maine.edu>
736         * room_ops.c: include time.h
737         * userlist.c, whobbs.c, serv_chat.c, user_ops.c, sysdep.c, stats.c,
738           citadel_decls.h, commands.c, messages.h, routines.h, routines2.h:
739           remove duplicated declarations
740
741 Mon Aug 24 23:45:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
742         * setup.c: Removed yesno_s()
743         * citadel.h, room_ops.c: added QRmtime field to struct quickroom,
744           modified whenever a room is modified or posted in.
745         * citadelapi.c: Added CtdlForEachRoom() function
746
747 Mon Aug 24 20:04:04 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
748         * Makefile.in: new target `cleaner' does the same as `realclean' 
749           without removing sysdep.h
750         * proto.h: is bad. eliminate. I've moved the prototypes into several
751           header files, one per .c file
752
753 Mon Aug 24 00:45:55 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
754         * Added a CtdlGotoRoom() function to the CitadelAPI.
755  
756 Sun Aug 23 21:47:00 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
757         * sysoputil is finally dead!  Removed it from the build.
758         * Added userpurge.c server extension (initial implementation)
759
760 Tue Aug 18 00:42:33 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
761         * Makefile.in: `clean' target no longer rm's sysdep.h; new target
762           `realclean' removes everything clean does, plus sysdep.h, plus
763           target binaries.
764         * Configure: add -Wstrict-prototypes to CFLAGS for gcc systems
765         * *.[ch]: protoized. Added several new header files containing
766           prototypes and other external declarations; many duplicated
767           declarations still should be moved to header files. proto.h must die
768           as well, IMHO.
769
770 Mon Aug 17 23:52:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
771         * Implemented a bunch of user account related functions in the
772           CitadelAPI library.
773
774 Mon Aug 17 20:01:18 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
775         * Fixed the crash problem.  It wasn't AGUP/ASUP, but rather a buffer
776           overrun in getuser() (thanks, Nathan).  Implemented overrun checks
777           in getuser(), getroom(), and getfloor() to prevent future problems.
778
779 Mon Aug 17 00:06:52 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
780         * Updated citmail.c with the latest stuff from the production system.
781         * Implemented AGUP and ASUP commands, but AGUP crashes the server
782           after its first successful use (user-not-found's don't affect it).
783
784 Thu Aug  6 19:25:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
785         * Got the CitadelAPI library to the point where the server can start
786           up an extension, and the extension will connect to the server, do
787           some initialization, call a user-supplied CtdlMain(), and exit.  Also
788           hacked together a _temporary_ form of the new EXTN server command.
789  
790 Wed Aug  5 23:02:22 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
791         * Second attempt at getting the server API started.  Now it runs
792           outside of the server and builds a connection.
793
794 Tue Aug  4 18:33:06 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
795         * Modified the appearance of Internet addresses when they arrive on
796           a Citadel system.
797         * Removed the <E> field from the message format writeup in hack.txt.
798         * Fixed-up citmail.c so that it doesn't try to do database lookups.
799
800 Mon Aug  3 23:01:37 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
801         * Started developing the server-side API.  This is in its very
802           initial stages.  See serverapi.c and techdoc/api.txt
803
804 1998-08-02  Nathan Bryant  <bryant@cs.usm.maine.edu>
805         * Makefile.in: added config_decls.h to dependencies
806
807 Sun Aug  2 21:09:09 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
808         * config_defs.h: renamed to config_decls.h
809         * config.c, sysoputil.c: updated to reflect the above
810
811 Sun Aug  2 18:52:05 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
812         * config_defs.h: new file, contains external declarations from config.c
813         * config.c: moved defs to config_defs.h, use PATH_MAX from <limits.h>
814           for bbs_home_directory
815         * mailinglist.c, support.c: include <string.h>
816         * sysoputil.c: include <string.h>, <limits.h>, "config_defs.h", remove
817           duplicated defs, replace gets() call with fgets()
818         * user_ops.c: define _XOPEN_SOURCE_EXTENDED
819
820 Sat Aug  1 18:32:52 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
821         * ipc_c_tcp.c: fixed order of memcpy parameters after gethostbyname
822
823 Sun Jul 19 17:26:12 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
824         * ChangeLog: reordered; the GNU standard is to add new entries to the
825           top.
826         * .cvsignore: added userlist
827
828 Sun Jul 12 20:58:59 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
829         * Finished migrating everything to the new data store.
830         * Replaced the binary "calllog" with the ASCII "citadel.log"
831         * Began converting broken utilities that depend on the old data store
832
833 Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
834         * Makefile.in: removed msgstats
835
836 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
837         * Initial CVS import