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