source: doc/CHANGES @ f1df064

Last change on this file since f1df064 was 027d2eb, checked in by Wilmer van der Gaast <wilmer@…>, at 2005-12-02T11:43:47Z

Modified CHANGES, and extended the allowed port range a bit.

  • Property mode set to 100644
File size: 25.7 KB
Line 
1Version 1.0:
2- Removed some crashy debugging code.
3- QUIT command now works before logging in. (Mainly an RFC-compliancy fix.)
4- Hopefully slightly clearer handling of buddy add requests.
5- set buddy_sendbuffer_delay now also supports milisecond precision.
6- Renamed #bitlbee to &bitlbee to avoid confusion with the channel on OFTC.
7- Reviewed the xinetd file and installation instructions.
8- HTML stripping is configurable again.
9- Quit messages (at least on crashes) should appear again.
10- Cleaned up some unnecessary code in the Jabber module, and implemented
11  handlers for headline messages (which allows you to use RSS-to-Jabber
12  gateways).
13- Lowered the line splitting limit a bit to fix data loss issues.
14- The $proto($handle) format used for messages specific to one IM-connection
15  now only include the ($handle) part when there's more than one $proto-
16  connection.
17- Fix for a crash-bug on broken Jabber/SSL connections.
18- Incoming typing notifications now also come in as CTCP TYPING messages, for
19  better consistency. Don't forget to update your scripts!
20- AIM typing notifications are supported now.
21- Jabber module only accepts ports 5220-5229 now, to prevent people from
22  abusing it as a port scanner. We aren't aware of any Jabber server that
23  runs on other ports than those. If you are, please warn us.
24
25Finished ...
26
27Version 0.99:
28- Fixed memory initialization bug in OSCAR module that caused crashes on
29  closing the connection.
30- Most likely fixed the bug that caused BitlBee to use 100% CPU time in
31  some situations.
32- Outgoing MSN typing notifications are now understood correctly by the
33  orignal MS Mac/Windows clients (again).
34- Added "account add $protocol" to the documentation, got rid of a lot
35  of over-markup (i.e. overuse of bold-tags), reviewed some other parts.
36- Small changes to help.xsl to fix small flaws in the help.txt formatting.
37- Messaging yourself now doesn't make irssi or mIRC crash anymore.
38
39Finished 3 Nov 2005
40
41Version 0.93:
42- &quot; is now correctly converted to " instead of '.
43- Code cleanup in OSCAR module.
44- Some changes for better RFC-compliancy.
45- It's now possible to specify an alternate Jabber server.
46- bitlbee_save() now also checks the return value of fclose(), which might
47  solve more problems with lost account data.
48- Fixed a file descriptor leak in bitlbee.c.
49- Signedness fixes (mainly to keep GCC4 happy).
50- Away messages are now sent correctly to most ICQ clients.
51- BitlBee knows now which connection sends HTML, so it will strip HTML
52  automatically, "set html strip" is no longer necessary. Also, outgoing HTML
53  is escaped correctly.
54- info-command works for AIM-connections too now.
55- /notices to users will be sent as auto-away replies.
56- Messages about a connection now also mention a handle, for people who have
57  multiple accounts in use of the same protocol.
58- Examples are back in help.txt.
59
60Finished 31 Oct 2005
61
62Version 0.92:
63- Fixed some formatting issues with the help.txt XSL-sheet.
64- Moved the polling of the IRC connections to glib instead of a separate
65  select().
66- Added ctags generation to the Makefiles.
67- Sending a CTCP TYPING message to a user in your buddy list now sends a
68  typing notification to that person, if the protocol supports it. You
69  probably want to write/use a script for your IRC client to do this.
70- A dash is no longer considered a lowercase underscore in nicknames.
71- CTCP's to buddies no longer alter their private/non-private state.
72- Clean shutdown (with saving settings) on SIGTERM.
73- Fixed a crash on connecting to unreachable Jabber/SSL servers.
74- On ICQ, offline messages are now requested after receiving the buddy
75  list. This should get rid of the "Message from unknown OSCAR handle"
76  messages on login.
77- The linked list of buddies/nicks is now always sorted, which makes the
78  blist output a bit more useful.
79- Fixed a crash on renaming NickServ. (There's no reason to do this, but
80  still crashing isn't really how BitlBee should tell you that. ;-)
81- Now the message about the "new" ICQ server-side buddy lists is only
82  displayed when the server-side list is still empty.
83- The Yahoo! markup language stripper is now less likely to strip things
84  that shouldn't be stripped.
85- Working around a shortcoming in the Yahoo! cleanup code that didn't
86  cause any serious problems in previous versions, but got pretty nasty
87  (100% CPU time usage) now with everything in the glib main loop.
88- Fixed a bug in http_encode that might have caused buffer overflows
89  (although not likely to be exploitable) when trying to encode strings
90  with non-ASCII characters.
91- Fixed AIM screenname handling on ICQ connections.
92- When blocking someone, the MSN module now closes the conversation you're
93  having with him/her (if any) so he/she can't continue talking to you
94  (for as long as the conversation lasts).
95- Away messages are only sent when messaging someone outside the control
96  channel. (And now also when the user is offline instead of just away.)
97- Moved charset conversion in serv_buddy_rename() to the right place so
98  bogus changes are always detected now.
99- iso8859-1 is now the default charset because -15 caused some problems
100  and because -1 is enough for most people anyway.
101- Fixed crashes on attempting to add a buddy (or do other things) on
102  connections that are still initializing.
103- Added support for server-side notifies using the WATCH command.
104- IRC_MAX_ARGS is dead, at least for IRC commands.
105- Fixed a bug that made BitlBee crash on failing fresh MSN switchboard
106  connections.
107- Fixed an invisibility bug in the MSN code that handled transfers to
108  other servers in the middle of a session.
109- Newline stripping added to prevent newline-in-friendlyname attacks.
110  (Which allowed remote people to make BitlBee send raw custom IRC lines.)
111
112Finished 23 Feb 2005
113
114Version 0.91:
115- Full support for ICQ server-side contact lists!
116  NOTE: BitlBee now ignores your client-side contact list. If you want to
117        import your ICQ contact list, use the import_buddies command.
118- Added the import_buddies command for upgrading purposes.
119- Added support for OpenSSL.
120- Fixed one major problem with the daemon mode by getting rid of the global
121  IRC structure.
122- Documentation fixes. help.txt is now generated from XML. Also updated the
123  installation manual.
124- Made the quickstart up-to-date. (By Elizabeth Krumbach)
125- Some bitlbeed additions. (By Marcus Dennis)
126- info-command support for Jabber, MSN, Yahoo! and a more verbose info-reply
127  for ICQ. (By Frank Thieme)
128- Support for Jabber over SSL.
129- nick_get() appends a _ on duplicates instead of chopping off the last
130  character.
131- Got rid of an unused piece of code that caused crashes.
132  (oscar.c:gaim_parse_clientauto)
133- When splitting long messages into 450-char chunks, BitlBee now tries not
134  to cut off in the middle of a line.
135- Added a warning when the user specifies an unknown OSCAR server.
136- Removed GLib 2.x dependency, BitlBee will work with GLib 1.x again.
137- Improved strip_html(), now less likely to strip non-HTML things.
138- An invalid account-command will now display an error message.
139- Fixed a bug that caused crashes when /CTCP'ing a groupchat channel.
140- Hopefully better Unicode/non-ASCII support for ICQ.
141- Fixed MSN connection crash on non-ASCII characters in screenname.
142- Added some missing charset conversion calls. (serv_got_crap,
143  serv_buddy_rename)
144- "account off" without extra arguments now logs off all connections.
145- Fixed a crash-bug on disconnecting Yahoo! connections before they're fully
146  connected.
147- Fixed a bug in helpfile handling which sometimes caused crashes in daemon
148  mode.
149- block and allow commands work with just a nick as an argument again.
150- Working around a crash on some probably invalid Yahoo! packets.
151- Fixed a possible double free() on shutdown in irc_free().
152- Talking to ICQ people on AIM and vice versa and talking to people with
153  @mac.com accounts now possible.
154- Low ASCII chars are now stripped from away-messages so the Jabber module
155  won't barf on BitchX and lame-script away messages anymore.
156
157Finished 25 Sep 2004
158
159Version 0.90a:
160- Fixed the Yahoo! authentication code.
161
162Finished 28 Jun 2004
163
164Version 0.90:
165- A complete rewrite of the MSN module. This gives BitlBee the following
166  new features/improvements:
167  * You can now start groupchats with MSN people without having to send them
168    a bogus message first.
169  * People who are in your MSN block/allow list, but not in your contact
170    list, shouldn't show up in your BitlBee buddy lists anymore.
171  * Passport authentication shouldn't lock up the whole program for a couple
172    of seconds anymore. Additionally, it should also work behind proxies now.
173  * Better recognition of incoming file transfers; they're now recognized
174    when coming from non-English MS Messenger clients too.
175  * Fixed a problem with MSN passwords with non-alphanumeric characters.
176  * Mail notification support (also for Yahoo!)...
177  * Parsing of maintenance messages (ie "Server is going down in x minutes").
178  * Hopefully more stability.
179- Changes in the OSCAR module:
180  * Better reading of ICQ-away-states.
181  * Lots of cleanups.
182- Yahoo! module:
183  * Fixed authentication on 64-bit machines. (Patch from Matt Rogers)
184  * Better stripping of markup tags.
185- Lots of cleanup in all IM-modules.
186- Added support for using libnss instead of libgnutls.
187- Reverse hostname lookups work on IPv6 sockets too now. (And don't crash
188  the program anymore.)
189- Fixed a little problem with identifying right after registering a nick.
190- Restored complete proxy support and added a proxy setting to the conffile.
191- BitlBee can now tell you when people in your buddy list change their
192  "friendly name".
193- Instead of an account number, you can also specify the protocol name or
194  (part of) the username as an account identification with commands like
195  "account on", "add", etc.
196- BitlBee remembers what connection a question (i.e. authorization request)
197  belongs to and cleans it up when the connection goes down; this fixes
198  (one of) the last known crash bugs.
199- Plus some other changes in question management. (The query_order setting
200  is one of them. The default behaviour changed a bit, for more information
201  please read "help set query_order".)
202- Also fixed a memory management bug in the question code which caused some
203  crashes.
204- Optimized some nick handling functions and added a hash of all the users
205  to speed up user_find() a bit (especially good for people with large
206  buddy and notify lists).
207- Lots of changes for the Win32 port (see http://jelmer.vernstok.nl/).
208- Added the drop-command.
209- Fixed small problem with versions of sed which don't support the +
210  "operator" (the BSD version, for example, even though the operator is
211  documented properly in the re_format manpage...).
212- Added the default_target setting.
213- Added a CenterICQ2BitlBee conversion script.
214- Put back the evaluator for "set charset" (which got lost somewhere between
215  0.84 and 0.85), so an incorrect charset will be rejected again.
216- ISON now (A) gives one single reply and (B) also replies when none of the
217  persons asked for are on-line.
218- Using GConv instead of iconv now.
219- Incoming messages larger than 450 characters are now split into parts
220  before sending them to the user.
221- Fixed a bug in irc_exec() which could crash the program when some commands
222  were called with too little arguments.
223- Fixed a dumb NULL pointer dereference in the JOIN command.
224- Added rate limiting to bitlbeed. (Against server hammering)
225- Added handling of CTCP PINGs (yet another self-ping used by some IRC
226  clients...)
227- Added bitlbee_tab_completion.pl.
228- Removed the vCard handling code from Jabber because it's (A) not used and
229  (B) had a possible format string vulnerability.
230- Got rid of strcpy() in account.c. (Thanks to NETRIC for reporting these two
231  problems.)
232- ISO8859-15 is now the default charset.
233
234Finished 21 May 2004
235
236Version 0.85a:
237- Fixed an authentication problem with logging into some MSN accounts.
238- Removed a non-critical warning message from the ICQ servers when logging
239  in with an empty contact list.
240- Fixed reading the [defaults] section of bitlbee.conf.
241- The last newline in outgoing messages when using the buddy_sendbuffer is
242  now removed correctly.
243- Yahoo! colour/font tag stripping now actually works.
244- Fixed compilation on *BSD and some Linux architectures.
245
246Finished 24 Mar 2004
247
248Version 0.85:
249- Users can specify alternate configuration files/directories at runtime
250  now.
251- Rename now doesn't choke on name changes with only case changes anymore.
252- Imported the daemon patch into the main source tree. The daemon mode is
253  still experimental, this just eases maintenance. This daemon patch brings
254  a lot of features, including (as the name says) a real daemon mode and
255  also buffering of the data sent to the user, and flood protection.
256- Strips font and colour codes from Yahoo! messages.
257- Support for groupchats on Yahoo!
258- Fixed removing Yahoo! buddies from a different group than "Buddies".
259- Jabber presence packets with error messages are interpreted correctly now.
260  (They used to be parsed as a signin.)
261- bitlbee_save() checks return values from fprintf() and writes to tempfiles
262  first to make sure no old files get lost when there's a write error.
263- ICQ buddies are added all at once instead of once at a time. This should
264  solve problems with huge buddy lists.
265- Made the client pinging timings configurable. (Without requiring
266  recompilation)
267- MSN and Yahoo flag the connection as "wants_to_die" when they're logged
268  off because of a concurrent login. This means reconnection will be disabled
269  on concurrent logins.
270- BitlBee can now buffer the messages sent to someone before they're actually
271  sent, and wait for a specified number of seconds for more lines to be added
272  to the buffer before the message will really be sent.
273- Renamed the reconnect_delay setting to auto_reconnect_delay.
274- Unknown settings aren't saved anymore.
275
276Finished 13 Mar 2004
277
278Version 0.84:
279- Removed the libsoup dependency.
280- Fixed AuthMode=Registered: It will now restore your accounts when
281  identifying.
282- Fixed Yahoo! support.
283- Fixed a little memory leak in user.c.
284- Fixed a security bug in unused code in proxy.c, only people who use
285  the HTTP proxy support and an untrusted proxy might need this. We
286  haven't done an emergency release for this fix because proxy support
287  is disabled by default.
288- Fixed some memory leaks in IM-code.
289
290Finished 13 Feb 2004
291
292Version 0.83:
293- Fixed a crash bug on connecting to unsupported accounts.
294- Fixed a problem with connecting to MSN accounts with empty buddy
295  lists.
296- Fixed another inifite-loop bug in nick_get() and added a piece
297  of code which detects the infinite loop and asks the user to send
298  a bug report.
299- Fixed iconv-Solaris linking issues.
300- Fixed all the problems with spaces in AIM screennames now, we hope.
301- Fixed a buffer overflow in the nick handling code. Buffers are
302  overflowed with static data (nulls), so we don't think it's exploitable.
303- Added server-client pinging, useful for remote servers.
304- Added the hostname setting.
305- Some bitlbeed changes.
306- Added a little part to the on-line quickstart about the settings and
307  other help topics, this hopefully answers a lot of FAQ's.
308- Fixed the signal handler to re-raise the signal after the handler quits.
309  This makes sure the default handler is called after our handler sends
310  the user a bye-message, so core dumps are created and the parent will
311  get more useful information back from wait().
312- Added support for ICQ URL messages.
313- Fixed strip_html() behaviour on unknown &entities;.
314- Fixed a possible problem with Yahoo!
315- Fixed a problem with logging into more than one MSN account at once.
316
317Finished 31 Dec 2003
318
319Version 0.82:
320- Fixed a little bug in nick.c which could cause a complete hang for
321  some tricky buddylists. (Thanks to Geert Hauwaerts for helping with
322  fixing this bug)
323- Fixed MSN support. (Lots of thanks to Wouter Paesen!)
324- Removed the old login/logout commands.
325- Added the qlist command.
326- Fixed a buffer overflow in the nick checking code. (Thanks to Jon
327  Åslund for pointing us at this problem)
328- Adds the add_private and add_channel options for set handle_unknown.
329- Some documentation updates.
330- Added two small utilities to encode/decode BitlCrypted files.
331
332Finished 31 Oct 2003
333
334Version 0.81a:
335- This version just fixes some small things we should've fixed before
336  releasing 0.81:
337- Fixed a small bug in the auto-reconnect cleanup code.
338- Fixed the Makefile: Now it doesn't just overwrite your etc files when
339  installing.
340- Fixed the Makefile: $prefix/etc/bitlbee/ is the default etcdir now.
341- Disabling MSN by default, now that it doesn't work. It'll be back on
342  as soon as we get the module working again.
343
344Finished 16 Oct 2003
345
346Version 0.81:
347- Added a configuration file.
348- Added support for the PASS command to restrict access to the daemon to
349  only the people who know this password.
350- Only allowing registered people to use the daemon is possible too.
351- In case you, at some time, need to check the currently running BitlBee
352  version, just CTCP-VERSION someone in the channel.
353- Added the auto_connect setting for people who don't want the program
354  to connect to IM-networks automatically.
355- Extended the blist command.
356- Applied the auto-reconnect patch from G-Lite.
357- Applied the iconv patch from Yuri Pimenov.
358- Imported the MSN-friendlyname patch from Wouter Paesen.
359- Away-message aliasing code now just parses the beginning of the string,
360  not the whole string. This allows you to have a more descriptive away
361  message like "Busy - Fixing bugs in BitlBee" and all the IM connections
362  will have a busy-like away-state.
363- Added some information about away states to the help system.
364- MSN file transfers aren't silently ignored anymore.
365- Integrated the Yahoo protocol fix from Cerulean Studios (Trillian).
366  (Thanks to Tony Perrie!)
367- Made all protocol plugins optional. (Patch from Andrej Kacian/Ticho)
368
369Finished 15 Oct 2003
370
371Version 0.80:
372- Fixed a very stupid bug in the MSN away-state reading.
373- nick_cmp() now actually works, RFC-compliant.
374- Fixed and cleaned up the away-state handling, there were some very
375  weird things in the original Gaim code base which broke this completely
376  all the time.
377- The daemon prevents you from using root/NickServ as your nick now,
378  previous versions crashed on that.
379- At last ... GROUP CHAT SUPPORT! :-D
380- People who are *not* away get mode +v in #bitlbee now, so you can see
381  in /names who's away and who's not.
382- Crashing BitlBee by using the NICKSERV command without any arguments
383  is impossible now.
384- Added some notes about Darwin/OSX portability.
385- Separated connections from accounts. This means restoring a lost
386  connection can be done using a simple "account on <number>" command.
387  See "help account" for more information.
388  *** For now this won't cause problems when upgrading because the login
389  command still exists (as an alias for "account add"). This alias will
390  not stay forever, though.
391- irc_process() now makes sure it reads the whole available buffer before
392  executing the commands. Previous versions were very bad at handling
393  long floods from non-floodprotected clients. The code is still not
394  perfect, but good enough for local links.
395- Allow/Deny questions from msn.c now also mention your own screenname.
396  This is useful for people who run two (or even more) MSN accounts in
397  one BitlBee.
398- Fixed a little bug in the helpfile-changed-check code.
399- A little trick in "make install" makes sure the help function in running
400  sessions doesn't break while upgrading.
401- Added a nifty (and editable) MOTD.
402- Added IRIX to the compatibility list.
403- Added support for Cygwin.
404- Better HTML-stripping, it also handles &entities; correctly now.
405- Fixed some problems to make it compile on Solaris.
406- Added support for messages from Miranda/Mac ICQ. (Code port from Gaim 0.59)
407- Fixed the crash problem when removing yahoo buddies.
408- Added the handle_unknown setting.
409- Did some editing on a few docs.
410- Added a FAQ.
411- Added the daemon-patch by Maurits Dijkstra which adds stand-alone daemon
412  support to BitlBee.
413- Jabber now doesn't barf on high ASCII characters in away messages anymore.
414  (Thanks to Christian Häggström <chm@c00.info>)
415
416Finished 24 Jun 2003
417
418Version 0.74a:
419- The music-festivals-are-bad-for-your-mind release.
420- This one actually contains the fix for the bug 0.74 claimed to have.
421
422Finished 11 Jun 2003
423
424Version 0.74:
425- Fixed a security leak, where using a / in the nickname causes the saved
426  settings and account information to be stored in undesirable places.
427
428Finished 10 Jun 2003
429
430Version 0.73:
431- Fixed the unable-to-remove-icq-users (actually users from any *local*
432  contact list) bug.
433- Fixed away bug in aim protocol.
434- Fixed the 'statistics' under the blist command output.
435- Removed the commands from the XML documentation because they're 'on-line'
436  already.
437- Added some signal handling; ignoring SIGPIPE should als get rid of some
438  crashes (for some weird reason this has to be done). Also, crashes because
439  of things like segfaults are a bit more verbose now. ;-)
440- Changed the select() timeout in main(), this might improve some latencies.
441  (At leasts it speeds up signing on (especially for ICQ) a lot!)
442- Made the own-QUIT messages more compliant, probably.
443- Fixed some memory-bugs, thanks to valgrind.
444- irc_write() now checks the write() return value, and tries to send the rest
445  of the string, if it could not write it completely the first time.
446- Hostname lookups also work on NetBSD now.
447  (Thanks to David.Edmondson*sun*com (hi spambot))
448- At last, a new protocol. Welcome to ... YAHOO!
449- Documentation and code cleanup. Somehow the helpfile documented register
450  and identify twice, now that's what I call over-documenting.. :-/
451- Added the rename command to the helpfile, somehow I forgot that one.
452- Been a bit pedantic about compiler warnings. They're all dead now.
453- Fixed a small Makefile problem which gave an error when a clean tree was
454  "made distclean"
455- Fixed a (possible) memory leak in nogaim.c:proto_away()
456- Fixed the way proto_away() calls proto_away_alias_find(), now it gives
457  the *whole* list of away states
458- proto_away() doesn't give a NULL message anymore because AIM didn't like
459  that
460- Got rid of the last goto in my code (without ruining the code)
461- Created a more samba-like compiling process (without the complete command
462  lines, just a simple echo)
463- "help set ops" works now too, without quoting the "set ops"
464- Trying to log in with a protocol without a prpl (ICQ and TOC, for example)
465  made previous versions crash
466
467Finished 13 Apr 2003
468
469Version 0.72:
470- Updated the documentation.
471- Improved the MSN friendlyname code. (Although it doesn't seem to be perfect
472  yet..)
473- info-command added to get more information about ICQ users.
474- blist-command added to get a complete buddy list.
475- Fixed a bug which broke the AIM code when adding a screenname with a space
476  in it.
477- Added the NS alias for the NICKSERV command (Tony Vroon).
478- Fixed the USERHOST command implementation (Tony Vroon).
479- /me from IM-networks is now converted to a CTCP ACTION correctly.
480- Added an utils/ directory with some misc toys and handy things.
481- Added a /notice to the on_typing event. Don't use it though, the /notice
482  flood will just be a big annoyance. ;-)
483- Some people like root and themself to be ops, some don't. Now it's
484  configurable. (set ops)
485- Now the umode stuff actually works. Next step: Use those modes... (How?)
486
487Finished 19 Dec 2002
488
489Version 0.71:
490- Fixed the help command output layout (alignment)
491- Added a sample xinetd file
492- Cleaned up, 0.70 released with a build-stamp and DEADJOE file (oops)..
493- Messages can be sent like '<user>, <message>' in the control channel now,
494  instead of just '<user>: <message>'
495- Added a debug setting boolean: Set it to true for some debugging crap
496  which used to be on by default..
497- Changed the /whois reply: In the server section you now see the
498  connection this user belongs to.
499- Added some root/permission checks.
500- configure script works correctly when the terminating / is forgotten for
501  a directory.
502- Fixed format string bug in protocols/oscar/meta.c (Hmm, what's the use of
503  that file?)
504- Added '#include "crypting.h"' to commands.c to get rid of stupid warnings
505- Fixed crash-bug (SIGSEGV when adding an @-less contact to MSN/Jabber)
506- Added to_char setting
507- Fixed bug in set.c: It ignored the new value returned by the evaluator
508  :-(
509- Removed protocol tag from 'hostname' in user hostmask because this info
510  is in /whois' server section now
511- Added the GPL. Somehow 0.7 released without a COPYING file.. :-/
512- Enhanced the root_command() parser, you can 'quote' "arguments" now so
513  arguments can be strings with spaces
514- Debugging versions have True as the default value for set debug
515- NICKSERV is now an alternative for PRIVMSG root. This does not affect
516  functionality of current NICKSERV commands, but does allow people to just
517  do identify <pass> in channel.
518- NICKSERV REGISTER now doesn't try to log you in (to check if the user
519  exists) but checks for the existence of the user-configuration files.
520- NICKSERV SET password now works (as does set password in channel). This
521  makes changing your password possible.
522- NICKSERV password now stored in irc_t.
523- ./configure now only bugs you about possible problems with strip if it's
524  actually going to strip (wooohoooo! _sexy_ :)
525- Fixed a load of warnings in oscar.c, irc.c, nick.c and set.c
526- Split up root_command() into a version which eats raw strings and one
527  which eats split strings
528- New help system: Help available for most (all?) commands, all read from
529  an external help-file.
530- Changed the maximum message length in irc_usermsg() from IRC_MAX_LINE to
531  1024 (for loooong help messages..).
532- Only allow user to set supported umodes.
533- Fixed a memory leak in crypting.c (Thanks to Erik Hensema.)
534- Added a send_handler callback to user_t. Needed for the following entry:
535- Added the NickServ user as a root-clone.
536- Disabled tcpd by default because it's just a PITA for a lot of systems
537  and because you can use /usr/sbin/tcpd as well.
538- The root user can be renamed now.
539
540Finished 16 Sep 2002
Note: See TracBrowser for help on using the repository browser.