source: doc/CHANGES @ d1f8759

Last change on this file since d1f8759 was 40657a3, checked in by Wilmer van der Gaast <wilmer@…>, at 2005-12-04T02:49:07Z

ChangeLog update, this should cover all important changes in 1.0. Also updated the FAQ a bit more.

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