]> code.citadel.org Git - citadel.git/blob - citadel/ChangeLog
* userpurge.c: rewrote using functions from the server core, rather
[citadel.git] / citadel / ChangeLog
1 Tue Sep  1 23:09:50 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
2         * userpurge.c: rewrote using functions from the server core, rather
3           than the now-defunct external API.  This'll be ready once the module
4           loading code is done.  (I just had to commit _something_ tonight.)
5
6 Mon Aug 31 22:47:58 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
7         * Yanked the citadelapi.c module.  This wasn't working out well.
8         * techdocs/citadelapi.txt - began documenting the new API to be used
9           by modules which will be dynamic linked into the server - most of
10           this API is existing server functions.
11         * Added a ForEachUser() function with callback mechanism, and reworked
12           cmd_list() to use it.
13
14 Sun Aug 30 21:52:43 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
15         * Moved all of the gdbm databases to a separate "data" directory.
16
17 1998-08-26 Nathan Bryant <bryant@cs.usm.maine.edu>
18         * Makefile.in: realclean removes Makefile, fixed `touch citadel.h'
19           problem
20
21 1998-08-25 Nathan Bryant <bryant@cs.usm.maine.edu>
22         * room_ops.c: include time.h
23         * userlist.c, whobbs.c, serv_chat.c, user_ops.c, sysdep.c, stats.c,
24           citadel_decls.h, commands.c, messages.h, routines.h, routines2.h:
25           remove duplicated declarations
26
27 Mon Aug 24 23:45:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
28         * setup.c: Removed yesno_s()
29         * citadel.h, room_ops.c: added QRmtime field to struct quickroom,
30           modified whenever a room is modified or posted in.
31         * citadelapi.c: Added CtdlForEachRoom() function
32
33 Mon Aug 24 20:04:04 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
34         * Makefile.in: new target `cleaner' does the same as `realclean' 
35           without removing sysdep.h
36         * proto.h: is bad. eliminate. I've moved the prototypes into several
37           header files, one per .c file
38
39 Mon Aug 24 00:45:55 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
40         * Added a CtdlGotoRoom() function to the CitadelAPI.
41  
42 Sun Aug 23 21:47:00 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
43         * sysoputil is finally dead!  Removed it from the build.
44         * Added userpurge.c server extension (initial implementation)
45
46 Tue Aug 18 00:42:33 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
47         * Makefile.in: `clean' target no longer rm's sysdep.h; new target
48           `realclean' removes everything clean does, plus sysdep.h, plus
49           target binaries.
50         * Configure: add -Wstrict-prototypes to CFLAGS for gcc systems
51         * *.[ch]: protoized. Added several new header files containing
52           prototypes and other external declarations; many duplicated
53           declarations still should be moved to header files. proto.h must die
54           as well, IMHO.
55
56 Mon Aug 17 23:52:13 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
57         * Implemented a bunch of user account related functions in the
58           CitadelAPI library.
59
60 Mon Aug 17 20:01:18 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
61         * Fixed the crash problem.  It wasn't AGUP/ASUP, but rather a buffer
62           overrun in getuser() (thanks, Nathan).  Implemented overrun checks
63           in getuser(), getroom(), and getfloor() to prevent future problems.
64
65 Mon Aug 17 00:06:52 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
66         * Updated citmail.c with the latest stuff from the production system.
67         * Implemented AGUP and ASUP commands, but AGUP crashes the server
68           after its first successful use (user-not-found's don't affect it).
69
70 Thu Aug  6 19:25:01 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
71         * Got the CitadelAPI library to the point where the server can start
72           up an extension, and the extension will connect to the server, do
73           some initialization, call a user-supplied CtdlMain(), and exit.  Also
74           hacked together a _temporary_ form of the new EXTN server command.
75  
76 Wed Aug  5 23:02:22 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
77         * Second attempt at getting the server API started.  Now it runs
78           outside of the server and builds a connection.
79
80 Tue Aug  4 18:33:06 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
81         * Modified the appearance of Internet addresses when they arrive on
82           a Citadel system.
83         * Removed the <E> field from the message format writeup in hack.txt.
84         * Fixed-up citmail.c so that it doesn't try to do database lookups.
85
86 Mon Aug  3 23:01:37 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
87         * Started developing the server-side API.  This is in its very
88           initial stages.  See serverapi.c and techdoc/api.txt
89
90 1998-08-02  Nathan Bryant  <bryant@cs.usm.maine.edu>
91         * Makefile.in: added config_decls.h to dependencies
92
93 Sun Aug  2 21:09:09 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
94         * config_defs.h: renamed to config_decls.h
95         * config.c, sysoputil.c: updated to reflect the above
96
97 Sun Aug  2 18:52:05 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
98         * config_defs.h: new file, contains external declarations from config.c
99         * config.c: moved defs to config_defs.h, use PATH_MAX from <limits.h>
100           for bbs_home_directory
101         * mailinglist.c, support.c: include <string.h>
102         * sysoputil.c: include <string.h>, <limits.h>, "config_defs.h", remove
103           duplicated defs, replace gets() call with fgets()
104         * user_ops.c: define _XOPEN_SOURCE_EXTENDED
105
106 Sat Aug  1 18:32:52 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
107         * ipc_c_tcp.c: fixed order of memcpy parameters after gethostbyname
108
109 Sun Jul 19 17:26:12 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
110         * ChangeLog: reordered; the GNU standard is to add new entries to the
111           top.
112         * .cvsignore: added userlist
113
114 Sun Jul 12 20:58:59 EDT 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
115         * Finished migrating everything to the new data store.
116         * Replaced the binary "calllog" with the ASCII "citadel.log"
117         * Began converting broken utilities that depend on the old data store
118
119 Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
120         * Makefile.in: removed msgstats
121
122 Fri Jul 10 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
123         * Initial CVS import