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