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