Prevent wrapper.c from flooding the IRC server.
[iii.git] / CHANGES
blobd21d6660782fab0bc71080843d8486cdbd862baf
1 1.6 (2011-01-31):
2     - Fix regression introduced for handling unknown commands.
4 1.5 (2011-01-24):
5     - Fix channel name comparison in add_channel(), compare lowercase
6       to prevent leaking file descriptors in the long run => Thanks samurai!
7     - Only handle commands ii explicitly understands and treat the rest as raw
8       IRC (only worked for raw commands in capital letters in the past) =>
9       Thanks samurai!
10     - Create in FIFO on receiving a privmsg directly instead of requiring a new
11       /j command first => Thanks Evan Gates.
12       This also implies that in FIFOs aren't deleted on channel leaves any
13       longer, because this itself creates a channel event again which in turn
14       would recreate the file.
15     - Minor changes.
17 1.4 (2008-08-09):
18     - Fix directory traversal on servers that support SAJOIN. NOTE: not marking
19       it as security relevant as it is only possible to create directories
20       outside (which is of course annoying) of the IRC hierarchy but not
21       overwriting arbitrary files with the channel name.
22     - Documentation fixes.
23     - General cleanup.
25 1.3 (2007-07-14):
26     - Server messages about users (QUIT,JOIN) will no longer go to the user
27       directories but to the server out file to give an easy method to monitor
28       it and to prevent spamming of the IRC directory.
30 1.2 (2007-06-23):
31     - Exit on channel creation failure, thanks Michael Prokop.
32     - Implemented joining of password protected channels.
33     - Removed -v option from the manpage since it's not implemented.