]> code.citadel.org Git - citadel.git/blob - citadel/ChangeLog
Fixed stuff I broke.
[citadel.git] / citadel / ChangeLog
1 Mon Oct  5 17:01:32 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
2         * Began fixing the stuff I broke
3
4 Sun Oct  4 23:35:18 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
5         * Did the big migration to the new data structures.  Lots of stuff is
6           now broken.  Basic moving from room to room works, but Mail is
7           broken, and some of the administrative commands are unimplemented.
8
9 1998-10-02 Nathan Bryant <bryant@cs.usm.maine.edu>
10         * configure.in: autologin now defaults to disabled
11
12 Fri Oct  2 00:04:31 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
13         * Finally removed all three usersupp.foo[MAXROOMS] elements, and
14           migrated all the code that used them to use "struct visit" instead.
15
16 Thu Oct  1 23:02:20 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
17         * Rewrote [l][get|put]room() functions to use room names rather than
18           room index numbers.  Temporarily prepended a "n" to these four
19           function names until they are put to use.
20
21 Thu Oct  1 16:27:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
22         * Removed a few more references to usersupp.lastseen[]
23
24 1998-10-01 Nathan Bryant <bryant@cs.usm.maine.edu>
25         * .cvsignore: add so_locations (generated by osf1 ld with shared libs)
26         * Makefile.in: restructured variables for greater consistency, use
27           @echo to print out notices during the make process, add so_locations
28           to `cleaner'
29         * configure.in, Makefile.in: configure checks for -rdynamic
30         * ipc_c_tcp.c: fix DEC compiler warning wrt unsigned char
31         * stats.c: add semicolon to placate DREC compiler
32         * user_ops.c: define _POSIX_C_SOURCE, include <limits.h>
33         * configure.in: pass -pthread to DEC compiler, don't check for
34           libpthread[s] on DEC Unix
35
36 1998-09-30 Nathan Bryant <bryant@cs.usm.maine.edu>
37         * Makefile.in: new variable PTHREAD_DEFS for portability
38         * aidepost.c, citadel.c, citmail.c, mailinglist.c, msgform.c,
39           netmailer.c, netpoll.c, netproc.c, rcit.c, readlog.c, setup.c,
40           stats.c, userlist.c, whobbs.c: return type of main() is int
41         * citadel.c, commands.c, messages.c: use time_t properly
42         * citserver.c: include <limits.h>
43         * config.guess, config.sub, install-sh: new files
44         * configure.in: don't use gcc on Digital Unix
45
46 Tue Sep 29 23:17:34 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
47         * room_ops.c: modified usergoto() to look at the new data structures
48           for counting new messages and such.
49
50 1998-09-29 Nathan Bryant <bryant@cs.usm.maine.edu>
51         * user_ops.c: fix compiler warning and potential memory leak,
52           include sysdep.h
53         * configure.in, Makefile.in: only build the server if we find pthreads
54         * Makefile.in: realclean removes config.{cache,log,status}
55
56 Tue Sep 29 13:20:14 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
57         * Removed code from some of the utilities which was still attempting
58           to access the old non-gdbm data store.
59         * housekeeping.c: rewrote check_ref_counts() to do a ForEachRoom()
60           traversal instead of a MAXROOMS loop.
61         * sysdep.c: set up a dummy CitContext record to be used during server
62           startup, during which time there is no real context.
63
64 Mon Sep 28 23:51:51 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
65         * Implemented the function ForEachRoom() to handle all-rooms traversal
66           (this will work with both the old and new paradigms, because both
67           use a GDBM database with one room per record).  Migrated all room
68           list commands to use it.
69
70 Mon Sep 28 22:05:35 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
71         * Implemented the function CtdlRoomAccess() to handle *all* of the
72           user-access-to-rooms functionality.  Migrated all room list commands
73           to use it.  Still need to migrate gotos.
74
75 1998-09-28 Nathan Bryant <bryant@cs.usm.maine.edu>
76         * configure.in, acconfig.h: new files; partially functional GNU
77           autoconf configure script. Run autoheader; autoconf; ./configure
78           --prefix=`pwd` to test.
79         * Makefile.tmpl: new file; this is what Makefile.in used to be. Used by
80           Configure.
81         * Makefile.in: modified to work with autoconf-style configure script
82         * Configure: modified to use Makefile.tmpl and generate autoconf-style
83           macros. Removed procfs detection. Pass -O2 to gcc, -O to other
84           compilers. Removed mknod/mkfifo detection; code should use mkfifo(3).
85         * citmail.c, msgform.c, netproc.c, routines.c, support.c, userlist.c,
86           whobbs.c: use HAVE_STRERROR macro rather than NO_STRERROR
87         * commands.c: use HAVE_TERMIOS_H macro rather than POSIX_TERMIO
88         * netproc.c: remove procfs stuff. simply attempt to kill the target
89           process with signal zero instead; this checks whether the process
90           exists.
91         * setup.c, useradmin.c: use HAVE_CURSES_H macro
92
93 Sun Sep 27 23:41:29 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
94         * BOTH the old and new generation systems are being written to at
95           this point.  Code that reads stuff is still using the old system.
96
97 Sun Sep 27 16:10:49 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
98         * Changed all "generation" variables from char to long, in preparation
99           for removing MAXROOMS.  Generations for new rooms are now timestamps.
100         * Defined "struct visit" to hold user/room relationships.
101         * Removed some #define's from citadel.h that are no longer used.
102
103 Wed Sep 23 13:41:49 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
104         * More changes to support attachments.  They mostly work, but only
105           in fixed-format messages.
106
107 Mon Sep 21 21:19:17 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
108         * msgbase.c: began laying the groundwork to support attachments.
109           Purchased Rogaine(tm) in preparation for expected hair loss.
110
111 1998-09-21 Nathan Bryant <bryant@cs.usm.maine.edu>
112         * msgbase.c: include dynloader.h
113         * citadelapi.h: removed
114         * dynloader.h: prototype CtdlRegisterUserHook()
115
116 Sun Sep 20 18:56:37 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
117         * Added a UserFunctionHook category to implement hooks which perform
118           operations on various users or usernames
119
120 Fri Sep 18 21:14:41 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
121         * citserver.c: removed cmd_extn() and related code
122
123 1998-09-18 Nathan Bryant <bryant@cs.usm.maine.edu>
124         * user_ops.c: include dynloader.h
125         * roomstats.{c,mk}: removed
126         * Configure, Makefile.in: autodependency-related fixes
127
128 Thu Sep 17 22:55:29 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
129         * Various changes to allow "new messages" to work correctly with Mail
130
131 Thu Sep 17 22:21:45 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
132         * server.h, dynloader.c, citserver.c, user_ops.c: reduced the number
133           of hook types by inventing an EventType field to the Session hook.
134         * proxy.c: added pre-fetching
135
136 1998-09-17 Nathan Bryant <bryant@cs.usm.maine.edu>
137         * Makefile.in: add SERV_MODULES and PROXY_TARGETS to `cleaner'
138         * dynloader.[ch], serv_{chat,test}.[ch], sysdep.c: cleaned
139           up the dynamic loader interface as follows:
140           - all the symbol table stuff is gone.
141           - modules are loaded once at server startup and never unloaded.
142           - Added a new function CtdlRegisterProtoHook() to handle the stuff
143             that was being done with the symbol tables.
144           - Dynamic_Module_Init() now returns a pointer to a static struct
145             DLModule_Info; this structure itself has been modified to use char*
146             fields instead of fixed char arrays.
147         * roomstats.c: include <stdarg.h> not <stdargs.h> (is this file still
148           in use?)
149         * Configure, Makefile.in: added autodependency support
150
151 Wed Sep 16 22:25:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
152         * Implemented separate structs, lists, and functions for each type
153           of server-side hook available.
154
155 1998-09-16 Nathan Bryant <bryant@cs.usm.maine.edu>
156         * ipc_c_tcp.c: Fixed up some #include/prototyping stuff, call memcpy()
157           instead of bcopy()
158         * hooks.h: removed
159         * sysdep.c, user_ops.c: removed reference to hooks.h
160
161 Wed Sep 16 11:42:42 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
162         * ipc_c_tcp.c: Reversed any changes that have been made to this file,
163           because something was causing abominally slow response time.
164         * proxy.c: added.  This will eventually become a caching, pre-fetching
165           multiuser proxy server for the Citadel protocol.
166
167 1998-09-15 Nathan Bryant <bryant@cs.usm.maine.edu>
168         * Makefile.in: remove support.o from serv_chat.so, add -fPIC to compile
169           flags for serv_chat.o
170         * dynloader.c: include "sysdep_decls.h", use RTLD_NOW not RTLD_LAZY
171         * dynloader.h: prototype CtdlRegisterHook()
172         * .cvsignore: added data
173
174 Mon Sep 14 20:49:08 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
175         * Tried my hand at adding the ability for server extensions to
176           register various types of "hooks" in addition to just adding
177           server commands.  This is probably not final.
178
179 Tue Sep  8 12:11:56 EDT 1998 Brian Costello <btx@calyx.net>
180         * Added support for dynamic server modules.  Reworked serv_chat.c
181           to be such a module.
182
183 Tue Sep  1 23:09:50 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
184         * userpurge.c: rewrote using functions from the server core, rather
185           than the now-defunct external API.  This'll be ready once the module
186           loading code is done.  (I just had to commit _something_ tonight.)
187
188 Mon Aug 31 22:47:58 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
189         * Yanked the citadelapi.c module.  This wasn't working out well.
190         * techdocs/citadelapi.txt - began documenting the new API to be used
191           by modules which will be dynamic linked into the server - most of
192           this API is existing server functions.
193         * Added a ForEachUser() function with callback mechanism, and reworked
194           cmd_list() to use it.
195
196 Sun Aug 30 21:52:43 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
197         * Moved all of the gdbm databases to a separate "data" directory.
198
199 1998-08-26 Nathan Bryant <bryant@cs.usm.maine.edu>
200         * Makefile.in: realclean removes Makefile, fixed `touch citadel.h'
201           problem
202
203 1998-08-25 Nathan Bryant <bryant@cs.usm.maine.edu>
204         * room_ops.c: include time.h
205         * userlist.c, whobbs.c, serv_chat.c, user_ops.c, sysdep.c, stats.c,
206           citadel_decls.h, commands.c, messages.h, routines.h, routines2.h:
207           remove duplicated declarations
208
209 Mon Aug 24 23:45:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
210         * setup.c: Removed yesno_s()
211         * citadel.h, room_ops.c: added QRmtime field to struct quickroom,
212           modified whenever a room is modified or posted in.
213         * citadelapi.c: Added CtdlForEachRoom() function
214
215 Mon Aug 24 20:04:04 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
216         * Makefile.in: new target `cleaner' does the same as `realclean' 
217           without removing sysdep.h
218         * proto.h: is bad. eliminate. I've moved the prototypes into several
219           header files, one per .c file
220
221 Mon Aug 24 00:45:55 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
222         * Added a CtdlGotoRoom() function to the CitadelAPI.
223  
224 Sun Aug 23 21:47:00 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
225         * sysoputil is finally dead!  Removed it from the build.
226         * Added userpurge.c server extension (initial implementation)
227
228 Tue Aug 18 00:42:33 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
229         * Makefile.in: `clean' target no longer rm's sysdep.h; new target
230           `realclean' removes everything clean does, plus sysdep.h, plus
231           target binaries.
232         * Configure: add -Wstrict-prototypes to CFLAGS for gcc systems
233         * *.[ch]: protoized. Added several new header files containing
234           prototypes and other external declarations; many duplicated
235           declarations still should be moved to header files. proto.h must die
236           as well, IMHO.
237
238 Mon Aug 17 23:52:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
239         * Implemented a bunch of user account related functions in the
240           CitadelAPI library.
241
242 Mon Aug 17 20:01:18 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
243         * Fixed the crash problem.  It wasn't AGUP/ASUP, but rather a buffer
244           overrun in getuser() (thanks, Nathan).  Implemented overrun checks
245           in getuser(), getroom(), and getfloor() to prevent future problems.
246
247 Mon Aug 17 00:06:52 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
248         * Updated citmail.c with the latest stuff from the production system.
249         * Implemented AGUP and ASUP commands, but AGUP crashes the server
250           after its first successful use (user-not-found's don't affect it).
251
252 Thu Aug  6 19:25:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
253         * Got the CitadelAPI library to the point where the server can start
254           up an extension, and the extension will connect to the server, do
255           some initialization, call a user-supplied CtdlMain(), and exit.  Also
256           hacked together a _temporary_ form of the new EXTN server command.
257  
258 Wed Aug  5 23:02:22 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
259         * Second attempt at getting the server API started.  Now it runs
260           outside of the server and builds a connection.
261
262 Tue Aug  4 18:33:06 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
263         * Modified the appearance of Internet addresses when they arrive on
264           a Citadel system.
265         * Removed the <E> field from the message format writeup in hack.txt.
266         * Fixed-up citmail.c so that it doesn't try to do database lookups.
267
268 Mon Aug  3 23:01:37 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
269         * Started developing the server-side API.  This is in its very
270           initial stages.  See serverapi.c and techdoc/api.txt
271
272 1998-08-02  Nathan Bryant  <bryant@cs.usm.maine.edu>
273         * Makefile.in: added config_decls.h to dependencies
274
275 Sun Aug  2 21:09:09 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
276         * config_defs.h: renamed to config_decls.h
277         * config.c, sysoputil.c: updated to reflect the above
278
279 Sun Aug  2 18:52:05 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
280         * config_defs.h: new file, contains external declarations from config.c
281         * config.c: moved defs to config_defs.h, use PATH_MAX from <limits.h>
282           for bbs_home_directory
283         * mailinglist.c, support.c: include <string.h>
284         * sysoputil.c: include <string.h>, <limits.h>, "config_defs.h", remove
285           duplicated defs, replace gets() call with fgets()
286         * user_ops.c: define _XOPEN_SOURCE_EXTENDED
287
288 Sat Aug  1 18:32:52 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
289         * ipc_c_tcp.c: fixed order of memcpy parameters after gethostbyname
290
291 Sun Jul 19 17:26:12 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
292         * ChangeLog: reordered; the GNU standard is to add new entries to the
293           top.
294         * .cvsignore: added userlist
295
296 Sun Jul 12 20:58:59 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
297         * Finished migrating everything to the new data store.
298         * Replaced the binary "calllog" with the ASCII "citadel.log"
299         * Began converting broken utilities that depend on the old data store
300
301 Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
302         * Makefile.in: removed msgstats
303
304 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
305         * Initial CVS import