]> code.citadel.org Git - citadel.git/blob - citadel/ChangeLog
* cdb_cull_logs() now removes log files as soon as the log_archive() function
[citadel.git] / citadel / ChangeLog
1  $Log$
2  Revision 580.40  2001/09/09 03:19:38  ajc
3  * cdb_cull_logs() now removes log files as soon as the log_archive() function
4    says it's ok to do so.
5
6  Revision 580.39  2001/09/08 18:58:38  ajc
7  * More changes to the new networker.  Added client command for room sharing.
8
9  Revision 580.38  2001/09/07 04:05:27  ajc
10  * You guessed it: still more code for the new networker.
11
12  Revision 580.37  2001/09/06 05:47:29  nbryant
13  check for /usr/include/db3 (for RedHat 6.2; others?)
14
15  Revision 580.36  2001/09/06 05:23:14  nbryant
16  #include fix for glibc 2.1.3
17
18  Revision 580.35  2001/09/06 04:02:34  ajc
19  * A few more updates to the networker
20
21  Revision 580.34  2001/09/06 03:32:41  nbryant
22  build fix for sparc-sun-solaris2.8; i think the dependencies should be
23  set up properly for all platforms now.
24
25  Revision 580.33  2001/09/06 02:55:27  nbryant
26  build fix for Linux
27
28  Revision 580.32  2001/09/06 02:49:22  ajc
29  * Fixed paste-post mode (<.E>nter <A>scii) to append instead of replace when
30    the user hits <C>ontinue (bug reported by Stu Mark)
31
32  Revision 580.31  2001/09/06 01:26:39  nbryant
33   - port to Cygwin (DLL support, etc.)
34   - don't build SMTP module if there's no resolver library (eg on Windows)
35
36  Revision 580.30  2001/09/06 00:54:01  nbryant
37  updated to libtool 1.4.1 and automake 1.5
38
39  Revision 580.29  2001/08/29 02:51:25  ajc
40  * More work on the new networker.
41
42  Revision 580.28  2001/08/25 05:04:57  ajc
43  * Worked a little more on the in-server replacement for netproc
44
45  Revision 580.27  2001/08/22 04:18:17  ajc
46  * Realized that there was lots of similarly broken code in
47    process_rfc822_addr().  Wrote two new utility functions in tools.c
48    stripout() and stripallbut() and used them where appropriate.  This should
49    take care of all possible infinite loops.
50
51  Revision 580.26  2001/08/22 03:43:11  ajc
52  * internet_addressing.c: fixed a bug in process_rfc822_addr() that caused the
53    server to jump into an endless loop when an e-mail address contained
54    unbalanced angle brackets.
55
56  Revision 580.25  2001/08/15 04:26:02  ajc
57  * Added split horizon and delete-after-spool to the new networker
58
59  Revision 580.24  2001/08/14 02:41:57  ajc
60  * Began the migration of netproc into part of the serv_network.c module instead
61    of a standalone program.
62
63  Revision 580.23  2001/08/11 22:35:40  nbryant
64  updated citadel-with-berkeley-db.txt.
65   - updated build instructions
66   - improved backup procedures to be safer and more space-efficient.
67
68  Revision 580.22  2001/08/11 19:18:41  ajc
69  * Realized that I am stupid and started implementing server commands to load
70    and save network configurations, when I had already lovingly implemented the
71    CONF GETSYS and CONF PUTSYS commands to store arbitrary configuration sets
72    in the Local System Configuration> room.  Ripped the newer crap out.
73  * Implemented a skeleton of <.A>ide <S>ysconfig <N>etwork on the client side.
74
75  Revision 580.21  2001/08/11 03:51:56  ajc
76  * Removed the idle timer from the client.  Dialup is dead.
77
78  Revision 580.20  2001/08/06 21:33:29  nbryant
79  made the client fall back on port 504 if there's no /etc/services entry
80
81  Revision 580.19  2001/08/05 23:54:14  ajc
82  * prep for new network node infrastructure
83
84  Revision 580.18  2001/08/03 16:53:21  ajc
85  * Added some more "break" statements to the main switch..case loop in
86    citadel.c where they were needed.
87
88  Revision 580.17  2001/08/03 16:43:53  ajc
89  * database_sleepycat.c: when running txn_checkpoint(), handle DB_INCOMPLETE
90    return code as a warning instead of an error worthy of aborting the server.
91    See http://www.sleepycat.com/docs/api_c/txn_checkpoint.html for explanation.
92
93  Revision 580.16  2001/07/30 03:46:14  nbryant
94  made ForEachUser use a read-only cursor, too. there is now only one piece of
95  code in Citadel proper (not the database driver) that needs transactions.
96  that's check_ref_counts; in other words it's the only thing standing in the way
97  of a clean implementation of retryable transactions.
98
99  Revision 580.15  2001/07/29 22:24:04  nbryant
100   - added a new function to the database interface, cdb_close_cursor().  always
101  call this when you're finished with a traversal but didn't bother reading all
102  the way to the end.
103
104   - removed several cdb_begin_transaction()/cdb_end_transaction() calls that are
105  no longer needed because of the read-only cursor support.
106
107  Revision 580.14  2001/07/29 20:56:09  nbryant
108  change ForEachRoom to use read-only cursors by default. it can be overridden to
109  still use read/write cursors by doing:
110
111   cdb_begin_transaction();
112   ForEachRoom(...);
113   cdb_end_transaction();
114
115  the only place I found where it appears necessary to do so is check_ref_counts,
116  so this checkin affects that function too.
117
118  Revision 580.13  2001/07/29 20:06:33  nbryant
119  generate symlinks to .libs in modules directory
120
121  Revision 580.12  2001/07/28 00:02:50  nbryant
122  implemented read-only cursors. one of the advantages to these is that
123  transactions can be avoided; a cursor operation that occurs within a
124  transaction will often acquire a read lock on every single database page.  in
125  general, the Sleepycat documentation recommends avoiding transaction-protected
126  read-only operations where practical. read/modify/write operations can still
127  be transaction protected, of course.
128
129  to use a read-only cursor, call cdb_rewind without a previous call to
130  cdb_begin_transaction. the DB driver will notice this and prevent the current
131  thread from modifying data or starting a transaction until the cursor is
132  closed.
133
134  Revision 580.11  2001/07/27 20:45:44  nbryant
135  libtool has matured a lot since the last time i looked at it (years ago)
136  so we now use it to handle the details of building shared libraries and
137  the linker flags for the main executable.
138
139  in theory this should bring a lot more portability to the dynloader
140  subsystem and enable us to do things like transparently detect GNU vs Sun
141  linkers on solaris, for example
142
143  Revision 580.10  2001/07/27 03:29:04  nbryant
144  missed one thing in the autoconf move
145
146  Revision 580.9  2001/07/27 02:57:43  nbryant
147  support one cursor per database rather than one global cursor
148
149  Revision 580.8  2001/07/27 01:32:07  nbryant
150  remove the automatic transaction demarcation on singleton read operations
151
152  Revision 580.7  2001/07/26 21:43:46  nbryant
153   - move to autoconf 2.52
154   - random warning fix
155   - check for db 3.3
156
157  Revision 580.6  2001/07/24 13:17:54  ajc
158  * New UI for mailing list setup
159  * rooms.c: code cleanup
160  * docs update
161
162  Revision 580.5  2001/07/20 23:48:23  nbryant
163  fix build on solaris, check default install location for db 3.2, and silence
164  gcc 3.0
165
166  Revision 580.4  2001/07/16 14:24:30  ajc
167  * Silly cosmetic change to keep the wholist ordered by ascending session number
168
169  Revision 580.3  2001/07/13 00:01:36  ajc
170  * Shuffled around some of the housekeeping loop code
171
172  Revision 580.2  2001/07/11 17:01:10  ajc
173  * database_sleepycat.c: small changes to log messages
174
175  Revision 580.1  2001/07/11 04:35:40  nbryant
176  moved dret initialization in cdb_fetch, just in case
177
178  Revision 580.0  2001/07/03 03:07:06  ajc
179  * THIS IS 5.80
180
181  Revision 573.143  2001/07/03 03:06:50  ajc
182  * Last minute doco update for 5.80
183
184  Revision 573.142  2001/07/01 15:44:32  nbryant
185  configure.in: check for Berkeley DB first.
186
187  Revision 573.141  2001/06/27 23:34:30  ajc
188  * Added some verbage to messages/roomaccess to placate a user who keeps
189    bitching about privacy policy.
190
191  Revision 573.140  2001/06/19 03:41:04  ajc
192  * Ooops... last_cull needs to be declared static
193
194  Revision 573.139  2001/06/19 03:33:19  ajc
195  * imap_fetch.c: download MIME parts without decoding first.  We like that.
196  * database_sleepycat.c: added automatic culling of log files which have not
197    been written to in five days.
198
199  Revision 573.138  2001/06/17 19:42:23  nbryant
200  fix all the <time.h> vs. <sys/time.h> issues, hopefully
201
202  Revision 573.137  2001/06/07 03:28:37  ajc
203  * More tweaks to the MIME parser
204
205  Revision 573.136  2001/06/06 15:44:37  ajc
206  * msgbase.c: output extra newline at end of RFC822 message if necessary to
207    ensure that 000 termination string appears on a line by itself.
208
209  Revision 573.135  2001/06/06 04:22:25  ajc
210  * Moved memreadline() to tools.c
211  * internet_addressing.c: fixed conversion of fields to (hopefully) never get
212    into an active loop when encountering badly formed headers
213
214  Revision 573.134  2001/05/27 05:23:03  ajc
215  * Added a "no new messages" response in the client, displayed when a read
216    command turns up a zero message count.
217
218  Revision 573.133  2001/05/18 20:12:09  ajc
219  * Fixed bug in mime_parser.c that caused parts to be dropped when the last
220    boundary was the very last line of the message.
221  * serv_smtp.c: toned down some of the command response verbage.
222
223  Revision 573.132  2001/04/28 04:42:55  ajc
224  * Updated some of the docs.  Bumped version number to 5.80 in anticipation
225    of going into a release cycle soon.
226
227  Revision 573.130  2001/04/26 03:31:00  ajc
228  * Finished the implementation of per-message seen/unseen logic, both in the
229    server proper and in IMAP.  Citadel protocol uses new "seen" command.
230
231  Revision 573.129  2001/04/21 04:55:51  ajc
232  * Began implementation of per-message seen/unseen attribute
233
234  Revision 573.128  2001/04/20 03:39:54  ajc
235  * IMAP LIST/LSUB: made it case insensitive.  Also minor IMAP code cleanup.
236
237  Revision 573.127  2001/04/17 00:35:19  cough
238  * Modified rooms.c in the client so that it would allow inviting into
239    public rooms.  This is important since there is now a V_LOCKOUT
240    flag which prevents users who have been kicked from rejoining
241    a room unless/until you invite them back in.
242
243  Revision 573.126  2001/04/16 19:21:14  cough
244  * Fixed bug in room_ops.c that wasn't allowing aides to goto passworded
245    rooms without knowing the password.
246
247  Revision 573.125  2001/04/14 04:26:44  ajc
248  * Fixed an unterminated string bug in IMAP APPEND.  Storing messages should
249    work now.
250
251  Revision 573.124  2001/04/10 01:04:10  ajc
252  * Finished coding IMAP APPEND.  It works, but there's a bug in it somewhere
253    that is corrupting the memory.
254
255  Revision 573.123  2001/04/03 00:47:23  ajc
256  * Began implementing IMAP APPEND
257
258  Revision 573.122  2001/04/01 22:05:44  cough
259  * *Actually* fixed a botched ChangeLog entry.
260
261  Revision 573.121  2001/04/01 22:04:28  cough
262  * Fixed a botched ChangeLog entry.
263
264  Revision 573.120  2001/04/01 22:03:10  cough
265  * Changed two fclose()s to pclose()s.
266
267  Revision 573.119  2001/03/25 11:52:36  error
268  * serv_pop3.c: Fixed APOP. Now logs in properly. Also cleaned up some non-
269    RFC-compliant error messages.
270
271  Revision 573.118  2001/03/21 05:47:49  ajc
272  * Added the new IMAP mailbox string compare submitted by Daniel Malament.
273
274  Revision 573.117  2001/03/20 01:33:55  ajc
275  * Added the (\NoInferiors) tag to all rooms listed in IMAP.  This made Mozilla
276    behave very nicely.
277
278  Revision 573.116  2001/03/13 17:19:33  ajc
279  * support (BODY[HEADER.FIELDS(BLAH BLAH BLAH)]) and HEADER.FIELDS.NOT
280
281  Revision 573.115  2001/03/12 01:27:42  ajc
282  * Implemented SUBSCRIBE and UNSUBSCRIBE commands
283
284  Revision 573.114  2001/03/11 23:00:29  ajc
285  * Mega sexy hack to deliver express messages THROUGH IMAP!  uber coolness!!
286
287  Revision 573.113  2001/03/11 22:09:20  ajc
288  * Replaced the "citlogin" binary wrapper with the "loginwrapper.sh" script.
289
290  Revision 573.112  2001/03/11 20:06:53  ajc
291  * Fixed bug that created incorrect roomnames when sending pages
292
293  Revision 573.111  2001/03/11 19:23:32  ajc
294  * IMAP DELETE command ... also split up access control for room delete cmds
295
296  Revision 573.110  2001/03/10 17:29:07  ajc
297  * Implement proper access control for deleting messages from IMAP
298
299  Revision 573.109  2001/03/07 04:02:27  ajc
300  * Fixed some small IMAP bugs
301
302  Revision 573.108  2001/03/06 04:44:00  ajc
303  * Probable completion of STATUS, COPY, STORE, and EXPUNGE commands in IMAP
304
305  Revision 573.107  2001/03/06 03:31:58  nbryant
306  database-related cleanups and paranoia tests;
307  fixed a transaction-leak/deadlock problem in cdb_delete;
308  solved the SIGPIPE mystery (GDB stops on SIGPIPE is all it was)
309
310  Revision 573.106  2001/03/05 04:59:31  ajc
311  * IMAP COPY
312
313  Revision 573.105  2001/03/04 23:49:41  ajc
314  * IMAP EXPUNGE responses -should- be correct now
315
316  Revision 573.94  2001/02/20 00:02:56  ajc
317  * IMAP: implemented the STATUS command (sort of).
318
319  Revision 573.93  2001/02/19 22:24:41  ajc
320  * IMAP server: added untagged, unsolicited server messages for newly arrived
321    messages, and messages expunged by another session.
322
323  Revision 573.92  2001/02/17 05:53:35  ajc
324  * Repaired the creation of page log rooms in the wrong namespace when the
325    recipient does not yet have his/her log room created.
326  * Rewrite "EXPI messages" to run in two passes: one to gather messages to
327    purge and the next to delete them.  Works better in transactionland.
328
329  Revision 573.91  2001/02/14 08:11:27  error
330  * citadel.rc: added $Id$ (it's about time!)
331
332  Revision 573.90  2001/02/14 04:23:54  ajc
333  * Fixed POP3 server responses ending in \n instead of \r\n as they should be.
334    This was causing some clients (such as Pine) to lock up.
335
336  Revision 573.89  2001/02/13 04:06:14  ajc
337  * Worked out the remaining bugs in IMAP FETCH for the BODYSTRUCTURE and
338    BODY[n] data items.  I think.  So much protocol crud, so little time...
339
340  Revision 573.88  2001/02/13 01:18:44  ajc
341  * imap fetch
342
343  Revision 573.87  2001/02/12 04:31:34  ajc
344  * sysdep.c ig_tcp_server() - use IPPROTO_TCP instead of getprotobyname()
345
346  Revision 573.86  2001/02/08 04:45:58  ajc
347  * Fixed namespace problems resulting from the automatic namespece prefixing
348    added to create_room().  Also added the ability to specify "create a mailbox
349    but I've already supplied the namespace prefix" for situations where the
350    namespace isn't that of the logged in user.
351  * Made the POP3 server response messages slightly less humorous
352
353  Revision 573.85  2001/02/06 04:44:12  ajc
354  * Added a floor listing (complete with \NoSelect flag) to LIST and LSUB
355
356  Revision 573.84  2001/02/06 02:09:38  ajc
357  * citadel.rc: changed the default for local_screen_dimensions to 1, since
358    Internet users now outnumber dialup users 100 to 0.
359  * room_ops.c: added a really_create option to create_room().  Also moved the
360    generation of personal namespace into that function.  MODULE OWNERS PLEASE
361    CHECK YOUR CALLS TO AVOID MULTIPLE NAMESPACING!!
362  * room_ops.c: fixed a bug in cgetfloor() that left bad pointers around
363  * serv_imap.c: finished the CREATE command (finally)
364
365  Revision 573.83  2001/02/05 05:20:22  ajc
366  * Made some changes to functions which translate between Citadel room names
367    and IMAP folder names.  They're still buggy.
368
369  Revision 573.82  2001/02/04 23:17:28  ajc
370  * Implemented the IMAP CREATE command
371
372  Revision 573.81  2001/02/04 02:40:07  ajc
373  * more imap.  imap sucks.  die crispin die.
374
375  Revision 573.80  2001/02/03 10:02:12  error
376  * serv_ical.c: Verify that objects posted to My Calendar> are of type
377    text/x-calendar or text/calendar; abort saving if not
378
379  Revision 573.79  2001/02/03 09:30:46  error
380  * serv_ical.c: now creates a My Calendar> personal room, sets attributes
381
382  Revision 573.78  2001/02/03 08:21:00  error
383  * serv_ical.c and serv_ical.h added; skeleton code for now
384
385  Revision 573.77  2001/02/02 20:18:18  ajc
386  * Changed the error message in cdb_delete() to actually *say* cdb_delete
387    instead of cdb_store.  Useful to know which function failed...
388
389  Revision 573.76  2001/02/01 04:08:03  ajc
390  * IMAP minor change to mailbox name output
391  * Increased size of buffer in lprintf()
392
393  Revision 573.75  2001/01/28 09:50:02  error
394  * sysdep.c: lprintf() now generates timestamps
395
396  Revision 573.74  2001/01/28 07:35:04  error
397   * serv_bio.c: RBIO now also returns stats about a user, see session.txt
398
399  Revision 573.73  2001/01/16 04:03:13  ajc
400  * yeesh ... more on the IMAP BODYSTRUCTURE
401
402  Revision 573.72  2001/01/16 01:51:12  ajc
403  * imap bodystructure
404
405  Revision 573.71  2001/01/16 00:46:40  ajc
406  * Changed the MIME parser API *again* because we now need the ability to
407    supply callback functions to be executed before and/or after parsing a
408    multipart.  (Need this for IMAP BODYSTRUCTURE output.  Crispin sucks.)
409
410  Revision 573.70  2001/01/15 23:59:26  ajc
411  * user_ops.c: reject NULL password in CtdlTryPassword() instead of crashing
412
413  Revision 573.68  2001/01/15 20:34:04  ajc
414  * "Path:" removed for now because it confuses brain-dead Microsoft shitware
415    into thinking that mail messages are newsgroup messages instead.  When we
416    add NNTP support back into Citadel we'll have to add code to only output
417    this field when appropriate.
418
419  Revision 573.67  2001/01/15 16:30:31  ajc
420  * temporary implementation of 901 asynchronous express messages
421
422  Revision 573.66  2001/01/14 14:55:39  ajc
423  * Changed the format of <.W>holist <L>ong
424
425  Revision 573.65  2001/01/13 06:40:26  nbryant
426  merged remaining changes from TRANSACTIONS (using cvs update -j TRANSACTIONS)
427  which should now be considered closed.
428
429  Revision 573.64  2001/01/13 06:12:15  ajc
430  * Added the ASYN command
431
432  Revision 573.63  2001/01/12 22:05:46  ajc
433  * Fixed a bug that caused bogus wholist lines to be displayed when a non-aide
434    reads a list containing stealth mode sessions.
435
436  Revision 573.62  2001/01/09 05:39:45  ajc
437  * Merged in code from the TRANSACTIONS branch for testing.
438
439  Revision 573.61  2000/12/30 06:17:17  ajc
440  * Still more work on IMAP.  Damn this is tedious.
441
442  Revision 573.60  2000/12/30 04:55:05  ajc
443  * more buffer size stuff
444
445  Revision 573.59  2000/12/27 20:19:51  ajc
446  * The size constant "256" which shows up everywhere as a buffer size has now
447    been changed to SIZ.  And, SIZ has been defined now as 1024, not 256, because
448    we need 1024 byte buffers for most Internet protocols.
449
450  Revision 573.58  2000/12/27 05:09:58  ajc
451  * Added a skeleton IMAP "SEARCH" command (based on the FETCH logic)
452
453  Revision 573.57  2000/12/26 03:46:50  ajc
454  * More IMAP tweaks
455
456  Revision 573.56  2000/12/25 22:50:43  ajc
457  * Added an API function to extract and unfold specific RFC822 fields.
458  * imap-->fetch-->envelope-->in-reply-to now works
459  * More robust checking and reporting of temp file errors in the client
460
461  Revision 573.55  2000/12/25 20:43:24  ajc
462  * imap_fetch.c: added support for fetch-->envelope-->from
463
464  Revision 573.54  2000/12/20 04:09:24  ajc
465  * A few memory handling fixes to netproc.
466
467  Revision 573.53  2000/12/20 01:57:37  ajc
468  * netproc.c: added bounds check to fpgetfield()
469
470  Revision 573.52  2000/12/19 20:41:55  ajc
471  * Fixed generation of unique file names for network uploads etc.
472
473  Revision 573.51.2.11  2000/12/26 05:30:55  nbryant
474  remove extraneous transaction around dynamic module initializations. this will
475  fix the crash on database creation.
476
477  Revision 573.51.2.10  2000/12/24 23:00:58  nbryant
478  clean: also remove parsedate.c
479
480  Revision 573.51.2.9  2000/12/20 01:38:42  nbryant
481  require transactional cursors
482
483  Revision 573.51.2.8  2000/12/20 00:30:01  nbryant
484  release any stale db handles at the end of a server command
485  (unfinished transactions will be aborted to annoy lazy programmers)
486
487  Revision 573.51.2.7  2000/12/19 06:18:27  nbryant
488  set sched_yield as sleepycat's yield function. this should improve locking
489  performance.
490
491  Revision 573.51.2.6  2000/12/19 02:22:29  nbryant
492  added automatic transaction start/end on cdb_fetch, cdb_delete, and cdb_store
493
494  Revision 573.51.2.5  2000/12/18 03:51:13  nbryant
495  ditto S_USER_TRANS, S_CALLLOG, and S_HOUSEKEEPING, which are no longer used at
496  all
497
498  Revision 573.51.2.4  2000/12/18 02:49:17  nbryant
499  removed all references to S_MSGMAIN critical section; it wasn't really needed.
500  this should make things significantly more scaleable.
501
502  Revision 573.51.2.3  2000/12/17 22:12:48  nbryant
503  reworked shutdown sequence to wait for worker threads to terminate before
504  checkpointing and closing databases. it is no longer safe to call
505  master_cleanup() directly to force a shutdown; instead, just set
506  time_to_die to a nonzero value
507
508  Revision 573.51.2.2  2000/12/17 05:06:09  nbryant
509  added deadlock detection and cleaned up messages
510
511  Revision 573.51.2.1  2000/12/16 21:06:59  nbryant
512  created TRANSACTIONS branch
513  track cursor and transaction id's in thread-specific data
514
515  Revision 573.51  2000/12/14 18:36:34  ajc
516  * Fixed the "users not in chat" wholist display
517
518  Revision 573.50  2000/12/12 18:06:46  ajc
519  * Removed the transaction stuff (but left the log in).  It wasn't working.
520
521  Revision 573.49  2000/12/12 06:19:55  ajc
522  * Stabilize, dammit!!
523
524  Revision 573.48  2000/12/12 04:20:03  ajc
525  * Made the transaction open/close a global thing, in a frantic attempt to get
526    Uncensored to stop crashing.  More fixes on the way...
527
528  Revision 573.47  2000/12/11 06:08:41  ajc
529  * Removed the housekeeper thread, moved terminate_idle_sessions() out to a
530    timer event, and check_sched_shutdown() to the end of the worker thread
531    loop.  Seems to have improved reliability (but why?)
532
533  Revision 573.46  2000/12/11 03:22:11  ajc
534  * Added server-side REQT command to issue client termination requests
535
536  Revision 573.45  2000/12/11 02:19:26  ajc
537  * Client now honors EM_GO_AWAY flag, used by the server to request that a
538    client log off.  (The server doesn't support sending that flag yet, though)
539
540  Revision 573.44  2000/12/09 06:20:06  ajc
541  * A few final touches to the Sleepycat DB back-end
542
543  Revision 573.43  2000/12/08 17:06:33  ajc
544  * Wrap txn_begin and txn_end in S_DATABASE mutex
545
546  Revision 573.42  2000/12/07 20:21:39  ajc
547  * begin/end transaction in master_startup()
548
549  Revision 573.41  2000/12/07 16:59:02  nbryant
550  added --with-db and --with-gdbm options to configure
551
552  Revision 573.40  2000/12/07 04:50:33  ajc
553  * Wrap housekeeper and timer events in transaction open/close functions
554  * Checkpoint the DB as an EVT_TIMER event instead of after each session
555    (runs each minute, but actually limited by the parameters of the function)
556
557  Revision 573.39  2000/12/06 04:44:36  ajc
558  * Changed netproc to keep the use table in a flat file instead of a database
559
560  Revision 573.38  2000/12/05 05:32:58  ajc
561  * Added support for non-USA country identities in vCard and registration
562  * User edit now asks whether it should prompt to change the password
563
564  Revision 573.37  2000/12/03 04:12:21  ajc
565  * Finished (mostly) the Sleepycat DB backend ... added transaction logging
566
567  Revision 573.36  2000/11/30 03:23:17  ajc
568  * Got the Sleepycat DB back end working, by opening the databases in a non
569    shared, non threaded mode, and using Citadel's locking to serialize access.
570
571  Revision 573.35  2000/11/29 05:00:02  ajc
572  * I think the db stuff is ok, but my db library is fux0red...
573
574  Revision 573.34  2000/11/27 14:12:09  error
575  * commands.c: fixups to print_express() to make external command not print
576    extraneous stuff to the terminal and make the displayed message consistent
577
578  Revision 573.33  2000/11/27 10:41:14  error
579  * print_express(): now uses GEXP instead of old PEXP; displays timestamps
580
581  Revision 573.32  2000/11/27 10:29:59  error
582  * serv_chat.c: fix send_express_message() to include timestamps
583
584  Revision 573.31  2000/11/27 03:44:27  ajc
585  * Initial checkin of database_sleepycat.c (doesn't work yet)
586
587  Revision 573.30  2000/11/26 05:24:22  ajc
588  * msgbase.c: Added new API function CtdlOutputPreLoadedMsg(), and
589    re-implemented the existing CtdlOutputMsg() as a wrapper around it.
590  * imap_fetch.c: used the above function to do all output pre-loaded
591
592  Revision 573.29  2000/11/25 09:36:18  error
593  * Added a bit of detail to syslog entries; now shows session id attached to
594    client, hostname, and username, and time the session ended.
595
596  Revision 573.28  2000/11/25 06:17:06  ajc
597  * Minor IMAP tweaks.  It still doesn't work.  :(
598
599  Revision 573.27  2000/11/23 07:22:21  error
600  * citadel.spec: update version number
601
602  Revision 573.26  2000/11/21 11:12:56  error
603   * domain.h: changed the HP/UX compatibility code to use defines from
604     typesize.h for integers of specific bit widths (needed for Solaris, etc)
605
606  Revision 573.25  2000/11/12 04:20:49  ajc
607  * Optimized server side input of message text
608
609  Revision 573.24  2000/11/10 03:55:06  ajc
610  * Ford's Fix for Faster Functionality (save position during reply)
611
612  Revision 573.23  2000/11/09 04:48:50  ajc
613  * tools.c: striplt() strips all whitespace, not just spaces
614
615  Revision 573.22  2000/11/07 20:47:21  ajc
616  * imap_fetch.c: added a skeleton "ENVELOPE" fetch.  Currently sends NIL's.
617
618  Revision 573.21  2000/11/07 15:54:53  ajc
619  * xx FETCH n:n BODY[pn.MIME] now works
620
621  Revision 573.20  2000/11/06 05:10:01  ajc
622  * Changed the mime_parser() API (again) to allow "don't decode" mode
623
624  Revision 573.19  2000/10/29 18:11:07  ajc
625  * Start numbering top-level MIME parts as 1, 2... not 1.1, 1.2...
626
627  Revision 573.18  2000/10/28 14:14:19  error
628  * msgbase.c: eliminated most gotos; a single goto in alias() remains because
629    it actually makes sense to do it that way...
630
631  Revision 573.17  2000/10/25 21:37:09  ajc
632  * Implemented the AUTHENTICATE LOGIN command in IMAP
633
634  Revision 573.16  2000/10/25 19:20:37  ajc
635  * FETCH now works for ranges *and* sets, and with sequence numbers *and* UID's
636
637  Revision 573.15  2000/10/24 20:39:59  ajc
638  * Added RFC822, RFC822.HEADER, RFC822.SIZE, RFC822.TEXT fetch keys to IMAP
639
640  Revision 573.14  2000/10/23 20:26:51  error
641  * War on goto:  rewrote a few easy functions to eliminate unnecessary gotos
642
643  Revision 573.13  2000/10/11 23:03:44  error
644  * utilsmenu: obey $PAGER environment var, if any.  Default to more if neither
645    $PAGER nor less is available.
646
647  Revision 573.12  2000/10/11 22:55:25  error
648  * citadel.c: when ansi_color=user, enable color at login, so Lobby> posts
649    displayed at login are in color
650
651  Revision 573.11  2000/10/11 22:47:51  error
652  * domain.c: getmx() returns hostname as MX if no MX records found a la RFC 974
653
654  Revision 573.10  2000/10/10 19:18:12  ajc
655  * Added support of macros ALL, BODY, FAST, and FULL to the IMAP FETCH command
656
657  Revision 573.9  2000/10/06 03:31:55  ajc
658  * Mark Crispin is a fscking idiot.  IMAP is a convoluted mess.
659
660  Revision 573.8  2000/10/05 22:23:16  ajc
661  * Slowly and painfully writing IMAP support
662
663  Revision 573.7  2000/10/04 22:39:06  ajc
664  * Added skeleton versions of the LIST and LSUB commands to the imap server
665
666  Revision 573.6  2000/10/04 17:48:21  ajc
667  * Allow Aides to zap rooms (site configurable setting)
668
669  Revision 573.5  2000/10/03 01:45:00  ajc
670  * Changed the <.A>ide <S>ysconfig <G>eneral command to explicitly allow the
671    global page log room to be disabled (answer "no" to set the log room to a
672    null string)
673
674  Revision 573.4  2000/09/28 10:27:38  error
675  * commands.c: changed sttybbs() to support HP/UX termios VMIN and VTIME
676
677  Revision 573.3  2000/09/24 22:01:45  ajc
678  * ipc_c_tcp.c: don't hardcode BBSDIR path for unix domain sockets
679
680  Revision 573.2  2000/09/21 04:16:44  ajc
681  * Fixed logged_in_response() so it only displays responses during Citadel
682    protocol sessions.  (This was affecting POP etc.)
683
684  Revision 573.1  2000/09/11 22:05:04  ajc
685  * citadel.c: accept -h <host> and -p arguments, so citadel can be called
686    directly by telnetd, bypassing /bin/login.  It works, but not recommended at
687    this time because it has to run as root.
688
689  Revision 573.0  2000/09/05 18:35:22  ajc
690  * Tagged everything for version 5.73 release
691
692  Revision 572.39  2000/09/04 03:59:15  ajc
693  IO's changes:
694  ----------------------------
695  revision 572.4
696  date: 2000/09/03 06:36:01;  author: error;  state: Exp;  lines: +5 -1
697  Added HP/UX linker flag for dynamic modules to work
698  ----------------------------
699  revision 572.3
700  date: 2000/09/01 06:50:00;  author: error;  state: Exp;  lines: +8 -1
701  Changed to use integer macros from typesize.h for specific bit widths
702  ----------------------------
703
704  Revision 572.38  2000/09/01 20:17:08  ajc
705  * msgbase.c: cmd_opna() - increase desired_section buffer from 64 to 256 bytes
706
707  Revision 572.37  2000/09/01 17:31:47  ajc
708  * Fixed oopseth in control.c that might call fileno(NULL)
709
710  Revision 572.36  2000/09/01 13:37:16  ajc
711  * control.c: chown citadel.control to bbsuid when opening/creating as root
712
713  Revision 572.35  2000/09/01 03:55:44  ajc
714  * Fixed a few more references to the deprecated uncnsrd.mt-kisco.ny.us name
715
716  Revision 572.34  2000/09/01 03:43:09  ajc
717  * Added 'author' command-line arg to aidepost.  Closes enhancement request
718    #71 on bugzilla.
719  * Put the default SMTP and POP3 ports back to 25 and 110.  Now that the
720    unix domain socket bug is fixed, it's ok if these binds fail.
721
722  Revision 572.33  2000/08/31 23:02:15  ajc
723  * ig_tcp_server() and ig_uds_server()  -  check to make sure queue length is
724    always at least 5.  Zero-length queues can cause connection lockups.
725
726  Revision 572.32  2000/08/31 21:32:44  ajc
727  * Still trying to fix a socket connect bug
728
729  Revision 572.31  2000/08/31 16:37:08  ajc
730  * docs/import-export.txt: added.
731
732  Revision 572.30  2000/08/28 19:51:51  ajc
733  * messages.c: cosmetic cleanup (coding convention and comments)
734
735  Revision 572.29  2000/08/26 20:23:18  ajc
736  * Finished up the back end code for mailing list sends.  Sends now work!
737
738  Revision 572.28  2000/08/24 02:48:18  ajc
739  * Merged in IO ERROR's diffs to make Citadel work with HP/UX
740
741  Revision 572.27  2000/08/22 02:31:47  ajc
742  * nonce (for APOP-style auth) is now generated when a context is created
743    instead of during protocol greeting functions.
744  * Moved Citadel protocol nonce output from greeting to INFO
745
746  Revision 572.26  2000/08/18 21:09:36  ajc
747  * Added a little more mailing list code to serv_network.c
748
749  Revision 572.25  2000/08/10 04:36:25  ajc
750  * Fixed a bug in keyboard polling (in commands.c) which was causing the
751    client protocol to get out of sync in certain conditions.
752
753  Revision 572.24  2000/08/10 02:42:13  ajc
754  * Changed all the "200 ok" responses to more descriptive strings
755  * Added a *temporary* protocol sync check.  Remove this!
756
757  Revision 572.23  2000/08/09 17:14:34  ajc
758  msgbase.c: fixed a bug in
759             remove_any_whitespace_to_the_left_or_right_of_at_symbol() that was
760             causing the <R>eply function to fail on names with whitespace in
761             certain parts of the string.  This closes Bug #56.
762
763  Revision 572.22  2000/08/05 04:24:00  ajc
764  * Added [idle] to client wholist display for sessions idle >15 minutes
765  * Added a generic "void *userdata" field to CtdlForEachMessage()
766  * More prep for mailing list handling in the server
767
768  Revision 572.21  2000/07/30 04:36:12  ajc
769  * Set up the SNET (Send NETwork config) and GNET (Get NETwork config) commands
770    for the network overhaul.
771
772  Revision 572.20  2000/07/29 05:29:19  ajc
773  * Changed the format of RWHO output to provide non-masqueraded user/room/host
774    names (to Aides only) as additional fields rather than an extra line of
775    output.
776  * Changed the client to display new RWHO fields, in the "long" wholist only.
777  * Default SMTP and POP ports are now -1, not 25/110.  These services must now
778    be activated manually.
779
780  Revision 572.19  2000/07/24 00:39:13  ajc
781  * Fixed a path problem when calling netmailer from mailinglist.c
782
783  Revision 572.18  2000/07/22 03:44:17  ajc
784  * Prepared infrastructure for the networker rewrite
785
786  Revision 572.17  2000/07/17 02:38:08  ajc
787  * Completed serv_vandelay.c (importer/exporter module)
788  * sendcommand.c: fix behavior of SEND_LISTING mode
789  * sysdep.c: client_gets() fill buffer with "000" terminator when returning -1
790
791  Revision 572.16  2000/07/14 03:06:55  ajc
792  * Added .ATN (DOWN) and .ATS (SCDN 1) commands to the client
793
794  Revision 572.15  2000/07/10 23:36:08  ajc
795  * Another attempt to fix the crashy crashy bug in serv_vcard
796  * Did more work on the Art Vandelay module
797  * Replaced all instances of sprintf(tempfile, tmpnam(NULL)) with strcpy()
798
799  Revision 572.14  2000/07/10 04:01:12  ajc
800  * added an unfinished serv_vandelay.c (Art Vandelay module - importer/exporter)
801
802  Revision 572.13  2000/07/09 02:47:40  ajc
803  * Overhauled the keepalive logic in the chat client.  Closes bug #20.
804
805  Revision 572.12  2000/07/09 02:27:02  ajc
806  * Eliminated the whole SIGINT/SIGQUIT based handling of Ctrl-O and Ctrl-C
807    keyboard interrupts.  Replaced with a non-blocking check for keyboard input
808    which sets the global variable 'sigcaught' if either key was pressed.
809    fmout() and pprintf() switch to 'drain mode' if sigcaught is set.
810    This closes Bug #18.
811
812  Revision 572.11  2000/07/06 20:26:36  ajc
813  * updated .Help SUMMARY
814
815  Revision 572.10  2000/07/04 20:02:46  ajc
816  * Fixed potential crashy crashy bug in serv_vcard.c
817
818  Revision 572.9  2000/06/28 03:42:56  ajc
819  * Changed the comments at the beginning of each file to a consistent format
820  * Improved the parameterization of commands in the IMAP module
821
822  Revision 572.8  2000/06/27 01:27:13  ajc
823  * Coupla very small changes to get on the road to IMAP support
824
825  Revision 572.7  2000/06/22 21:41:48  ajc
826  * Made the ICQ stuff far more reliable ... by removing it!
827
828  Revision 572.6  2000/06/21 03:46:20  ajc
829  * IMAP is now legal but useless, supporting NOOP, LOGIN, and LOGOUT.
830
831  Revision 572.5  2000/06/15 20:15:52  ajc
832  * Inserted a skeleton IMAP module into the build.  IT DOES NOT WORK AT ALL.
833
834  Revision 572.4  2000/06/04 02:30:56  ajc
835  * CtdlForEachMessage() now returns the number of messages processed.  It also
836    accepts the MSGS_EQ mode, for targeting a specific message number (useful
837    for determining whether the specified message actually exists in a room).
838  * Completed the server side of the moderation system (serv_moderate.c module
839    which implements the MMOD command)
840
841  Revision 572.3  2000/06/03 05:47:57  ajc
842  * Replaced most of the very repetitive and very redundant access level checks
843    in most commands with a single API call:  CtdlAccessCheck()
844  * serv_moderate.c: added (not finished)
845
846  Revision 572.2  2000/06/02 03:38:50  ajc
847  * Bind unix socket prior to TCP socket for citadel protocol
848  * Fixed bug in sendcommand.c which was causing it to crash on attach
849
850  Revision 572.1  2000/05/26 19:27:51  ajc
851  * Changed some of the rev-level sensitive stuff to look at the actual version
852    of Citadel running, not the last version with which we ran setup
853  * Added a moderation system.  Default filter level for new users is in the
854    config file.  Per-user setting is in usersupp.  Moderation level of each
855    message is in SuppMsgInfo.  Tweaked CONF, GETU, and SETU.  Read filter is
856    working.  Moderate message up/down commands are not here yet.  See
857    techdoc/moderation.txt for more info.
858
859  Revision 572.0  2000/05/23 02:09:30  ajc
860  * Updated docs and tagged everything for the 5.72 release
861
862  Revision 571.7  2000/05/20 23:28:20  ajc
863  * Fixed bug in client API that was causing netproc to crash
864
865  Revision 571.6  2000/05/15 00:05:19  ajc
866  * Double the retry interval for SMTP deliveries after each failed attempt.
867
868  Revision 571.5  2000/05/11 03:08:47  ajc
869  * serv_smtp.c: clear the relevant state buffers after an SMTP DATA command
870    completes, allowing multiple messages in one session.  Closes bug #58.
871
872  Revision 571.4  2000/04/24 03:36:43  ajc
873  * Removed references to strucmp() and struncmp(), replaced them with
874    strcasecmp() and strncasecmp() as we did in the server a while ago, and
875    set up the config script to figure out whether they need to be compiled
876    in.  Also moved them to tools.h
877  * Wrote a password manager for the client
878
879  Revision 571.3  2000/04/19 03:17:10  ajc
880  * Don't ever expire the Local System Configuration> room
881
882  Revision 571.2  2000/04/16 19:03:47  ajc
883  * Minor changes to avoid host lookup for local clients
884
885  Revision 571.1  2000/04/15 19:55:52  ajc
886  * Fixed "Unvalidated users appear even with registration disabled" bug #36
887
888  Revision 571.0  2000/04/13 02:43:24  ajc
889  * Fixed a problem that crashed the client during <G>oto commands if a room
890    existed with a name more than 32 characters (thanks to Magus for reporting
891    this one).
892  * Tagged everything and updated docs for the 5.71 release
893
894  Revision 570.18  2000/04/10 01:47:22  ajc
895  * More paginator changes.  Shuffled code around, added pagination to a bunch
896    of other functions, and replaced the old, cumbersome pagination with the
897    new, easy, API-based one in everything except message output.
898
899  Revision 570.17  2000/04/09 17:51:18  ajc
900  * Added pprintf() (paginated version of printf) to the client-side API.  Now
901    any client side function can be paginated simply by changing all of the
902    printf's to pprintf's.  I've already done this for the user list and wholist
903    (removing the old style pagination) and for "read directory."
904
905  Revision 570.16  2000/04/08 04:52:48  ajc
906  * Another minor stoopid little time display fix
907
908  Revision 570.15  2000/04/08 03:58:12  nbryant
909   * backed out the previous changes since they didn't look good on some
910     xterms with a blue bold mode. just set the background color to black
911     instead. this makes black-on-white terminals actually readable, if not
912     particularly good looking.
913
914  Revision 570.14  2000/04/08 01:36:30  nbryant
915   * citadel.c, commands.c: comment out cls() as this wasn't called if
916     ansi_color=user anyway, and we have no way of knowing whether the user's
917     terminal does background color erase, which was the reason for adding this
918     in the first place. with the recent changes to color(), the display will get
919     screwed up if they *do* have background color erase. perhaps this is a job
920     for terminfo.
921
922  Revision 570.13  2000/04/08 00:37:42  nbryant
923   * commands.c: fix color support for black-on-white color terminals such as
924     CDE's dtterm. this just avoids white-on-white text; some color combinations
925     such as yellow-on-white still aren't very legible due to contrast. There's
926     not much I can think to do about that without affecting the look on the
927     white-on-black terminals which probably account for most users.
928
929  Revision 570.12  2000/04/07 20:22:34  ajc
930  * Fixed am/pm bug in time display
931
932  Revision 570.11  2000/04/07 19:22:45  ajc
933  * For services disabled by setting port number to -1, administratively skip
934    the bind instead of just allowing it to fail.
935
936  Revision 570.10  2000/03/31 04:31:02  ajc
937  * Quick fix to 'stats' utility to purge records with bogus timestamps
938
939  Revision 570.9  2000/03/31 02:10:52  ajc
940  * Caved in to pressure and enabled <R>eply in public rooms.
941
942  Revision 570.8  2000/03/28 03:55:53  ajc
943  * Modified <.RU> to allow search for partial match
944
945  Revision 570.7  2000/03/27 03:08:19  ajc
946  * Third parameter of CtdlDeleteMessages() now takes "" instead of NULL to
947    specify 'any MIME type'.
948
949  Revision 570.6  2000/03/27 01:14:08  nbryant
950   * Makefile.in: generate parsedate.c automatically
951   * configure.in: check for bison/byacc/yacc. bison seems to build cleaner
952     code.
953   * parsedate.c: removed from CVS
954   * parsedate.y: added #include <stdlib.h> so it builds with bison
955
956  Revision 570.5  2000/03/27 00:46:10  nbryant
957   * First cut at Solaris fixes. There may still be some *printf("%s", NULL)
958     type of issues lurking in the shadows.
959
960  Revision 570.4  2000/03/25 18:29:58  nbryant
961  changed my email address
962
963  Revision 570.3  2000/03/23 02:41:50  ajc
964  *** empty log message ***
965
966  Revision 570.2  2000/03/21 03:23:24  ajc
967  * Experimental new linebreak mode
968
969  Revision 570.1  2000/03/20 14:43:19  ajc
970  * "Brown paper bag" fix for SMTP bug (incoming long fields crash logger)
971
972  Revision 570.0  2000/03/19 23:42:34  ajc
973  * This is the official 5.70 release.
974
975  Revision 1.494  2000/03/19 23:04:08  ajc
976  * Small cosmetic change to date/time output
977
978  Revision 1.493  2000/03/19 05:02:39  ajc
979  * SMTP hacks to deal with AOL braindamage
980
981  Revision 1.492  2000/03/18 18:18:04  ajc
982  * Support multiline responses from SMTP servers when sending mail
983
984  Revision 1.491  2000/03/17 16:26:57  ajc
985  * Set up a private "Sent/Received Pages" room for each user
986
987  Revision 1.490  2000/03/17 04:11:24  ajc
988  * Moved bio-related commands out to a loadable module
989
990  Revision 1.489  2000/03/16 17:58:54  smw
991  Created a docs directory.
992  Moved install.txt to docs.
993  Added inetmailsetup.txt (BBS server side e-mail)
994  Added inetmailsetupmx.txt (local mail AND bbs e-mail
995  Added inetsiteconfig.txt (describes the .asi command)
996  Added siteconfig.txt (describes .asg)
997  Added chat.txt (describes changes and new chat functionality)
998  Made a couple of changes to install.txt (references to new documentation)
999  Added Steve Williams to copyright.txt as the document writer.
1000
1001 Revision 1.488  2000/03/15 03:04:51  ajc
1002 * Added DEXP server command to disable incoming express messages.
1003 * <Q>uiet mode client side command to set/clear DEXP mode.
1004 * <K>nown rooms list displays through the paginator.
1005
1006 Revision 1.487  2000/03/12 00:21:35  ajc
1007 * Removed the semi-broken "chat room" functionality in the chat system, and
1008   replaced it with direct mapping to the actual Citadel room the user is in.
1009 * Display masqueraded roomname in chat, if applicable.  Fixes bug #19.
1010
1011 Revision 1.486  2000/03/11 21:29:37  ajc
1012 * SM_ flags for CtdlSaveMsgPointerInRoom() need to be a bit bucket, not an
1013   enum, since more than one can be passed.  Changed SM_DONT_BUMP_REF_COUNT
1014   from 3 to 4.  This also fixes bug #33.
1015
1016 Revision 1.485  2000/03/11 20:26:03  ajc
1017 * Reworked the <R>eply logic in messages.c - fixes bug #34
1018
1019 Revision 1.484  2000/03/11 19:22:19  nbryant
1020  * commands.c: improved timing of background keepalives if connection is
1021                lagged
1022
1023 Revision 1.483  2000/03/11 05:08:48  nbryant
1024  * commands.c: oops, that mutex stuff wasn't necessary
1025
1026 Revision 1.482  2000/03/11 04:09:03  nbryant
1027  * new threaded client code for background keepalives
1028
1029 Revision 1.481  2000/03/10 21:40:04  ajc
1030 * Changes to message base and networker to support Internet-style message
1031   ID's instead of the conventional Citadel style.
1032
1033 Revision 1.480  2000/03/08 03:36:37  ajc
1034 * Shut off hostname resolution when dealing with Unix domain sockets
1035 * Cleaned up the 'citmail' MDA tool
1036 * Added POP3 and SMTP port numbers to global system configuration
1037
1038 Revision 1.479  2000/03/07 21:54:58  ajc
1039 * Fixed the naming conventions and permissions for unix domain sockets.
1040
1041 Revision 1.478  2000/03/05 07:33:23  ajc
1042 * Added support for protocols over Unix domain sockets.
1043
1044 Revision 1.477  2000/03/04 22:36:23  ajc
1045 * Remove nulls appended to editor files during replace, edit, and print
1046   operations.  Truncate temp files during same operations.
1047   Closes bugs #6 and #7.
1048
1049 Revision 1.476  2000/03/04 05:29:18  ajc
1050 * Relax restrictions on editing of base rooms.  Renaming is not allowed but
1051   all other attributes can be edited.  Closes feature request #21.
1052 * Sending pages from the client now uses the same message editing functions
1053   as entering messages, allowing edit/abort.  Closes feature request #25.
1054
1055 Revision 1.475  2000/03/03 04:50:14  ajc
1056 * Moved all of the wholist masquerading commands into the serv_rwho module
1057
1058 Revision 1.474  2000/03/03 04:12:37  ajc
1059 * Finished the inbound side of gateway domain service
1060
1061 Revision 1.473  2000/02/27 04:55:51  ajc
1062 * Added "keymenu()" generic menu-maker to commands.c
1063 * Blocked non-numeric input to intprompt()  (fixes bug #16)
1064
1065 Revision 1.472  2000/02/27 03:57:35  ajc
1066 * Completed 'fsck'-like reference count verifier (server and client)
1067
1068 Revision 1.471  2000/02/26 18:30:40  ajc
1069 * Properly handle all aliases specified in network/mail.aliases for incoming
1070   SMTP mail (uses the alias() function, so if we replace that function with
1071   something that uses the same calling convention, it'll still work)
1072
1073 Revision 1.470  2000/02/26 05:15:38  ajc
1074 * Fortified the message base and SMTP code so that misdirected bounce messages
1075   end up in the Aide> room instead of getting dereferenced
1076 * Started writing a message reference count verifier ('fsck' for message base)
1077
1078 Revision 1.469  2000/02/25 06:14:05  ajc
1079 * Modularized the RWHO (Read WHO is online) command, basically as a pilot
1080   for modularizing all "non-API" functionality.
1081
1082 Revision 1.468  2000/02/24 03:44:00  ajc
1083 * Implemented holdoff time (15 minutes) for SMTP send retry.
1084 * Implemented "try for 3 days and then give up" on SMTP send.
1085
1086 Revision 1.467  2000/02/24 00:51:48  ajc
1087 * Client protocol synchronization check during exit from chat.
1088   This closes Bug #15.
1089
1090 Revision 1.466  2000/02/22 16:37:28  ajc
1091 * Minor tweaks to RFC822 output to keep brain-damanged MS Outlook from dying
1092
1093 Revision 1.465  2000/02/22 04:17:56  ajc
1094 * Got bounce messages working (mostly ... testers, please beat this up!)
1095 * Changed 'FIX' comments to 'FIXME' (less conflict, plus vim highlights it!)
1096
1097 Revision 1.464  2000/02/18 22:29:18  ajc
1098 * Coded up the "bounce" functions.  Still a coupla bugs.
1099
1100 Revision 1.463  2000/02/18 05:10:50  ajc
1101 * Made the <.ASI> command a bit friendlier.
1102 * SMTP sender now pays attention to "smarthost" entries in the system's
1103   Internet configuration, using them if one or more is present.
1104
1105 Revision 1.462  2000/02/17 05:27:39  ajc
1106 * Got the "MAIL From:" command sending the correct data.  (unnnhhhhnnhhhh...)
1107
1108 Revision 1.461  2000/02/16 22:06:26  ajc
1109 * Altered the display and conversion of RFC822 messages
1110
1111 Revision 1.460  2000/02/16 03:43:28  ajc
1112 * Added the resolver library to the configure script
1113
1114 Revision 1.459  2000/02/16 01:19:39  ajc
1115 * Vanquished the evil dn_expand() beast.  getmx() now seems to be working.
1116
1117 Revision 1.458  2000/02/14 04:36:14  ajc
1118 * sysdep.c: added new event hook type EVT_TIMER.  Timer event hooks are called
1119   once per minute by any worker thread.
1120 * msgbase.c: removed dependence on nested functions in CtdlOutputMsg() by
1121   replacing them with an API call CtdlRedirectOutput() in sysdep.c, which
1122   can temporarily redirect a session's output to an arbitrary file or socket.
1123 * serv_smtp.c: implemented the purging of messages in the queue for which all
1124   deliveries have been completed.
1125 * serv_smtp.c: removed temporary 'QQQQ' server command and replaced it with
1126   a timer event hook that runs the queue once per minute (this needs to be
1127   made more robust)
1128
1129 Revision 1.457  2000/02/08 21:00:47  ajc
1130 * Implemented the deprecated "LAST" command in POP3.  Some clients need it.
1131 * POP3 sessions now set the last-read pointer in Mail>.
1132
1133 Revision 1.456  2000/02/07 05:15:00  ajc
1134 * Renamed CtdlLocalHost() to CtdlHostAlias() and worked it a little deeper into
1135   the message routing logic.  Still needs some work on the gateway-domain
1136   stuff.
1137 * Twiddled CtdlOutputMsg() a bit for 'all Internet' situations.  Still needs
1138   some work to avoid printing dual headers when both Cit and RFC822 exist.
1139
1140 Revision 1.455  2000/02/03 03:57:35  ajc
1141 * Formalized the 'Internet Configuration' logistics.  Added new API call
1142   CtdlLocalHost() to detect aliases for the local host.  Used in SMTP listener.
1143
1144 Revision 1.454  2000/01/31 02:13:05  ajc
1145 * <.A>ide <S>ystem configuration <I>nternet  in the client (unfinished)
1146
1147 Revision 1.453  2000/01/26 02:41:27  ajc
1148 * SMTP delivery is working but still *very* rough.
1149
1150 Revision 1.452  2000/01/25 04:45:50  ajc
1151 * Wrote enough of the SMTP sender to get Patriot drooling over it, but not
1152   enough to complete the transmission of mail.
1153
1154 Revision 1.451  2000/01/23 21:25:45  ajc
1155 * Temporary hack to ig_tcp_server() to listen on an arbitrary port if the
1156   one specified is not bindable (for development only)
1157 * Added SM_DONT_BUMP_REF flag to CtdlSaveMsgPointerInRoom() to be used only
1158   in very specific and special situations
1159 * Generate delivery instructions when outbound SMTP mail is created from
1160   within Citadel (as opposed to being from the SMTP module)
1161
1162 Revision 1.450  2000/01/23 05:22:41  ajc
1163 * Coded up some more of the SMTP-sender (still not done)
1164
1165 Revision 1.449  2000/01/22 05:13:56  ajc
1166 * Added some more functionality to the string tokenizer
1167
1168 Revision 1.448  2000/01/17 20:57:43  ajc
1169 * CR to CRLF hacks (lose, lose, lose)
1170
1171 Revision 1.447  2000/01/17 18:30:27  ajc
1172 * Completed POP3 server.  All RFC1939 commands except APOP are implemented.
1173
1174 Revision 1.446  2000/01/17 17:09:23  ajc
1175 * Implemented LIST and STAT commands in the pop3 server
1176
1177 Revision 1.445  2000/01/17 05:38:14  ajc
1178 * citserver.c: cleanup hook functions are now run under the proper context,
1179                even when initiated by the housekeeper thread
1180 * serv_pop3.c: establish a place to hold the message list
1181
1182 Revision 1.444  2000/01/17 04:26:39  ajc
1183 * Modified CtdlOutputMsg() to handle output to arbitrary sockets or files.
1184   This uses nested functions and may not be portable beyond GCC...
1185
1186 Revision 1.443  2000/01/15 18:29:15  ajc
1187 * Added a generic (void *) parameter to the ForEachUser() and ForEachRoom()
1188   callback mechanisms, to allow callers and callbacks to pass arbitrary data
1189   between each other without requiring TSD variables.
1190 * room_ops.c: eliminated the need for 'FloorBeingSearched' TSD variable
1191 * internet_addressing.c: eliminated 'buffer1' and 'buffer2' TSD variables
1192
1193 Revision 1.442  2000/01/15 04:31:44  ajc
1194 * Removed UI_DIALOG mode in setup.  Can't count on 'dialog' to be consistent.
1195
1196 Revision 1.441  2000/01/15 04:07:17  ajc
1197 * Fixed the access rights on auto-created rooms (the same changes that were
1198   made to version 5.62 in the stable tree)
1199
1200 Revision 1.440  2000/01/13 03:32:36  ajc
1201 * techdoc/delivery-list.txt: added (syntax for delivery lists)
1202 * domain.*: added (will contain MX lookup code)
1203 * internet_addressing.c, logging.c: fixed some buffer overflow bugs
1204
1205 Revision 1.439  2000/01/12 03:56:27  ajc
1206 * sysdep.c: start the housekeeping thread *after* dropping root perms.
1207
1208 Revision 1.438  2000/01/09 19:03:16  ajc
1209 * Removed the fifo-based protocol downloads and replaced it with a less
1210   elegant "download temporary file to client, then sx/sb/sz" because
1211   downloading through a fifo was confusing some software.
1212
1213 Revision 1.437  2000/01/08 22:19:44  ajc
1214 * Completed spool to outbound delivery queue (still no queue sender implemented)
1215
1216 Revision 1.436  2000/01/08 05:00:09  ajc
1217 * Reworked some of the data structures to handle multiple recipients
1218 * Began implementation of the delivery queue
1219 * Added CtdlReallocUserData()
1220 * CtdlSaveMsg() now returns the local message ID in the database
1221
1222 Revision 1.435  2000/01/06 03:50:34  ajc
1223 * Replaced citmail.c with a new one that simply SMTP-forwards to Citadel
1224 * Started outbound SMTP queue work
1225
1226 Revision 1.434  1999/12/30 04:56:29  ajc
1227 * Got initial SMTP delivery working in a very specific situation (delivery
1228   to a single, local user)
1229
1230 Revision 1.433  1999/12/29 04:44:00  ajc
1231 * client_chat.c: display "No message sent" if a send page is aborted.
1232   Closes bug #2 in bugzilla.
1233
1234 Revision 1.432  1999/12/26 21:50:07  ajc
1235 * serv_vcard: don't run hooks when not logged in (such as in SMTP sessions)
1236 * serv_pop3: added.  This is the skeleton for a module implementing POP3.
1237
1238 Revision 1.431  1999/12/23 04:46:23  ajc
1239 * "Finished" initial hack of RFC822 import
1240
1241 Revision 1.430  1999/12/22 04:46:34  ajc
1242 * Fixed up the "Date:" headers to be RFC822-compliant
1243
1244 Revision 1.429  1999/12/13 05:30:57  ajc
1245 * Removed our naive 'conv_date()' RFC822-to-unixtime conversion function
1246   and replaced it with the public domain 'parsedate()' function from UseNet
1247
1248 Revision 1.428  1999/12/10 23:58:25  ajc
1249 * internet_addressing.c: added.  (Internet address to Citadel mapping)
1250
1251 Revision 1.427  1999/12/10 21:34:19  ajc
1252 * serv_smtp: implemented RFC821 "VRFY" and "EXPN" commands
1253
1254 Revision 1.426  1999/12/09 05:01:14  ajc
1255 * Split cmd_user() and cmd_pass() into frontend/backend functions
1256 * serv_smtp: implemented AUTH LOGIN for client authentication
1257
1258 Revision 1.425  1999/12/09 00:22:58  ajc
1259 * Finished the "arbitrary service" registration.
1260 * Eliminated "special" master socket for Citadel protocol - just register it
1261   like any other protocol.
1262 * Began initial implementation of native SMTP service.
1263
1264 Revision 1.424  1999/12/08 18:09:10  ajc
1265 * Added CtdlRegisterServiceHook() and its data type, for implementing arbitrary
1266   TCP-based services directly in the Citadel server.  Not finished yet.
1267
1268 Revision 1.423  1999/11/29 17:39:07  nbryant
1269 * citserver.c: Solaris lacks inet_aton; use inet_addr instead
1270
1271 Revision 1.422  1999/11/29 17:26:15  nbryant
1272 * citserver.c: include <sys/types.h>; may help portability to Solaris
1273
1274 Revision 1.421  1999/11/22 00:27:42  ajc
1275 * Added some temporary variables to OpenCmdResult().  Hopefully fixes
1276   bug #14 when running on FreeBSD.
1277
1278 Revision 1.420  1999/11/21 18:30:16  ajc
1279 * Protected cmd_move() from buffer overrun (no longer crashes the server)
1280 * cmd_chat() -- truncate input at 100 characters to prevent buffer overruns.
1281   Also handle broken client sockets properly.  (Thanks to DME for bug report)
1282
1283 Revision 1.419  1999/11/19 01:57:40  ajc
1284 * Fixed a *serious* memory leak in the database function wrappers.
1285 * Updated version number to 5.60 -- run setup when installing this version.
1286
1287 Revision 1.418  1999/11/18 03:29:20  ajc
1288 * Changed the order of parameters in <.A>ide <S>ystem config into a more
1289   logical grouping.
1290
1291 Revision 1.417  1999/11/18 02:31:50  ajc
1292 * Updated some of the documentation
1293 * Brought the internal version number up to 5.60
1294
1295 Revision 1.416  1999/11/17 04:15:05  ajc
1296 * Removed the session_count() function.  Instead, keep a reference count
1297   updated when sessions begin and end.
1298 * Replaced fixed number of worker threads with lower and upper limits; current
1299   code now tries to make thread count == session count, within these limits
1300
1301 Revision 1.415  1999/11/15 03:17:39  ajc
1302 * Put lockfile in /tmp instead of in /var/lock.   The latter is not guaranteed
1303   to exist, nor is it guaranteed to be writable by BBSUID
1304   (Resolves bug #11 from the Bugzilla repository)
1305
1306 Revision 1.414  1999/11/15 03:07:24  ajc
1307 * Fixed the network-wide vCard purge logic so that it (1) actually works,
1308   and (2) forces a netproc run immediately when a purge is entered
1309
1310 Revision 1.413  1999/11/09 21:20:44  nbryant
1311 * configure.in: include <sys/types.h> when doing checks which require <utmp.h>
1312   (should fix Bug #10 on FreeBSD)
1313
1314 Revision 1.412  1999/11/05 03:53:47  ajc
1315 * Issue 'cancel' messages for vCard when a user is deleted.
1316 * Try to delete 'cancel' messages locally after they've been distributed.
1317
1318 Revision 1.411  1999/11/03 04:01:20  ajc
1319 * Fixed buffer overrun problems in cmd_rchg(), cmd_hchg(), and cmd_uchg()
1320 * Removed my email address as the feedback content from the docs; replaced
1321   it with a reference to the Citadel/UX web site.
1322
1323 Revision 1.410  1999/11/02 19:51:23  ajc
1324 * Fixed timeout problem for remote client sessions (all timeouts were set to
1325   1 second ... probably a temporary hack that was missed in the cleanup)
1326
1327 Revision 1.409  1999/11/02 03:03:27  ajc
1328 * Several fixes to msgbase.c and netproc.c to prevent corrupted incoming
1329   network traffic from crashing the server.  Reject bad messages.
1330
1331 Revision 1.408  1999/11/01 04:21:34  ajc
1332 * Fixed a concurrency bug which crashed the server when multiple sessions
1333   terminated simultaneously.
1334
1335 Revision 1.407  1999/11/01 00:54:02  ajc
1336 * CtdlFetchMessage() - generate a "<no text>" message body if there's none
1337   on disk.  Too much stuff goes haywire if there's no M field.
1338
1339 Revision 1.406  1999/10/31 18:17:17  ajc
1340 * Fixed buffer overrun in cmd_rchg()
1341 * Call master_cleanup() when time_to_die==1 for proper shutdown
1342
1343 Revision 1.405  1999/10/31 16:26:55  ajc
1344 * Fixed incorrect assignment of new session ID's
1345
1346 Revision 1.404  1999/10/31 04:17:17  ajc
1347 * Fixed a bug which was crashing the server during very long message entry.
1348
1349 Revision 1.403  1999/10/29 01:48:45  ajc
1350 * database.c: Removed arbitrary limit on maximum number of sessions
1351
1352 Revision 1.402  1999/10/29 01:03:03  ajc
1353 * Debugged all possible ways for a session to terminate; do them cleanly.
1354 * Assign session numbers in a more portable and less arbitrary way.
1355
1356 Revision 1.401  1999/10/28 19:50:55  ajc
1357 * Fixed a problem where the client protocol would spit out two responses
1358   and therefore get out of sync if ASUP command set the access level to
1359   0 and therefore deleted the user (thanks to Eric McDonald)
1360
1361 Revision 1.400  1999/10/28 05:08:49  ajc
1362 * Removed all of the thread cancellation cruft that is no longer necessary
1363 * Moved the now non-system-dependent RemoveContext() out of sysdep.c (now
1364   it's part of cleanup() in citserver.c)
1365 * Removed all references to pthread_* from all modules except sysdep.c
1366
1367 Revision 1.399  1999/10/28 03:20:17  ajc
1368 * Fixed the problem of worker threads waking up prematurely.
1369 * 'QUIT'-terminated sessions now exit properly.
1370
1371 Revision 1.398  1999/10/27 04:26:58  ajc
1372 * Initial hack of worker-thread rearchitecture.  Right now it is successfully
1373   dispatching worker threads to active client sockets (and to the master
1374   socket too, of course).  Removing sessions is currently broken.
1375
1376 Revision 1.397  1999/10/26 20:20:29  ajc
1377 * Removed the auto-reconnect stuff... it was locking the client in an active
1378   loop more often than it was reconnecting.
1379
1380 Revision 1.396  1999/10/26 13:59:11  ajc
1381 damn bugs
1382
1383 Revision 1.395  1999/10/26 03:48:39  ajc
1384 * Shuffled around the order of events when a thread is terminating.  All
1385   mutex operations now happen prior to the freeing of the CitContext structure,
1386   otherwise begin_critical_section() and end_critical_section() try to
1387   manipulate the context's mutex count when there isn't any context.
1388
1389 Revision 1.394  1999/10/26 03:21:16  ajc
1390 * Changed a lot of strncpy() calls to safestrncpy() and replaced most of their
1391   hardcoded size arguments with 'sizeof' based arguments.
1392
1393 Revision 1.393  1999/10/24 19:22:51  nbryant
1394         * Makefile.in, configure.in: added --enable-icq flag; made checks for
1395           authentication libraries more intelligent.
1396
1397 Revision 1.392  1999/10/23 03:39:12  ajc
1398 * Finished moving vCard functionality to the new message base functions.
1399
1400 Revision 1.391  1999/10/21 00:50:14  ajc
1401 * Finished up the flags and replication checks in CtdlSaveMsgPointerInRoom().
1402
1403 Revision 1.390  1999/10/20 16:46:27  ajc
1404 * More code shuffle.  Added some flags to CtdlSaveMessagePointerInRoom() and
1405   enabled the MOVE command to also do a "copy" operation (actually just
1406   creates a second link and bumps the ref count).  Implemented "<C>opy" in
1407   the client.
1408
1409 Revision 1.389  1999/10/20 16:07:48  ajc
1410 * Wholist fixes for users who are in chat mode
1411
1412 Revision 1.388  1999/10/20 03:42:29  ajc
1413 * In the wholist, only show <private room> if the user viewing the list
1414   doesn't know that room.  Otherwise show the name.
1415
1416 Revision 1.387  1999/10/20 02:59:22  ajc
1417 * Code reorganization.  Making it easier to move/copy messages without
1418   duplicating existing code.
1419
1420 Revision 1.386  1999/10/17 02:25:18  ajc
1421 * Discovered a huge design flaw in the replication algorithm.  Ripped it
1422   out and replaced it with something a bit more robust.
1423
1424 Revision 1.385  1999/10/16 05:30:17  ajc
1425 * Changes to message replication code.  Don't do server-side hooks during
1426   an ENT3 command.  Also fixed a bug in cmd_whok() that caused crashes
1427   after a file format change.
1428
1429 Revision 1.384  1999/10/14 03:04:16  ajc
1430 * Finished the netproc side of Z (zap/supersede) processing for replication
1431
1432 Revision 1.383  1999/10/13 04:24:18  ajc
1433 * Added search-by-header-fields to CtdlForEachMessage(), and then to the
1434   server MSGS command.  This will have lots of uses.
1435
1436 Revision 1.382  1999/10/13 01:36:39  ajc
1437 * Starting some work on network zap (supersede) mode for replication
1438
1439 Revision 1.381  1999/10/08 02:55:57  ajc
1440 * More vCard-related debugging
1441
1442 Revision 1.380  1999/10/07 02:58:46  ajc
1443 * Semi-broken vCard replacement implementation in place.
1444 * Added "Z" (Zap, supersede) field to message format
1445
1446 Revision 1.377  1999/10/04 03:19:52  ajc
1447 * We now have a housekeeping thread and a housekeeping queue.
1448
1449 Revision 1.376  1999/10/03 21:48:21  ajc
1450 * Added serv_upgrade.h to automagically convert pre-5.55 format user records
1451   to 5.55 format user records and generate vCards.
1452
1453 Revision 1.375  1999/09/29 21:13:17  ajc
1454 * CtdlWriteObject() can now store objects in personal rooms for any specified
1455   user -- rather than only the current user or non-personal rooms.
1456
1457 Revision 1.374  1999/09/29 17:26:56  ajc
1458 * serv_vcard.c: fixed crashola bug in cmd_greg()
1459 * tools.c: simplified and improved the string tokenizer.  Now it runs in a
1460            single pass with no intermediate buffer.
1461
1462 Revision 1.373  1999/09/28 03:27:37  ajc
1463 * Fully migrated cmd_greg() and cmd_regi() into serv_vcard (still has bugs)
1464
1465 Revision 1.372  1999/09/27 03:33:40  ajc
1466 * cmd_regi() is now in serv_vcard and writes to the vcard instead of to the
1467   usersupp file.  Still needs tweaking.
1468
1469 Revision 1.371  1999/09/24 03:32:19  ajc
1470 * "read my vCard" and "write my vCard" are written and tested.
1471
1472 Revision 1.370  1999/09/24 02:54:17  ajc
1473 * Worked a little more on the vCard stuff.  The serv_vcard module is now in
1474   place, and a "read my vcard" function is there; "write my" is next...
1475
1476 Revision 1.369  1999/09/23 03:07:56  ajc
1477 * The vCard 'class' is now linked into the server, though it's not really
1478   functional yet.  Its constructors/destructors are debugged, though.
1479
1480 Revision 1.368  1999/09/19 21:28:33  ajc
1481 * Finished off the message architecture stuff with a new class of hooks to
1482   enable future server-side handlers.
1483
1484 Revision 1.367  1999/09/19 15:57:06  ajc
1485 * migrated cmd_ent3() to CtdlSaveMessage()
1486
1487 Revision 1.366  1999/09/19 05:13:57  ajc
1488 * Debugged the new version of CtdlWriteObject()
1489
1490 Revision 1.365  1999/09/16 03:23:23  ajc
1491 * Did most of the migration from save_message() to CtdlSaveMsg().  The
1492   latter builds a "struct CtdlMessage" (so we can run server-side handlers
1493   against it later on), then serializes it and stores to disk.
1494 * BROKEN BUILD ALERT!!  cmd_ent3() and CtdlWriteObject() are still not
1495   migrated.  They are stubbed out and will MALFUNCTION if used right now!!
1496
1497 Revision 1.364  1999/09/07 01:42:42  ajc
1498 * cmd_msg3() now uses serialize_message() for its output.  All message
1499   commands will eventually exist as a "struct CtdlMessage" at some point
1500   so that we can install server-side handler hooks.
1501
1502 Revision 1.363  1999/09/07 00:04:13  ajc
1503 * netproc.c: put outgoing messages into the use table, too -- this prevents
1504   locally originated messages from showing up again if a remote system is
1505   misconfigured and spools them back to us.
1506
1507 Revision 1.362  1999/09/06 03:39:15  ajc
1508 * citadel.c: run strproc() on new passwords
1509
1510 Revision 1.361  1999/09/03 17:50:26  playcow
1511 For URL view, don't prompt user to select url if there is only one.  Display
1512 <U>RL View prompt if message contains url(s). -Ben
1513
1514 Revision 1.360  1999/09/02 02:09:59  ajc
1515 * msgbase.c: new function serialize_message() for future use
1516
1517 Revision 1.359  1999/09/01 21:09:25  ajc
1518 * database.c: display the GDBM version string on startup
1519
1520 Revision 1.358  1999/09/01 02:36:34  ajc
1521 * Actually _enforce_ the max msg len limit
1522
1523 Revision 1.357  1999/09/01 01:51:48  ajc
1524 * Added the ability to handle embedded URL's from the text client
1525
1526 Revision 1.356  1999/09/01 01:02:47  ajc
1527 * Implemented "maximum message length" in global system config
1528
1529 Revision 1.355  1999/08/31 00:57:17  ajc
1530 * Handle multipart/alternative properly during legacy message outputs.
1531   Basically it just prints the first alternative and skips the rest.
1532
1533 Revision 1.354  1999/08/29 21:12:24  ajc
1534 * Made some changes to the output of MIME (especially multipart) messages.
1535
1536 Revision 1.353  1999/08/29 19:56:43  ajc
1537 * HTML updates
1538
1539 Revision 1.352  1999/08/24 02:01:03  ajc
1540 * html.c: added.  This is an overly simplistic HTML-to-text converter.
1541
1542 Revision 1.351  1999/08/21 18:37:29  ajc
1543 * Minor cosmetic cleanup.  No code changes.
1544
1545 Revision 1.350  1999/08/21 05:15:34  ajc
1546 * mailinglist.c, netmailer.c: fixed to allow list submissions from all posters
1547   on a Citadel network rather than only on the local system.
1548
1549 Revision 1.349  1999/08/08 00:25:45  ajc
1550 * Made one more byte available in locate_host() and in all the structs which
1551   its output gets written to (client can display 24 positions but we were only
1552   saving 23).
1553
1554 Revision 1.348  1999/08/07 16:34:38  nbryant
1555 * serv_icq.c: warning fixes
1556
1557 Revision 1.347  1999/08/06 02:57:26  ajc
1558 * locate_host.c: use strdoop() and phree() instead of strdup() and free()
1559 * serv_icq.c: run learned IP's through Citadel's locate_host() & put in Wholist
1560
1561 Revision 1.346  1999/08/05 17:58:59  ajc
1562 * RWHO command now returns express message code in postion 3
1563
1564 Revision 1.345  1999/08/04 02:21:45  ajc
1565 * Fixed some bugs in the ICQ metaclient, and documented the new protocol cmds
1566
1567 Revision 1.344  1999/08/03 11:34:35  ajc
1568 * Added client_icq.c and client_icq.h
1569
1570 Revision 1.343  1999/08/03 03:14:51  ajc
1571 * Wrote the client side of the ICQ gateway.  Now on to other projects.  :)
1572
1573 Revision 1.342  1999/08/03 01:52:06  ajc
1574 * Redesigned the client protocol commands for dealing with ICQ
1575 * Implemented page function priority ordering to prevent pages from being
1576   simultaneously delivered over multiple IM systems
1577 * Migrated serv_icq.* into the Makefile
1578
1579 Revision 1.341  1999/08/01 21:36:30  ajc
1580 * EXTREME coolness.  The server side of the ICQ metaclient is now working.
1581   It is set up using ICQL and ICQA commands, it automatically logs the user
1582   onto ICQ along with Citadel, and displays all non-offline ICQ contacts
1583   in the Wholist.
1584
1585 Revision 1.340  1999/07/31 07:18:01  ajc
1586 * Restructured the express message infrastructure, adding a class of function
1587   hooks for the addition of multiple paging modules with message routing
1588
1589 Revision 1.339  1999/07/30 22:20:19  ajc
1590 * Applied bugfix patches contributed by Vaggelis Tsirkas:
1591   * rooms.c: buffer overrun fix
1592   * room_ops.c: cmd_rdir() now behaves better when directory doesn't exist
1593
1594 Revision 1.338  1999/07/30 03:32:24  ajc
1595 * Added strdoop(), a leak-checked version of strdup()
1596 * Small fixes to new API functions in msgbase.c
1597 * ICQ metaclient stores/reads config using the message base API functions
1598
1599 Revision 1.337  1999/07/29 03:36:37  ajc
1600 * msgbase.c: reorganized.  output_message() now uses CtdlFetchMessage(),
1601   cmd_msg3() now fetches directly from disk and spews to the client.
1602
1603 Revision 1.336  1999/07/28 04:02:37  ajc
1604 * Server modules are now labelled with their RCS ID instead of a complex and
1605   manually-updated data structure.
1606
1607 Revision 1.335  1999/07/28 03:50:24  ajc
1608 * serv_expire.c: expire-by-age now calls CtdlFetchMessage() instead of
1609   calling output_message() in MT_DATE mode.
1610 * msgbase.c: removed MT_DATE mode ('twas a sleazy hack)
1611
1612 Revision 1.334  1999/07/27 22:47:26  ajc
1613 * Implemented new data type "CtdlMessage" which will eventually be used as
1614   widely as possible to represent a message in memory.
1615 * Implemented CtdlFetchMessage() which is intended to become the back-end to
1616   output_message() as well as a bunch of other things.
1617
1618 Revision 1.333  1999/07/27 20:00:24  ajc
1619 Removed all references to CC->msglist and CC->num_msgs, and all utility
1620 functions which relied upon them.  Citadel Is Now Better.
1621
1622 Revision 1.332  1999/07/27 19:32:22  ajc
1623 Removed serv_upgrade.c and all references to it in Makefile.in
1624 Reworked new-mail-count to not use MessageFromList() etc.
1625
1626 Revision 1.331  1999/07/25 02:59:37  ajc
1627 Fixed reference count problem in cmd_move()
1628
1629 Revision 1.330  1999/07/24 22:50:38  ajc
1630 Continued replacing references to [get|put]_msglist() with better code.
1631 For some reason, cmd_msgs() still doesn't always work right.
1632
1633 Revision 1.329  1999/07/24 22:16:41  ajc
1634 Experimenting with automatic updating of ChangeLog by CVS.  Simply twiddle
1635 ChangeLog a bit (i.e. by adding or removing a newline from the end of the
1636 file) before issusing "cvs commit", and the comments recorded by CVS will
1637 automatically appear at the beginning of ChangeLog.
1638
1639 Revision 1.328  1999/07/24 22:14:21  ajc
1640 cmd_move() now uses CtdlDeleteMessages().
1641 WARNING: build is temporarily broken.  Currently removing all references
1642 to the "msglist" kept in CitContext.  It's ugly and must die.
1643
1644 Thu Jul 22 22:26:50 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1645         * Moved message deletion into new API function CtdlDeleteMessages()
1646         * Added CtdlWriteObject() to store generic data in the msgbase
1647         * Fixed really dumb error that prevented network msgs from posting
1648
1649 Tue Jul 20 22:14:54 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1650         * Moved the actual work done in cmd_msgs() into a new API function
1651           called CtdlForEachMessage() which is supplied a callback function.
1652
1653 Mon Jul 19 23:24:18 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1654         * Keep the (unqualified) content-type in the SuppMsgInfo record.  We'll
1655           be using this shortly to search rooms for specific object types.
1656
1657 Sun Jul 18 14:53:16 EDT 1999 Art Cancro <ajc@uncensored.citadel.org> 
1658         * Changes to dynloader et al to handle ICQ module being written
1659         * serv_icq.c, serv_icq.mk: added (separate makefile is temporary)
1660
1661 1999-07-17 Nathan Bryant <bryant@cs.usm.maine.edu>
1662         * chkpwd.c: DELETED CVS REVISION 1.3 (backed out Art's last change)
1663           use 'cvs update -r 1.2 chkpwd.c; cvs update -A chkpwd.c' NOW to
1664           avoid problems with working directories.
1665         * Makefile.in: don't install chkpwd setuid if make install isn't
1666           being run as root.
1667         * citadel.spec: chmod u+s chkpwd during %install stage
1668
1669 Fri Jul 16 18:39:04 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1670         * PEXP and GEXP no longer trip the idle time display
1671         * Fixed bug which duplicated incoming private mail to Trashcan
1672         * Improved auto-reconnect by NOT using SIGPIPE and longjmp(); also
1673           implemented a 15 second delay to wait for a crashed server to restart
1674         * Relaxed the security check in chkpwd.c a bit; it was just flat-out
1675           preventing logins on my system otherwise
1676
1677 Thu Jul 15 22:57:32 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1678         * eliminate redundant "name" parameter in [l]putuser(), now uses
1679           usbuf->fullname to guarantee the correct name for the index
1680
1681 1999-07-12 Nathan Bryant <bryant@cs.usm.maine.edu>
1682         * Makefile.in, configure.in: link netproc with gdbm
1683         * netproc.c: only include gdbm.h if HAVE_GDBM_H
1684         * user_ops.c: warning fix
1685
1686 Mon Jul 12 19:51:30 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1687         * Mail is now saved in both sender and recipient mailboxes.  This is
1688           structured in a way that will allow a separate "outbox" room and/or
1689           multiple recipients in the future.
1690
1691 Sun Jul 11 18:46:48 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1692         * netproc.c: msgfind() no longer uses the timestamp as a message-ID
1693           when no other message-ID is available (it screws up the loopzapper)
1694         * room_ops.c: eliminate room name parameter in putroom() and its ilk;
1695           get data from quickroom.QRname instead; prevents incorrect indexes
1696         * Tentative implementation of "personal rooms" (user-private namespace)
1697         * Added supplementary message info records for info that may change
1698           at some time later than when the message is saved (i.e. ref counts)
1699         * Implemented msg reference count increment/decrement; delete messages
1700           whose reference count reaches zero
1701
1702 Wed Jul  7 23:25:09 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1703         * control.c: create citadel.control if it doesn't exist (yikes!)
1704         * serv_expire.c: purge mailbox rooms belonging to non-existent users
1705         * user_ops.c: don't delete user's mailbox at user-delete time
1706
1707 Mon Jul  5 17:01:29 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1708         * utilsmenu: removed menu items for defunct utilities
1709
1710 Mon Jun 28 16:24:10 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1711         * Changed any remaining references to UUCP, to "Internet" instead.
1712
1713 Thu Jun 24 11:13:23 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1714         * added server command line option "-f" to defrag databases on startup
1715         * control.c: better performance and reliability in [get|put]_control()
1716         * netproc.c: Finished the loopzapper
1717
1718 Mon Jun 21 00:04:15 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1719         * netproc.c: started writing a vortex checker.  Not finished.
1720
1721 Wed Jun  9 23:34:25 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1722         * Replaced all code that generated temporary filenames with calls to
1723           tmpnam().  Rewrote using tmpfile() where possible.
1724
1725 Thu Jun  3 11:35:18 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1726         * base64.c: mapped fi and fo to stdin and stdout using
1727           actual code rather than assignment at declaration time
1728           (several users of Red Hat Linux 6.0 reported problems)
1729
1730 Fri May 21 20:05:00 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1731         * Added function CtdlGetDynamicSymbol() for dynamic symbol allocation
1732         * server.h: Changed discrete #define's to enum's where appropriate
1733         * sysdep.c: Changed the startup message to give credit to the whole
1734           development team :)  Also made the message more GNU-ish.
1735
1736 Thu May 20 20:01:30 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1737         * database.c: print log messages for file defragmentations
1738         * citserver.c: implemented CtdlAllocUserData() and CtdlGetUserData()
1739           for arbitrary per-session data storage (by modules etc.) without
1740           having to add fields to struct CitContext
1741         * msgbase.c: removed "desired_section" from struct CitContext and
1742           implemented it using CtdlGetUserData() as a test.
1743
1744 Wed May 19 19:30:28 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1745         * commands.c, commands.h, routines.c: began color scheme changes
1746
1747 1999-05-15 Nathan Bryant <bryant@cs.usm.maine.edu>
1748         * configure.in: Added untested support for BSDI 4.x.
1749
1750 1999-05-13 Nathan Bryant <bryant@cs.usm.maine.edu>
1751         * acconfig.h, configure.in, routines.c: fix for certain SYSV variants
1752           which lack utmp.ut_host
1753         * citadel.h, file_ops.c, msgbase.c, netproc.c, serv_chat.c: fix
1754           namespace collision with <sys/stream.h> on aforementioned SYSV
1755           variant
1756         * configure.in, getutline.c: check for paths.h
1757         * configure.in, Makefile.in: check for -lsocket and -lnsl
1758
1759 1999-05-11 Nathan Bryant <bryant@cs.usm.maine.edu>
1760         * chkpwd.c: fixed excessive paranoia; it used to refuse to run when
1761           invoked by root and BBSUID != 0
1762         * Makefile.in: ignore errors while installing /etc/pam.d/citadel
1763
1764 1999-04-27 Art Cancro <ajc@uncensored.citadel.org>
1765         * file_ops.c: fixed NDOP to not crash the server if it has trouble
1766           with a download file
1767         * netpoll.c: upped default packet size
1768
1769 Mon Apr 26 22:06:57 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1770         * Repaired IGnorant security hole blunder re. citmail
1771
1772 Sun Apr 25 12:44:08 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1773         * serv_chat.c: notify user of number of participants upon entering chat
1774         * Built the 5.53 distribution
1775
1776 Wed Apr 21 22:23:13 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1777         * aidepost.c: add -r flag to allow posting to rooms other than Aide>
1778         * serv_expire.c: now posts transcripts of all auto-purged rooms/users
1779
1780 Tue Apr 20 12:45:55 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1781         * messages.c: downloading more than MAX_MSGS messages now truncates
1782           (off the beginning of the list) rather than crashing.
1783
1784 Mon Apr 19 12:11:48 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1785         * whobbs.c: auto-detect when being called from a webserver, and act
1786           as a CGI (print HTTP headers and HTML output)
1787
1788 1999-04-18 Nathan Bryant <bryant@cs.usm.maine.edu>
1789         * serv_chat.c: fixed some potential buffer overruns (thanks dme)
1790
1791 Wed Apr 14 21:32:28 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1792         * Makefile.in: chmod 4755 citmail to prevent citmail from aborting
1793           when called from sendmail due to citadel.config security check
1794
1795 1999-04-13 Nathan Bryant <bryant@cs.usm.maine.edu>
1796         * dynloader.c: OpenBSD places underscores in front of symbol names
1797         * Makefile.in: fixed a few sillies
1798         * aidepost.c, citmail.c, file_ops.c, logging.c, msgbase.c, netmailer.c,
1799           netproc.c, rcit.c, routines.c, serv_upgrade.c: fixed time_t handling
1800           (have to cast it to long for printf/scanf)
1801
1802 Mon Apr 12 22:13:26 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1803         * aidepost.c: rewrote to unlink temp file before writing to it so that
1804           it will automatically go away if interrupted. Also ran indent -kr -i8
1805
1806 1999-04-12 Nathan Bryant <bryant@cs.usm.maine.edu>
1807         * configure.in, Makefile.in: taught it how to generate OpenBSD shared
1808           libraries
1809         * config.c, sysdep.c: fix -h option not setting proper modules dir
1810         * configure.in, citadel.spec: make --enable-chkpwd the default
1811         * setup.c: don't chown chkpwd
1812
1813 1999-04-11 Nathan Bryant <bryant@cs.usm.maine.edu>
1814         * configure.in: another OpenBSD fix, but we're still not quite there yet
1815         * serv_chat.c: warning fix
1816
1817 Thu Apr  8 22:51:28 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1818         * config.c: now requires a setup run for *any* rev level difference
1819         * Updated docs & confs for 5.53b1 release
1820         * setup.c: sets the 0600 permission bits on citadel.config that
1821           is checked for in config.c
1822
1823 1999-04-08 Nathan Bryant <bryant@cs.usm.maine.edu>
1824         * citserver.c: improved is_public_client(), also if a public_client
1825           only supplies a numeric address, attempt to resolve it
1826         * locate_host.c: verify that the forward DNS matches the reverse
1827         * locate_host.c, locate_host.h: more general interface
1828         * configure.in, acconfig.h: fixes for Digital UNIX
1829
1830 Wed Apr  7 21:36:16 EDT 1999 Art Cancro <ajc@uncensored.citadel.org>
1831         * Implemented "access level required to create rooms" (client & server)
1832
1833 1999-04-07 Nathan Bryant <bryant@cs.usm.maine.edu>
1834         * configure.in: updated help messages, OpenBSD support
1835         * setup.c: if /etc/inittab doesn't exist, don't ask to create an
1836           entry in it
1837         * server.h, sysdep.c: fix a potential deadlock/data corruption bug
1838         * room_ops.c: fixed the 'gdbm error: Illegal data' message when
1839           deleting a room which had never been posted to
1840         * user_ops.c: include errno.h
1841         * dynloader.c: fix for OpenBSD
1842
1843 1999-04-06 Nathan Bryant <bryant@cs.usm.maine.edu>
1844         * Makefile.in, configure.in, getutline.c, sysdep.c:
1845           fixes/bug workarounds for FreeBSD
1846
1847 1999-04-03 Nathan Bryant <bryant@cs.usm.maine.edu>
1848         * Makefile.in, configure.in, chkpwd.c, acconfig.h: support for
1849           `chkpwd', a setuid helper program for machines which use shadow
1850           passwords (configure --enable-chkpwd)
1851         * Makefile.in, configure.in, auth.c, citadel.pam, user_ops.c: support
1852           for PAM or shadow passwords (configure --with-pam)
1853         * Makefile.in: made some messages simpler
1854         * citadel.spec: updated for 5.53; correct name of tarball; build with
1855           --enable-chkpwd and --with-pam; add defattr tags so rpm's can be
1856           built by non-root user
1857         * commands.c: cosmetic cleanup
1858         * config.c: (security/paranoia) check permissions on citadel.config
1859         * configure.in: check for ncurses if we can't find curses
1860         * dynloader.c: warning fix
1861         * sysdep.c: don't complain if initgroups() fails
1862         * citadel.c: fix systems with SYSV-style signal handling (e.g. libc5)
1863         * Makefile.in: New! Improved! Cleaner! Shinier!
1864
1865 Sun Mar 21 14:21:47 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1866         * messages.c: cosmetic cleanups to message reading loop
1867
1868 Sat Mar 13 21:33:19 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1869         * commands.c: use bright colors by default in color mode
1870         * citserver.c: initialize wholist fields with (not logged in) etc.
1871
1872 1999-03-08 Nathan Bryant <bryant@cs.usm.maine.edu>
1873         * sysdep.c: call DLoader_Init() with an absolute path so that gdb can
1874           find module symbols
1875         * database.c: bail out if opening databases fails
1876
1877 Sat Mar  6 01:55:55 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1878         * serv_chat.c: use memfmout(), *not* cprintf() to transmit express
1879           messages.  Calling cprintf() on strings >256 bytes crashes the server
1880         * msgbase.c: minor logging fix in save_message()
1881
1882 1999-03-05 Nathan Bryant <bryant@cs.usm.maine.edu>
1883         * sysdep.c: add undocumented -r flag to citserver to prevent it from
1884           dropping root permissions.
1885         * sysdep.c: also drop supplementary groups
1886
1887 1999-03-04 Nathan Bryant <bryant@cs.usm.maine.edu>
1888         * config.c: error checking in put_config()
1889         * setup.c: chgrp files to the login group associated with BBSUID
1890         * sysdep.c: copyright 1987-1999; drop root perms; load modules and call
1891           master_startup() after dropping perms
1892
1893 Wed Mar  3 00:00:55 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1894         * Prevent buffer overruns in lowercase_name in [get|put]user()
1895         * client_chat.c: use citedit() for page composition
1896
1897 Sat Feb 27 07:47:36 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1898         * rooms.c: download_to_local_disk() prompts for a filename if a blank
1899           filename was supplied to it (for attachments without names)
1900         * mime_parser.c: strip leading whitespace in content_type & disposition
1901
1902 1999-02-24 Nathan Bryant <bryant@cs.usm.maine.edu>
1903         * configure.in: improved check for pthreads
1904         * configure.in, routines.c, acconfig.h: check for ut_type in struct utmp
1905         * configure.in, Makefile.in: support for building server modules as
1906           relocatable objects for BSDI (which still uses a.out *gag* *choke*)
1907         * configure.in: compiler choice & flags for BSDI; check for libtermcap
1908         * database.c: don't use a critical section in open_databases()
1909         * housekeeping.c: use getfloor()/putfloor() instead of
1910           lgetfloor()/lputfloor() in check_ref_counts()
1911         * mime_parser.c: include <errno.h>
1912         * msgbase.c: include <limits.h>
1913         * sysdep.c: hacks for BSDI. use signals to fake thread cancellation;
1914           don't call master_cleanup() directly from signal handler.
1915         * routines.c: prototype getutline() if necessary
1916         * getutline.c: stupid bugfix
1917         * acconfig.h, configure.in, locate_host.c, server.h: work around
1918           nonreentrant gethostbyaddr() on BSDI
1919
1920 Mon Feb 15 22:59:00 EST 1999 Vaggelis Tsirkas
1921         * citadel.c: increased hostname buffer size to handle very big names
1922
1923 1999-02-15 Nathan Bryant <bryant@cs.usm.maine.edu>
1924         * sysdep.c(main): initialize alen before call to accept()
1925
1926 1999-02-04 Nathan Bryant <bryant@cs.usm.maine.edu>
1927         * configure.in: improved check for cygwin
1928         * configure.in, routines.c: access utmp directly instead of calling
1929           `who' if getutline() is available.
1930         * configure.in, Makefile.in, getutline.c: replace getutline() on
1931           systems which don't have it
1932         * routines.c: now always access utmp directly unless we can't find
1933           utmp.h
1934
1935 1999-02-02 Nathan Bryant <bryant@cs.usm.maine.edu>
1936         * Fixes for Cygwin:
1937           - ifdef out file download methods that require named pipes (client)
1938           - include pthread.h and gdbm.h only if they are present (fixes
1939             auto dependency generation)
1940           - include snprintf.h where needed
1941           - handle .exe suffixes for "make install"
1942
1943 Tue Feb  2 22:15:08 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1944         * Overhauled the express messaging system (again)
1945
1946 Mon Feb  1 19:48:04 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1947         * messages.c: implemented client download of MIME attachments
1948
1949 Sun Jan 31 18:29:18 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1950         * Added qpdecode.c to the distribution (decodes quoted-printable)
1951         * Finished the MIME parser
1952         * Gave MSG0 a reasonable behaviour for MIME messages
1953         * Added the OPNA command for downloading attachments
1954
1955 Sat Jan 30 18:39:53 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1956         * Look for citadel.rc in current directory if not found elsewhere
1957         * More work on the MIME parser
1958         * Added base64.c to the distribution
1959
1960 1999-01-29 Nathan Bryant <bryant@cs.usm.maine.edu>
1961         * fixes for IRIX (thanks to wr and family for use of the Indy):
1962           - use memset()/memcpy() instead of bzero()/bcopy() in all cases
1963           - configure updates
1964           - handle `long' pid's
1965           - a few other little bits
1966
1967 Mon Jan 25 21:23:07 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1968         * Fixed bug in save_message() which crashed the server on mail to sysop
1969         * Rewrote pop_march() to be smarter about <G>oto heuristics
1970
1971 Sat Jan 23 14:32:19 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1972         * Changed internal storage of express messages from a linked list to
1973           a single, resizable buffer.
1974         * Added a "room order" key to the room record, to allow some control
1975           over room listing order.
1976         * Made the room list commands aware of the room order key.
1977         * Overhauled <G>oto heuristics to pay attention to floor & room order
1978
1979 Wed Jan 20 19:21:51 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1980         * Added some more code to the unfinished MIME parser
1981         * Changed module loading path to simply "modules" because after calling
1982           get_config(), the cwd is guaranteed to be the correct BBS directory.
1983
1984 Tue Jan 19 21:28:29 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1985         * Fixed a bug in the user editing command (client side)
1986         * Started a rewrite of the MIME parser
1987
1988 Thu Jan 14 21:21:15 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1989         * Brought over the mime_parser from WebCit and began preliminary work
1990           on supporting MIME format messages.
1991
1992 Tue Jan 12 22:30:00 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
1993         * Various changes to begin work on support for MIME messages
1994                 - Defined format type 4 for MIME
1995                 - msgbase.c: *temporary* hacks in output_message() for Type 4
1996                 - citmail.c: added more robust header parsing, and support
1997                              for Type 4.  Also eliminated the crappy built-in
1998                              SMTP server.
1999                 - Updated some of the technical documentation
2000
2001 Sun Jan 10 13:34:36 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
2002         * Fixed access to page log room
2003
2004 Fri Jan  8 12:35:09 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
2005         * control.c: include <limits.h> to fix PATH_MAX undefined
2006         * serv_chat.c: made the following changes to cmd_sexp() --
2007                 * Send zero-length message to check only, don't send
2008                 * Send "-" message on the command line to invoke
2009                   the SEND_LISTING transfer mode for a multi-line message
2010         * Added facilities to log all pages to a room (site configurable)
2011
2012 Tue Jan  5 23:24:52 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
2013         * Replaced all occurances of malloc(), realloc(), and free() in the
2014           server and server-modules with mallok(), reallok(), and phree().
2015           Wrote macros and a set of leak-tracking functions.
2016
2017 Sun Jan  3 20:38:45 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
2018         * Documentation changes
2019
2020 Fri Jan  1 01:01:45 EST 1999 Art Cancro <ajc@uncensored.citadel.org>
2021         * Fixed security problem relating to private rooms
2022
2023 Wed Dec 30 20:10:52 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2024         * sysdep.c: put a bigger string buffer into lprintf() to avoid overruns
2025
2026 Sat Dec 26 16:56:46 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2027         * internetmail.config: commented this file more clearly
2028
2029 Wed Dec 23 20:42:49 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2030         * citadel.c: added some experimental code to automatically reconnect
2031           to the server if the connection is broken.  For some reason, it only
2032           works once.
2033
2034 Wed Dec 23 18:47:12 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2035         * sysdep.c: ignore SIGPIPE.  This keeps broken connections from
2036           crashing the whole server.
2037         * Tagged everything for the official 5.50 release.
2038
2039 Mon Dec 21 07:54:20 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2040         * housekeeping.c: call kill_session() with session_to_kill,
2041           not ccptr->cs_pid (was crashing the server)
2042
2043 Sat Dec 19 13:57:48 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2044         * Added "-i" flag to netproc to make it skip the export phase.
2045           Updated other programs to call netproc in this way when appropriate.
2046         * Updated network.txt to reflect the usage for netproc (which has
2047           been wrong for several releases)
2048
2049 Thu Dec 17 00:17:04 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2050         * Started removing the word "beta" from the docs and code.
2051           Preparing for an actual release.
2052         * msgbase.c: generate an 'I' field when requested (i.e. on locally
2053           originating messages.  this was breaking parts of the network)
2054
2055 1998-12-15 Art Cancro <ajc@uncensored.citadel.org>
2056         * msgbase.c: remove extra call to alias() which was causing
2057           Citadel-to-Citadel mail to fall into the bit bucket.
2058         * msgbase.c: fixed tempfile naming problem that could cause a new
2059           outgoing netmail message to overwrite another if netproc had not been
2060           run in between
2061
2062 1998-12-14 Art Cancro <ajc@uncensored.citadel.org>
2063         * More session table stability nonsense
2064
2065 Sun Dec 13 17:40:08 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2066         * sysdep.c, citserver.c: (hopefully) fixed a session table concurrency
2067           bug which was causing the server to occasionally crash.
2068         * removed serv_test.so from the default build
2069
2070 Fri Dec 11 18:50:00 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2071         * setup.c: default value for maxsessions is now 0 (no limit)
2072         * room_ops.c: don't allow users to create a room called "Mail"
2073         * serv_expire.c: fixed "number of messages purged" display
2074         * commands.c: when using color, default to low-intensity colors
2075
2076 Tue Dec  8 07:58:16 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2077         * Beta 2
2078
2079 Sat Dec  5 01:24:03 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2080         * Added a new type of module hook for adding logging functions
2081         * Removed whitespace to left and right of '@' in netmail recipients
2082         * sysdep.c: read citadel.config _before_ initializing loadable modules
2083         * stats.c: fixed segfault resulting from extracting log lines
2084         * Ripped most of the "attachments" stuff out of both the client and
2085           server.  (Thought of a better way to handle it ... LATER.)
2086
2087 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
2088         * setup.c: create citadel.config with mode 0600
2089         * Makefile.in: don't chmod sendcommand
2090         * serv_upgrade.c: don't create citadel.config if it doesn't already
2091           exist (paranoia)
2092         * setup.c: saner defaults for nodename and fqdn
2093
2094 Wed Dec  2 20:37:05 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2095         * msgbase.c: modified AddMessageToRoom() and all functions that call it
2096           to use a more reliable/accurate method to set quickroom.QRhighest
2097         * weekly.in: don't sort/purge filedir where filedir doesn't exist
2098
2099 1998-12-02 Nathan Bryant <bryant@cs.usm.maine.edu>
2100         * weekly is now generated by configure
2101
2102 Mon Nov 30 19:48:52 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2103         * room_ops.c: added sort_msglist() to move and save operations
2104         * sendcommand.c: added (also updated utils.txt, weekly, Makefile.in)
2105         * BETA 1
2106
2107 Sun Nov 29 23:57:39 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2108         * Fixed cmd_regi() to not display a second result code after xfer
2109         * Makefile.in: Removed "chmod 4755 citmail netmailer"
2110
2111 1998-11-23 Nathan Bryant <bryant@cs.usm.maine.edu>
2112         * citadel.spec: added
2113
2114 1998-11-22 Nathan Bryant <bryant@cs.usm.maine.edu>
2115         * Makefile.in: split install target into install-exec, install-data,
2116           and install-doc subtargets
2117
2118 Sat Nov 21 16:53:30 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2119         * Added a fourth color mode in the client: "user" which turns color
2120           on or off according to a per-user flag stored on the server.  Added
2121           server-side support for this too, of course.
2122         * import.c: removed
2123         * serv_expire.c: finished the code to purge stale visits
2124         * sysdep.c: strip trailing nonprintables in client_gets()
2125         * routines2.c: fixed <.AS> command; all configs now work properly
2126         * Moved num_parms() and all the extract() type functions into tools.c
2127           and removed them from all other files.  Linked in tools.[o|ro] there.
2128         * netproc.c: handled incoming file transfers to correct room directory
2129         * room_ops.c: fixed incorrect naming of files in info and images dirs
2130
2131 Fri Nov 20 20:29:07 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2132         * setup.c: removed all prompts that can be configured from within the
2133           client in order to simplify the setup procedure
2134
2135 Thu Nov 19 23:28:33 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2136         * Fixed serv_upgrade.c and export5.c (found elsewhere) to use a new
2137           export format which treats visits as a separate section
2138         * serv_expire.c: began writing functions to purge rooms and visits
2139           (neither work yet), and added a way to call defrag_databases()
2140
2141 Wed Nov 18 23:51:17 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2142         * Reimplemented 'visit' structs stored globally instead of as
2143           lists-per-user
2144
2145 Tue Nov 17 22:37:48 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2146         * Started implementing global room numbers.
2147
2148 Sun Nov 15 20:32:34 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2149         * room_ops.c: mailbox rooms always appear on the main floor
2150         * made QR_MAILBOX rooms non-editable
2151         * cmd_setr() delete old room record when room name changes
2152           (This causes a big mess that exposes a flaw in the whole design.)
2153         * room_ops.c: users can delete messages from their mailboxes
2154
2155 Thu Nov 12 23:59:13 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2156         * Rewrote cmd_rchg() and also increased the size of the "fakename"
2157           buffer.  Overruns are probably what was causing the crashes.
2158         * Changed the way cmd_ent3() handles mail messages; the previous code
2159           rerouted all private mail to the trash.
2160
2161 Wed Nov 11 17:57:39 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2162         * citserver.c: slight changes to cmd_rchg() and cmd_hchg() [crashes]
2163         * citserver.c, msgbase.c, user_ops.c: hide the owner-prefix of mail
2164           rooms in a couple more places: set_wtmpsupp() and make_message()
2165         * sysdep.c: added an fflush() to lprintf() for "tail -f"-able logs
2166         * serv_expire.c: purge ops are now a command instead of a cleanup
2167           function.  This is probably temporary as well.
2168         * citadel.c: fixed the way <.WL> parses the returned data from a
2169           TIME command.
2170
2171 1998-11-11 Nathan Bryant <bryant@cs.usm.maine.edu>
2172         * serv_upgrade.c: fix uninitialized variable
2173
2174 Wed Nov 11 00:47:32 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2175         * msgbase.c: fixed a bug that was misrouting incoming network msgs
2176         * server.h, database.c: wrapped all GDBM calls in critical sections
2177           to avoid making those calls re-entrantly (gdbm fatal: lseek error)
2178
2179 1998-11-10 Nathan Bryant <bryant@cs.usm.maine.edu>
2180         * Makefile.in: link in snprintf.o where needed
2181
2182 1998-11-09 Nathan Bryant <bryant@cs.usm.maine.edu>
2183         * client_chat.c: eliminate calls to sprintf()
2184         * commands.h, routines.c, routines2.c: warning fix
2185         * commands.c, control.c, cux2ascii.c, file_ops.c, import.c,
2186           ipc_c_tcp.c: eliminate sprintf() calls
2187
2188 Mon Nov  9 19:15:31 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2189         * serv_upgrade.c: added all missing fields to export/import
2190         * serv_expire.c: support per-user purge time when purging users
2191         * user_ops.c: added per-user purge time to AGUP and ASUP commands
2192         * routines.c: added more stuff to <.A>ide <E>dit user
2193
2194 Sun Nov  8 22:56:53 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2195         * serv_expire.c: created; moved message expiry from serv_test.c,
2196           moved user purge from userpurge.c
2197         * userpurge.c: deleted
2198         * routines2.c: finished <.AS> command
2199         * room_ops.c: fixed Aide room access (for some reason, the Aide
2200           room had the QR_MAILBOX flag set)
2201
2202 1998-11-08 Nathan Bryant <bryant@cs.usm.maine.edu>
2203         * useradmin.c: really removed (cvs remove)
2204         * aidepost.c, citadel.c: convert all sprintf() calls to snprintf()
2205         * sysdep.c: fix overrun in lprintf() described by dme/Dead Monkey
2206         * citmail.c, citserver.c: convert all sprintf() call to snprintf()
2207
2208 Sun Nov  8 13:19:36 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2209         * useradmin.c: removed
2210         * utils.doc: removed references to useradmin and sysoputil
2211
2212 Fri Nov  6 20:22:20 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2213         * citadel.h (and related files): removed defunct parameters,
2214           c_defent and c_msgbase (erase your test bbs)
2215         * Implemented CONF server command for site-global configs
2216         * Shuffled yesno() and yesno_d() from routines.c to commands.c
2217         * commands.c: implemented boolprompt()
2218         * routines2.c: started adding CONF questions to <.AS> command
2219         * room_ops.c: began a fix for the mysterious disappearing Aide room
2220
2221 1998-11-05 Nathan Bryant <bryant@cs.usm.maine.edu>
2222         * snprintf.c: warning fix propagated over from gcit
2223
2224 1998-11-04 Nathan Bryant <bryant@cs.usm.maine.edu>
2225         * added RCS Id keyword strings to sources
2226         * citmail.c: reverted to version 1.10
2227
2228 Wed Nov  4 10:53:13 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2229         * messages.c: temporarily set screenwidth to a fixed value of 80
2230           during <P>rint operations.
2231
2232 Mon Nov  2 12:59:03 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2233         * setup.c: looks for 'citadel', 'bbs', or 'guest' in /etc/passwd to
2234           try to get a default for bbsuid if it's currently set to 0
2235         * citmail.c: changed usersupp.eternal to usersupp.usernum (why didn't
2236           it complain about this before?)
2237         * serv_upgrade.c: began writing an "export" command to do sidegrades
2238
2239 Sun Nov  1 18:47:42 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2240         * serv_upgrade.c: cosmetic changes
2241         * Implemented message expiry by date (this really needs to be moved
2242           out of serv_test.c, but where does it belong?)
2243
2244 1998-11-01 Nathan Bryant <bryant@cs.usm.maine.edu>
2245         * serv_upgrade.c: warning fixes
2246         * acconfig.h: remove ANSI_COLOR
2247         * Configure, Makefile.tmpl: removed
2248
2249 Sat Oct 31 20:48:44 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2250         * More stoopid ANSI colour additions here and there.
2251         * ANSI colour selection is now in citadel.rc instead of an option in
2252           the configure script.  "on" "off" and "auto" are available.
2253         * added "build.txt" to the techdoc directory, with LS's build notes
2254
2255 1998-10-31 Nathan Bryant <bryant@cs.usm.maine.edu>
2256         * citadel.c, commands.c, commands.h: set background color to black
2257           before clearing screen, so that we can actually see text on
2258           black-on-white xterms.
2259
2260 1998-10-29 Nathan Bryant <bryant@cs.usm.maine.edu>
2261         * rooms.c: fix color of Mail>
2262         * citadel.c: send ANSI detect sequence after attach_to_server() so the
2263           terminal doesn't send the answerback sequence to the shell if we
2264           can't connect.
2265
2266 Wed Oct 28 20:20:14 EST 1998 Art Cancro <ajc@uncensored.citadel.org
2267         * citadel.c: Added a splash of colour to the Wholist
2268
2269 1998-10-28 Nathan Bryant <bryant@cs.usm.maine.edu>
2270         * configure.in: added comments
2271         * mkinstalldirs: new file to be used for `make install'
2272         * aclocal.m4, missing: new files, also swiped from automake
2273         * citadel.c: don't mung the terminal if we can't find citadel.rc
2274         * Makefile.in: added `install' target, `clean' removes
2275           *.mo, rebuild configure when configure.in changes.
2276         * configure.in: check for install and autoconf
2277         * configure.in, Makefile.in: only pass -fPIC to gcc
2278         * policy.c: warning fix for OSF/1 (use memset() instead of bzero())
2279
2280 Tue Oct 27 22:25:42 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2281         * Unified the "unpacked database" format for both upgrades and
2282           sidegrades (also see export5.c elsewhere)
2283         * citserver.c: clear out cmdbuf before reading a command; some server
2284           commands were accidentally extracting parameters from previous cmds
2285         * rooms.c: removed the warning about the ineffectiveness of kicking
2286           users out of public rooms, because the new server can do lockouts
2287
2288 1998-10-27 Nathan Bryant <bryant@cs.usm.maine.edu>
2289         * sysdep.c (client_gets), ipc_c_tcp.c (serv_gets): improved handling
2290           of long lines. 
2291         * Makefile.in: partial support for VPATH builds, autodependency fix
2292
2293 Tue Oct 27 00:08:16 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2294         * minor documentation changes
2295
2296 Sun Oct 25 14:57:40 EST 1998 Art Cancro <ajc@uncensored.citadel.org>
2297         * messages.c: fixed an oversight that was allowing attachments even
2298           when disabled in citadel.rc
2299
2300 1998-10-25 Nathan Bryant <bryant@cs.usm.maine.edu>
2301         * routines2.c: warning fix
2302
2303 Sat Oct 24 22:07:56 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2304         * Client: added message expiration policy questions to room edit
2305         * Client: added <.A>ide <S>ystem configuration command
2306
2307 1998-10-24 Nathan Bryant <bryant@cs.usm.maine.edu>
2308         * Makefile.in: Auto dependency generation (may require GNU make, but
2309           does at least function without this feature on OSF/1 make);
2310           Makefile is regenerated when Makefile.in changes (ditto);
2311           `realclean' is now known as `distclean';
2312           portability fixes for older Unix make utilities
2313         * citadel.c, citadel.h, commands.c: make client suspendable
2314
2315 Fri Oct 23 19:34:38 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2316         * setup.c: default node name is now obtained from uname()
2317         * config.c: added put_config()
2318         * policy.c: added, moved GetExpirePolicy() from room_ops.c
2319         * policy.c: implemented cmd_gpex() and cmd_spex()
2320
2321 Wed Oct 21 22:24:48 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2322         * Mail rooms now hide their owner-prefix from the client.
2323         * proxy.c: added configurability and primitive message expiry
2324
2325 1998-10-20 Nathan Bryant <bryant@cs.usm.maine.edu>
2326         * Makefile.tmpl: fix to build client with old Configure script
2327         * configure.in: autologin defaults to enabled if crypt() is available
2328         * room_ops.c: fix improper null-termination bug I introduced
2329
2330 Mon Oct 19 20:52:55 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2331         * Client ability to force display of prompts in Mail rooms, even when
2332           the user has prompting turned off (citadel.rc option)
2333
2334 1998-10-16 Nathan Bryant <bryant@cs.usm.maine.edu>
2335         * sysdep.c (cprintf): generate a newline on truncated buffer
2336         * room_ops.c: exploitable overrun fixes
2337
2338 Thu Oct 15 19:27:32 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2339         * msgbase.c: reimplemented cmd_move()
2340           room_ops.c: wrote AddMessageToRoom() which is used for both entering
2341           and moving messages.
2342         * setup.c: system-default message expire policy of "number of
2343           messages, 150" is now a default configuration instead of a temp hack
2344         * proxy.c: cache dir create now dies on any error except EEXIST
2345
2346 Wed Oct 14 22:41:16 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2347         * Misc code cleanup
2348
2349 1998-10-13 Nathan Bryant <bryant@cs.usm.maine.edu>
2350         * configure.in: don't check for -lcrypt unless autologin is enabled
2351         * file_ops.c: fix another overrun
2352
2353 Mon Oct 12 15:27:21 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2354         * Killed the "rooms" subdirectory (it isn't used anymore)
2355         * dynloader.c: Made dynamically added server commands case-insensitive
2356         * import.c is now serv_upgrade.c, a module
2357         * Removed most of the "level 9" trace messages no longer needed
2358
2359 1998-10-12 Nathan Bryant <bryant@cs.usm.maine.edu>
2360         * Makefile.in: simplified to use pattern rules; files compiled with
2361           -D_REENTRANT go to *.ro to allow the same files to be used with both
2362           client and server
2363         * tools.c, tools.h: new files; misc routines used by both client and
2364           server go here. contains safestrncpy() at the moment.
2365         * rooms.c: fix several exploitable buffer overruns
2366         * sysdep.c: fix infinite loop when long lines are received from the
2367           client; fix exploitable buffer overrun in cprintf()
2368         * ipc_c_tcp.c: fix infinite loop on long line from server
2369         * serv_upgrade.sh: remove uncnsrd-dependent absolute path
2370         * .cvsignore: add *.ro
2371
2372 Sun Oct 11 23:17:48 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2373         * Built some more of the message expiry infrastructure
2374
2375 1998-10-11 Nathan Bryant <bryant@cs.usm.maine.edu>
2376         * citserver.c: fix two more overruns, one of which was preventing
2377           the "From Host" from showing up in the <W>ho listing.
2378
2379 Sun Oct 11 02:51:55 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2380         * Moved "struct visit" and its associated defs from citadel.h to
2381           server.h where they belong
2382         * Set up data structures for room policies (expiry, etc.)
2383
2384 1998-10-10 Nathan Bryant <bryant@cs.usm.maine.edu>
2385         * citserver.c: fix overrun which caused segv's on servers with long
2386           hostnames.
2387
2388 Fri Oct  9 18:34:06 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2389         * user_ops.c: added PurgeStaleRelationships() to do processing at
2390           session logout time to remove visits for rooms which no longer exist
2391         * user_ops.c: implemented NewMailCount()
2392
2393 1998-10-09 Nathan Bryant <bryant@cs.usm.maine.edu>
2394         * serv_chat.c: fix buffer overrun that was resulting in segv's
2395         * serv_chat.c: fix another overrun that could cause sessions to hang,
2396           and cleaned up some other strncpy()-related stuff. DON'T FORGET TO
2397           NULL-TERMINATE DESTINATION BUFFERS AFTER STRNCPY CALLS.
2398
2399 Fri Oct  9 13:22:37 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2400         * Implemented "lazy mode" traversal - pressing the space bar will do
2401           <N>ext messsage, <G>oto next room, or read <N>ew as appropriate.
2402         * room_ops.c: modify CtdlRoomAccess() to allow access to mailbox rooms
2403           only to their owners.
2404
2405 Thu Oct  8 17:13:27 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2406         * messages.c, citadel.rc: added the ability to display message numbers
2407           in the header when reading messages.  I think this is butt ugly, but
2408           some of the DaveCode afficionados seem to like it...
2409
2410 Thu Oct  8 15:34:45 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2411         * room_ops.c: Added is_noneditable() function to replace all of the
2412           duplicated code present in all functions which edit room parameters.
2413
2414 1998-10-08 Nathan Bryant <bryant@cs.usm.maine.edu>
2415         * lots of warning fixes; builds with -std1 on dec unix
2416         * aidepost.c, citadel.h, citmail.c, file_ops.c, msgbase.c, netmailer.c,
2417           netproc.c, rcit.c, server.h, stats.c, userlist.c: use time_t where
2418           needed
2419         * control.c, room_ops.c, serv_chat.c, sysdep.c: use memset() instead of
2420           bzero()
2421         * dynloader.c, dynloader.h, messages.c, server.h, sysdep.c,
2422           sysdep_decls.h: function pointer/prototyping fixes
2423         * rooms.c: use mkfifo(3) instead of system("mkfifo")
2424
2425 1998-10-07 Nathan Bryant <bryant@cs.usm.maine.edu>
2426         * snprintf.c, snprintf.h: new files
2427         * Makefile.in, configure.in, dynloader.c, sysdep.c: support for the
2428           above; citserver now builds and runs on Digital Unix 4.0d with the
2429           GNU-style configure script. there is a bug with the hostname display
2430           in the wholist.
2431         * netproc.c: sillyness fix
2432         * room_ops.h: prototype delete_room()
2433         * client_chat.c, commands.c, serv_chat.c, sysdep.c:
2434           use HAVE_SYS_SELECT_H macro
2435
2436 Mon Oct  5 17:01:32 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2437         * Began fixing the stuff I broke
2438
2439 Sun Oct  4 23:35:18 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2440         * Did the big migration to the new data structures.  Lots of stuff is
2441           now broken.  Basic moving from room to room works, but Mail is
2442           broken, and some of the administrative commands are unimplemented.
2443
2444 1998-10-02 Nathan Bryant <bryant@cs.usm.maine.edu>
2445         * configure.in: autologin now defaults to disabled
2446
2447 Fri Oct  2 00:04:31 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2448         * Finally removed all three usersupp.foo[MAXROOMS] elements, and
2449           migrated all the code that used them to use "struct visit" instead.
2450
2451 Thu Oct  1 23:02:20 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2452         * Rewrote [l][get|put]room() functions to use room names rather than
2453           room index numbers.  Temporarily prepended a "n" to these four
2454           function names until they are put to use.
2455
2456 Thu Oct  1 16:27:13 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2457         * Removed a few more references to usersupp.lastseen[]
2458
2459 1998-10-01 Nathan Bryant <bryant@cs.usm.maine.edu>
2460         * .cvsignore: add so_locations (generated by osf1 ld with shared libs)
2461         * Makefile.in: restructured variables for greater consistency, use
2462           @echo to print out notices during the make process, add so_locations
2463           to `cleaner'
2464         * configure.in, Makefile.in: configure checks for -rdynamic
2465         * ipc_c_tcp.c: fix DEC compiler warning wrt unsigned char
2466         * stats.c: add semicolon to placate DREC compiler
2467         * user_ops.c: define _POSIX_C_SOURCE, include <limits.h>
2468         * configure.in: pass -pthread to DEC compiler, don't check for
2469           libpthread[s] on DEC Unix
2470
2471 1998-09-30 Nathan Bryant <bryant@cs.usm.maine.edu>
2472         * Makefile.in: new variable PTHREAD_DEFS for portability
2473         * aidepost.c, citadel.c, citmail.c, mailinglist.c, msgform.c,
2474           netmailer.c, netpoll.c, netproc.c, rcit.c, readlog.c, setup.c,
2475           stats.c, userlist.c, whobbs.c: return type of main() is int
2476         * citadel.c, commands.c, messages.c: use time_t properly
2477         * citserver.c: include <limits.h>
2478         * config.guess, config.sub, install-sh: new files
2479         * configure.in: don't use gcc on Digital Unix
2480
2481 Tue Sep 29 23:17:34 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2482         * room_ops.c: modified usergoto() to look at the new data structures
2483           for counting new messages and such.
2484
2485 1998-09-29 Nathan Bryant <bryant@cs.usm.maine.edu>
2486         * user_ops.c: fix compiler warning and potential memory leak,
2487           include sysdep.h
2488         * configure.in, Makefile.in: only build the server if we find pthreads
2489         * Makefile.in: realclean removes config.{cache,log,status}
2490
2491 Tue Sep 29 13:20:14 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2492         * Removed code from some of the utilities which was still attempting
2493           to access the old non-gdbm data store.
2494         * housekeeping.c: rewrote check_ref_counts() to do a ForEachRoom()
2495           traversal instead of a MAXROOMS loop.
2496         * sysdep.c: set up a dummy CitContext record to be used during server
2497           startup, during which time there is no real context.
2498
2499 Mon Sep 28 23:51:51 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2500         * Implemented the function ForEachRoom() to handle all-rooms traversal
2501           (this will work with both the old and new paradigms, because both
2502           use a GDBM database with one room per record).  Migrated all room
2503           list commands to use it.
2504
2505 Mon Sep 28 22:05:35 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2506         * Implemented the function CtdlRoomAccess() to handle *all* of the
2507           user-access-to-rooms functionality.  Migrated all room list commands
2508           to use it.  Still need to migrate gotos.
2509
2510 1998-09-28 Nathan Bryant <bryant@cs.usm.maine.edu>
2511         * configure.in, acconfig.h: new files; partially functional GNU
2512           autoconf configure script. Run autoheader; autoconf; ./configure
2513           --prefix=`pwd` to test.
2514         * Makefile.tmpl: new file; this is what Makefile.in used to be. Used by
2515           Configure.
2516         * Makefile.in: modified to work with autoconf-style configure script
2517         * Configure: modified to use Makefile.tmpl and generate autoconf-style
2518           macros. Removed procfs detection. Pass -O2 to gcc, -O to other
2519           compilers. Removed mknod/mkfifo detection; code should use mkfifo(3).
2520         * citmail.c, msgform.c, netproc.c, routines.c, support.c, userlist.c,
2521           whobbs.c: use HAVE_STRERROR macro rather than NO_STRERROR
2522         * commands.c: use HAVE_TERMIOS_H macro rather than POSIX_TERMIO
2523         * netproc.c: remove procfs stuff. simply attempt to kill the target
2524           process with signal zero instead; this checks whether the process
2525           exists.
2526         * setup.c, useradmin.c: use HAVE_CURSES_H macro
2527
2528 Sun Sep 27 23:41:29 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2529         * BOTH the old and new generation systems are being written to at
2530           this point.  Code that reads stuff is still using the old system.
2531
2532 Sun Sep 27 16:10:49 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2533         * Changed all "generation" variables from char to long, in preparation
2534           for removing MAXROOMS.  Generations for new rooms are now timestamps.
2535         * Defined "struct visit" to hold user/room relationships.
2536         * Removed some #define's from citadel.h that are no longer used.
2537
2538 Wed Sep 23 13:41:49 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2539         * More changes to support attachments.  They mostly work, but only
2540           in fixed-format messages.
2541
2542 Mon Sep 21 21:19:17 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2543         * msgbase.c: began laying the groundwork to support attachments.
2544           Purchased Rogaine(tm) in preparation for expected hair loss.
2545
2546 1998-09-21 Nathan Bryant <bryant@cs.usm.maine.edu>
2547         * msgbase.c: include dynloader.h
2548         * citadelapi.h: removed
2549         * dynloader.h: prototype CtdlRegisterUserHook()
2550
2551 Sun Sep 20 18:56:37 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2552         * Added a UserFunctionHook category to implement hooks which perform
2553           operations on various users or usernames
2554
2555 Fri Sep 18 21:14:41 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2556         * citserver.c: removed cmd_extn() and related code
2557
2558 1998-09-18 Nathan Bryant <bryant@cs.usm.maine.edu>
2559         * user_ops.c: include dynloader.h
2560         * roomstats.{c,mk}: removed
2561         * Configure, Makefile.in: autodependency-related fixes
2562
2563 Thu Sep 17 22:55:29 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2564         * Various changes to allow "new messages" to work correctly with Mail
2565
2566 Thu Sep 17 22:21:45 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2567         * server.h, dynloader.c, citserver.c, user_ops.c: reduced the number
2568           of hook types by inventing an EventType field to the Session hook.
2569         * proxy.c: added pre-fetching
2570
2571 1998-09-17 Nathan Bryant <bryant@cs.usm.maine.edu>
2572         * Makefile.in: add SERV_MODULES and PROXY_TARGETS to `cleaner'
2573         * dynloader.[ch], serv_{chat,test}.[ch], sysdep.c: cleaned
2574           up the dynamic loader interface as follows:
2575           - all the symbol table stuff is gone.
2576           - modules are loaded once at server startup and never unloaded.
2577           - Added a new function CtdlRegisterProtoHook() to handle the stuff
2578             that was being done with the symbol tables.
2579           - Dynamic_Module_Init() now returns a pointer to a static struct
2580             DLModule_Info; this structure itself has been modified to use char*
2581             fields instead of fixed char arrays.
2582         * roomstats.c: include <stdarg.h> not <stdargs.h> (is this file still
2583           in use?)
2584         * Configure, Makefile.in: added autodependency support
2585
2586 Wed Sep 16 22:25:13 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2587         * Implemented separate structs, lists, and functions for each type
2588           of server-side hook available.
2589
2590 1998-09-16 Nathan Bryant <bryant@cs.usm.maine.edu>
2591         * ipc_c_tcp.c: Fixed up some #include/prototyping stuff, call memcpy()
2592           instead of bcopy()
2593         * hooks.h: removed
2594         * sysdep.c, user_ops.c: removed reference to hooks.h
2595
2596 Wed Sep 16 11:42:42 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2597         * ipc_c_tcp.c: Reversed any changes that have been made to this file,
2598           because something was causing abominally slow response time.
2599         * proxy.c: added.  This will eventually become a caching, pre-fetching
2600           multiuser proxy server for the Citadel protocol.
2601
2602 1998-09-15 Nathan Bryant <bryant@cs.usm.maine.edu>
2603         * Makefile.in: remove support.o from serv_chat.so, add -fPIC to compile
2604           flags for serv_chat.o
2605         * dynloader.c: include "sysdep_decls.h", use RTLD_NOW not RTLD_LAZY
2606         * dynloader.h: prototype CtdlRegisterHook()
2607         * .cvsignore: added data
2608
2609 Mon Sep 14 20:49:08 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2610         * Tried my hand at adding the ability for server extensions to
2611           register various types of "hooks" in addition to just adding
2612           server commands.  This is probably not final.
2613
2614 Tue Sep  8 12:11:56 EDT 1998 Brian Costello <btx@calyx.net>
2615         * Added support for dynamic server modules.  Reworked serv_chat.c
2616           to be such a module.
2617
2618 Tue Sep  1 23:09:50 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2619         * userpurge.c: rewrote using functions from the server core, rather
2620           than the now-defunct external API.  This'll be ready once the module
2621           loading code is done.  (I just had to commit _something_ tonight.)
2622
2623 Mon Aug 31 22:47:58 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2624         * Yanked the citadelapi.c module.  This wasn't working out well.
2625         * techdocs/citadelapi.txt - began documenting the new API to be used
2626           by modules which will be dynamic linked into the server - most of
2627           this API is existing server functions.
2628         * Added a ForEachUser() function with callback mechanism, and reworked
2629           cmd_list() to use it.
2630
2631 Sun Aug 30 21:52:43 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2632         * Moved all of the gdbm databases to a separate "data" directory.
2633
2634 1998-08-26 Nathan Bryant <bryant@cs.usm.maine.edu>
2635         * Makefile.in: realclean removes Makefile, fixed `touch citadel.h'
2636           problem
2637
2638 1998-08-25 Nathan Bryant <bryant@cs.usm.maine.edu>
2639         * room_ops.c: include time.h
2640         * userlist.c, whobbs.c, serv_chat.c, user_ops.c, sysdep.c, stats.c,
2641           citadel_decls.h, commands.c, messages.h, routines.h, routines2.h:
2642           remove duplicated declarations
2643
2644 Mon Aug 24 23:45:01 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2645         * setup.c: Removed yesno_s()
2646         * citadel.h, room_ops.c: added QRmtime field to struct quickroom,
2647           modified whenever a room is modified or posted in.
2648         * citadelapi.c: Added CtdlForEachRoom() function
2649
2650 Mon Aug 24 20:04:04 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
2651         * Makefile.in: new target `cleaner' does the same as `realclean' 
2652           without removing sysdep.h
2653         * proto.h: is bad. eliminate. I've moved the prototypes into several
2654           header files, one per .c file
2655
2656 Mon Aug 24 00:45:55 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2657         * Added a CtdlGotoRoom() function to the CitadelAPI.
2658  
2659 Sun Aug 23 21:47:00 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2660         * sysoputil is finally dead!  Removed it from the build.
2661         * Added userpurge.c server extension (initial implementation)
2662
2663 Tue Aug 18 00:42:33 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
2664         * Makefile.in: `clean' target no longer rm's sysdep.h; new target
2665           `realclean' removes everything clean does, plus sysdep.h, plus
2666           target binaries.
2667         * Configure: add -Wstrict-prototypes to CFLAGS for gcc systems
2668         * *.[ch]: protoized. Added several new header files containing
2669           prototypes and other external declarations; many duplicated
2670           declarations still should be moved to header files. proto.h must die
2671           as well, IMHO.
2672
2673 Mon Aug 17 23:52:13 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2674         * Implemented a bunch of user account related functions in the
2675           CitadelAPI library.
2676
2677 Mon Aug 17 20:01:18 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2678         * Fixed the crash problem.  It wasn't AGUP/ASUP, but rather a buffer
2679           overrun in getuser() (thanks, Nathan).  Implemented overrun checks
2680           in getuser(), getroom(), and getfloor() to prevent future problems.
2681
2682 Mon Aug 17 00:06:52 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2683         * Updated citmail.c with the latest stuff from the production system.
2684         * Implemented AGUP and ASUP commands, but AGUP crashes the server
2685           after its first successful use (user-not-found's don't affect it).
2686
2687 Thu Aug  6 19:25:01 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2688         * Got the CitadelAPI library to the point where the server can start
2689           up an extension, and the extension will connect to the server, do
2690           some initialization, call a user-supplied CtdlMain(), and exit.  Also
2691           hacked together a _temporary_ form of the new EXTN server command.
2692  
2693 Wed Aug  5 23:02:22 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2694         * Second attempt at getting the server API started.  Now it runs
2695           outside of the server and builds a connection.
2696
2697 Tue Aug  4 18:33:06 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2698         * Modified the appearance of Internet addresses when they arrive on
2699           a Citadel system.
2700         * Removed the <E> field from the message format writeup in hack.txt.
2701         * Fixed-up citmail.c so that it doesn't try to do database lookups.
2702
2703 Mon Aug  3 23:01:37 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2704         * Started developing the server-side API.  This is in its very
2705           initial stages.  See serverapi.c and techdoc/api.txt
2706
2707 1998-08-02  Nathan Bryant  <bryant@cs.usm.maine.edu>
2708         * Makefile.in: added config_decls.h to dependencies
2709
2710 Sun Aug  2 21:09:09 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
2711         * config_defs.h: renamed to config_decls.h
2712         * config.c, sysoputil.c: updated to reflect the above
2713
2714 Sun Aug  2 18:52:05 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
2715         * config_defs.h: new file, contains external declarations from config.c
2716         * config.c: moved defs to config_defs.h, use PATH_MAX from <limits.h>
2717           for bbs_home_directory
2718         * mailinglist.c, support.c: include <string.h>
2719         * sysoputil.c: include <string.h>, <limits.h>, "config_defs.h", remove
2720           duplicated defs, replace gets() call with fgets()
2721         * user_ops.c: define _XOPEN_SOURCE_EXTENDED
2722
2723 Sat Aug  1 18:32:52 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
2724         * ipc_c_tcp.c: fixed order of memcpy parameters after gethostbyname
2725
2726 Sun Jul 19 17:26:12 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
2727         * ChangeLog: reordered; the GNU standard is to add new entries to the
2728           top.
2729         * .cvsignore: added userlist
2730
2731 Sun Jul 12 20:58:59 EDT 1998 Art Cancro <ajc@uncensored.citadel.org>
2732         * Finished migrating everything to the new data store.
2733         * Replaced the binary "calllog" with the ASCII "citadel.log"
2734         * Began converting broken utilities that depend on the old data store
2735
2736 Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
2737         * Makefile.in: removed msgstats
2738
2739 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
2740         * Initial CVS import 
2741