]> jfr.im git - solanum.git/blob - NEWS.md
ircd: serv_connect: don't try to connect if that would exceed the class limit
[solanum.git] / NEWS.md
1 # News
2
3 This is charybdis 4-dev, Copyright (c) 2005-2016 Charybdis team.
4 See LICENSE for licensing details (GPL v2).
5
6 ## charybdis-4
7
8 ### build
9 - Build system has been converted to libtool + automake for sanity reasons.
10 - The compile date is now set at configure time rather than build time, allowing for
11 reproducible builds. (#148, #149)
12 - Support for GNUTLS 3.4 has been added.
13
14 ### user
15 - Import the ability to exceed MAXCHANNELS from ircd-seven.
16 - Implement IRCv3.2 enhanced capability negotiation (`CAP LS 302`).
17 - Implement support for receiving and sending IRCv3 message tags.
18 - Implement IRCv3.2 capabilities: (#141)
19 - account-tag
20 - echo-message
21 - invite-notify
22 - sasl
23 - server-time
24 - SASL: certificate fingerprints are now always sent to the SASL agent, allowing for
25 the certificate to be used as a second authentication factor.
26
27 ### oper
28 - Merge several features from ircd-seven:
29 - Implement support for remote DIE/RESTART.
30 - Implement support for remote MODLOAD et al commands.
31 - Add the GRANT command which allows for temporarily opering a client.
32 - Implement the hidden oper-only channel modes framework.
33 - Implement a channel mode that disallows kicking IRC operators (+M).
34 - Enhance the oper override system, allowing more flexibility and detail
35 in network-wide notices.
36 - DNS, ident, and blacklist lookups have been moved to a dedicated daemon known
37 as authd. Some cosmetic changes to blacklist statistics and rejection notices
38 have resulted.
39 - An experimental OPM scanner has been added to authd. Plaintext SOCKS4,
40 SOCKS5, and HTTP CONNECT proxies can be checked for.
41 - The LOCOPS command has been moved from core to an extension.
42 - All core modules in charybdis have descriptions, which are shown in MODLIST.
43 - Suffixes should not be used when doing /MODLOAD, /MODUNLOAD, /MODRELOAD, etc.
44
45 ### misc
46 - Support for WebSocket has been added, use the listen::wsock option to switch
47 a listener into websocket mode.
48
49 ### conf
50 - Add the ability to strip color codes from topics unconditionally.
51 - The obsolete hub option from server info has been removed.
52
53 ### docs
54 - The documentation has been cleaned up; obsolete files have been purged, and
55 files have been renamed and shuffled around to be more consistent.
56
57 ### code
58 - `common.h` is gone. Everything useful in it was moved to `ircd_defs.h`.
59 - `config.h` is gone; the few remaining knobs in it were not for configuration
60 by mere mortals, and mostly existed as a 2.8 relic. Most of the knobs live in
61 `defaults.h`, but one is well-advised to stay away unless they know exactly
62 what they are doing.
63 - A new module API has been introduced, known as AV2. It includes things such as
64 module datecodes (to ensure modules don't fall out of sync with the code),
65 module descriptions, and other fun things.
66 - Alias and module commands are now in m_alias and m_modules, respectively, and
67 can be reloaded if need be. For sanity reasons, m_modules is a core module,
68 and cannot be unloaded.
69 - irc_dictionary and irc_radixtree related functions are now in librb, and
70 prefixed accordingly. Typedefs have been added for consistency with existing
71 data structures. For example, now you would write `rb_dictionary *foo` and
72 `RB_DICTIONARY_FOREACH`.
73 - C99 bools are now included and used in the code. Don't use ints as simple true
74 or false flags anymore. In accordance with this change, the `YES`/`NO` and
75 `TRUE`/`FALSE` macros have been removed.
76 - Return types from command handlers have been axed, as they have been useless
77 for years.
78 - libratbox has been renamed to librb, as we have diverged from upstream long
79 ago.
80 - Almost all 2.8-style hashtable structures have been moved to dictionaries or
81 radix trees, resulting in significant memory savings.
82 - The block allocator has been disabled and is no longer used.
83 - The ratbox client capabilities have been ported to use the ircd capabilities
84 framework, allowing for modules to provide capabilities.
85 - Support for restarting ssld has been added. ssld processes which are still
86 servicing clients will remain in use, but not service new connections, and
87 are garbage collected when they are no longer servicing connections.
88 - Support for ratbox-style 'iodebug' hooks has been removed.
89 - New channel types may be added by modules, see `extensions/chantype_dummy.c`
90 for a very simple example.
91
92 ## charybdis-3.5.0
93
94 ### server protocol
95 - Fix propagation of ip_cloaking hostname changes (only when setting or
96 unsetting the umode after connection).
97 - Fix a remote-triggerable crash triggered by the CAPAB parsing code.
98 - As per the TS6 spec, require QS and ENCAP capabilities.
99 - Require EX and IE capabilities (+e and +I cmodes).
100 - Check that UIDs start with the server's SID.
101
102 ### user
103 - Allow mode queries on mlocked modes. In particular, allow /mode #channel f
104 to query the forward channel even if +f is mlocked.
105 - Strip colours from channel topics in /list.
106 - If umode +D or +g are oper-only, don't advertise them in 005.
107 - If MONITOR is not enabled, don't advertise it in 005.
108 - Add starttls as per ircv3.
109 - Abort a whowas listing when it would exceed SendQ, which would previously
110 disconnect the user.
111 - Reject nicks with '~' in them, rather than truncating at the '~'.
112 - Remove CHARSET=ascii from ISUPPORT
113 - Use the normal rules for IP visibility in /whowas.
114 - Cmode +c now strips '\x0F' (^O, formatting off), fixing weird rendering in
115 some clients that internally use mIRC formatting such as highlighted
116 messages in HexChat.
117 - Indicate join failure because of the chm_sslonly extension (cmode +S) using
118 the same 480 numeric as ircd-ratbox.
119 - Do not allow SASL authentication when the configured SASL agent is unavailable.
120 - Automatically add unidentified users to the ACCEPT list when a user is set +R,
121 as we do when the user is set +g.
122 - Implement IRCv3.2 capabilities:
123 - cap-notify
124 - chghost
125 - userhost-in-names
126 - Implement the $&, $| and $m extban types:
127 - $& combines 1 or more child extbans as an AND expression
128 - $| combines 1 or more child extbans as an OR expression
129 - $m provides normal hostmask matching as an extban for the above
130 - Do not allow STARTTLS if a connection is already using TLS.
131 - Display an operator's privilege set in WHOIS.
132 - The $o extban now matches against privilege set names as well as individual
133 privileges. Privilege set names are preferred over individual privileges.
134
135 ### oper
136 - Fix a crash with /testline.
137 - Complain to opers if a server that isn't a service tries to
138 SU/RSFNC/NICKDELAY/SVSLOGIN.
139 - Turn off umode +p (override) when deopering.
140 - Make listener error messages (e.g. port already in use) visible by default
141 instead of only on snomask +d and in ioerrorlog.
142 - Remove snotes on +r about GET/PUT/POST commands ("HTTP Proxy disconnected").
143 - Add DNSBL snotes on snomask +r.
144
145 ### config
146 - Add hide_uncommon_channels extension to hide uncommon channel memberships in WHOIS,
147 like in ircd-seven.
148 - Add chm_nonotice extension, cmode +T to reject notices.
149 - Add restrict-unauthenticated extension, prevents unauthenticated users from
150 doing anything as channel operator.
151 - Add no_kill_services extension, prevents local opers from killing services.
152 - Allow matching specific replies of DNSBLs, using the new matches option.
153 - Remove blowfish crypt since it has the BSD advertising clause.
154 - Fix SHA256 ($5$) crypt.
155 - Make the channel::channel_target_change option actually work (it used to be
156 always on).
157 - SSL/TLS listeners now have defer_accept unconditionally enabled on them.
158 - The method used for certificate fingerprints (CertFP) is now configurable.
159 SHA1, SHA256 and SHA512 are available options.
160 - The minimum user threshold for channels in default /list output is now
161 configurable.
162
163 ### misc
164 - Work around timerfd/signalfd brokenness on OpenVZ.
165 - Fix a compilation issue in libratbox/src/sigio.c with recent glibc.
166 - Extend documentation slightly.
167 - Remove a BSD advertising clause that permission was granted to remove.
168 - Add support for hooking PRIVMSG/NOTICE.
169 - Reenable and fix the GnuTLS support.
170 - Add mbedTLS backend for SSL/TLS.
171 - Remove EGD support.
172 - Try other DNS servers if errors or corrupt replies are encountered.
173 - Rename genssl.sh script to genssl.
174 - Choose more secure SSL/TLS algorithms.
175 - Fix reconnecting with SSL/TLS with some clients such as ChatZilla (see
176 https://bugzilla.mozilla.org/show_bug.cgi?id=858394#c34 for details.)
177 - Improve error messages about the configuration file.
178 - Fix a crash when compiled with recent clang on 32-bit systems.
179 - Fix various memory leaks in rehash.
180 - Fix various code quality issues.
181 - Add --with-shared-sqlite to allow distribution packages to link to a shared
182 sqlite library. Using this is not recommended for on-server compilation.
183 - ISUPPORT tokens which are actually provided by modules have been moved to their
184 respective modules.
185
186 ## charybdis-3.4.0
187
188 ### server protocol
189 - Allow overriding opers (with the new extension) to op themselves on channels.
190 - Allow RSFNC to change a nickname's capitalization only.
191 - Add channel ban forwarding <mask>$<channel> much like ircd-seven. Local use
192 of this is controlled by the channel::use_forward config option.
193 - Add ENCAP TGINFO to propagate IP addresses that exceeded target change
194 limits (these get a lower limit when they reconnect).
195
196 ### user
197 - Consider bogus CTCP ACTION messages (without action text) CTCP (for
198 cmode +C).
199 - Send ERR_TOOMANYCHANNELS for each channel join that fails due to channel
200 limits.
201 - Add account-notify client capability to notify clients about logins and
202 logouts of users in common channels. See doc/account-notify.txt.
203 - Add extended-join client capability to add account name and ircname to JOIN.
204 - Add topic TS and channel TS constraints for /LIST (T<, T>, C<, C>
205 parameters as in some other servers).
206 - Disallow wildcarded nicknames in "hunted" parameters like /stats and /motd.
207 - Disallow mIRC italics in channel names when disable_fake_channels.
208 - Add AUTHENTICATE EXTERNAL support, allows SASL authentication using a
209 certificate fingerprint.
210 - Allow channel::kick_on_split_riding to protect channels with mlocked keys.
211 - The NICKLEN token in 005 now only specifies the maximum usable nick length.
212 The MAXNICKLEN token specifies the maximum nick length any user can have.
213 - Disallow $ in usernames as this may cause problems with ban forwarding.
214 - Add an error message (numeric 743) if a ban mask is invalid.
215 - Extract the underlying IPv4 address from 6to4 and Teredo IPv6 addresses.
216 Show it in a remote /whois and check channel bans, quiets, D:lines and
217 K:lines against it. Note that ban exceptions and auth{} blocks are not
218 checked.
219 - Allow normal users to perform /privs on themselves, showing some privileges
220 from the auth{} block.
221 - Add away-notify client capability, see doc/away-notify.txt.
222 - Add rate limit for high-bandwidth commands, in particular /who <channel>.
223 - Rate limit /away to help avoid flooding via away-notify.
224 - Apply colour stripping (cmode +c) and CTCP checking (cmode +C) to messages
225 to @/+ channel as well.
226 - Channel mode +c (and other places that disallow colour codes) now also strip
227 ASCII 4 (a different kind of colour code).
228
229 ### oper
230 - Add operspy for /list.
231 - Add a server notice to snomask +b if a user exceeds target change limits.
232 - Add missing server notice for kills from RSFNC and SVSLOGIN.
233 - Add /stats C to show information about dynamically loaded server
234 capabilities.
235
236 ### config
237 - Add support for linking using SSL certificate fingerprints as the link
238 credential rather than the traditional password pair.
239 - Add m_roleplay extension, provides various roleplay commands.
240 - Add override extension, umode +p oper override for opers with oper:override
241 permission, with accountability notices and timeout. Note that opers cannot
242 op themselves if there are older servers on the network.
243 - Add channel::disable_local_channels config option.
244 - Add support for IPv6 DNSBLs. A new "type" option specifies the IP version(s)
245 for which each DNSBL should be checked.
246 - Make flood control settings configurable by those who know exactly what they
247 are doing.
248 - Add serverinfo::nicklen config option to limit the nick length for local
249 users. Different values of this option do not break the server protocol.
250 - Add extb_usermode extension, $m:+-<modes> extban matching against umodes.
251 - Extend extb_oper extension to allow matching against oper privileges.
252 - Add m_remove extension, /remove command as in ircd-seven.
253 - Add general::away_interval to allow configuring /away rate limiting.
254 - Add listener::defer_accept to delay accepting a connection until the client
255 sends data. This depends on kernel support. It may break BOPM checking.
256
257 ### misc
258 - In mkpasswd, default to SHA512-based crypt instead of MD5-based crypt.
259 - Add --with-custom-branding and --with-custom-version configure options to
260 help forks/patchsets distinguish themselves.
261 - Change version control from Mercurial to GIT.
262 - Ensure SIGHUP and SIGINT keep working after a SIGINT restart.
263 - Add --enable-fhs-paths configure option to allow installing into a more
264 FHS-like hierarchy.
265 - Remove broken GnuTLS support. SSL/TLS is now only provided using OpenSSL.
266
267 ## charybdis-3.3.0
268
269 ### server protocol
270 - Add new BAN command, for propagated network-wide bans (K/X:lines and RESVs).
271 These will burst to new servers as they are introduced, and will stay in sync
272 across the whole network (new BAN capab).
273 - Add new MLOCK command, to implement ircd-side channel mode locks. This allows
274 services to send out a list of mode letters for a given channel which may not
275 be changed, preventing mode fights between services and client bots (new MLOCK
276 capab).
277
278 ### user
279 - New RPL_QUIETLIST(728) and RPL_ENDOFQUIETLIST(729) numerics are used for the
280 quiet (+q) list, instead of overloading the ban list numerics.
281 - Users may no longer change the topic of a -t channel if they cannot send to
282 it.
283 - Add help for EXTBAN, describing the syntax of extended bans in general, as
284 well as the most common types.
285 - Changed AWAY messages are now propagated to other servers. Previously, AWAY
286 was only propagated when the user was not already away.
287 - Channel mode +c (and other places that disallow colour codes) now also strip
288 ASCII 29 (mIRC 7 italics).
289 - Add auto-accept for user mode +g (callerid): Messaging a user while set +g
290 will automatically add them to your accept list.
291 - Add target change for channels. It applies to unopped, unvoiced and unopered
292 users. This has the effect of stopping spambots which join, message and part
293 many channels at a time.
294 - Show RPL_WHOISLOGGEDIN in /whowas as well as in /whois entries. This adds at
295 most an additional 0.5MB of memory usage.
296 ### config
297 - Add general::use_propagated_bans to switch the new BAN system on or off.
298 - Add general::default_ident_timeout, to control the timeout for identd (auth)
299 connections.
300 - Add channel::channel_target_change to switch the new channel target change limits
301 on or off.
302 - Fix class::number_per_ident so that it also applies to connections without
303 identd.
304 - Change the example sslport option to 6697, which is more standard than 9999.
305 ### misc
306 - The custom channel mode API has been rewritten, allowing these modules to work
307 correctly when reloaded, or loaded from the config file.
308 - The EFNet RBL is now recommended, instead of DroneBL.
309 - Remove the unsupported modules directory.
310 - Numerous bug fixes and code cleanups.
311 - In mkpasswd, default to MD5 crypt instead of insecure DES.
312
313 ## charybdis-3.2.0
314
315 ### server protocol
316 - Apply +z to messages blocked by +b and +q as well. (new EOPMOD capab)
317 - Add new topic command ETB, allowing services to set topic+setter+ts always.
318 (new EOPMOD capab)
319 - The slash ('/') character is now allowed in spoofs.
320
321 ### user
322 - Add can_kick hook, based on the ircd-seven one.
323 - Add cmode +C (no CTCP) from ircd-seven.
324 - Flood checking has been reworked.
325 - Fix op-moderate (cmode +z) for channel names with '@'.
326 - Add CERTFP support, allowing users to connect with an SSL client
327 certificate and propagating the certificate fingerprint to other servers.
328 Services packages can use this to identify users based on client
329 certificates.
330 - Maintain the list of recently used targets (for the target change
331 anti-spam system) in most-recently-used order, overwriting the least
332 recently used target with a new one. This should be friendlier to users
333 without giving spambots anything.
334 - Do not require target change slots for replying to the last five users to
335 send a private message, notice or invite.
336 - Apply target change restrictions to /invite.
337 - Apply umode +g/+R restrictions to /invite, with the difference that
338 instead of sending "<user> is messaging you" the invite is let through
339 since that is just as noisy.
340
341 ### oper
342 - Add /rehash throttles to clear throttling.
343 - Send all server notices resulting from a remote /rehash to the oper.
344 - '\s' for space is now part of the matching, not a substitution at xline
345 time, fixing various issues with it.
346 - Display o:line "nickname" in oper-up server notices.
347 - Fix sendq exceeded snotes for servers.
348 - SCAN UMODES: default list-max to 500, like a global WHO.
349 - Ignore directory names in MODRELOAD to avoid crashing if it is a core
350 module and the path is incorrect.
351 - Tweaks to spambot checks.
352
353 ### config
354 - Add channel::only_ascii_channels config option to restrict channel names
355 to printable ascii only.
356 - Add channel::resv_forcepart, forcibly parts local users on channel RESV,
357 default enabled.
358
359 ### misc
360 - New mkpasswd from ircd-ratbox.
361 - Check more system calls for errors and handle the errors.
362 - Various ssld/libratbox bugfixes from ircd-ratbox. [some MERGED]
363 - Fix fd passing on FreeBSD/amd64 and possibly Solaris/sparc. [MERGED]
364 - Various documentation improvements. [some MERGED]
365 - Fix some crash issues. [MERGED]
366 - Add bandb from ircd-ratbox, which stores permanent dlines/klines/xlines/resvs
367 in an sqlite database instead of a flatfile and does the storage in a
368 helper process. Use bin/bantool -i to import your old bans into the
369 database.
370
371 ## charybdis-3.1.0
372
373 - Remove TS5 support. No TS5 servers are permitted in a network with
374 charybdis 3.1.0 or newer, except jupes.
375 - Replace oper flags by privilege sets (privsets). This adds an extra
376 level of indirection between oper flags and operator blocks. /stats O
377 (capital O) shows the configured privsets.
378 - Update libratbox and ssld from upstream and use it better.
379 - Add auth_user to auth{}. This allows specifying a username:password instead
380 of just a password in PASS, so that a fixed user@host is not necessary
381 for a specific auth{} block.
382 - Add need_ssl to auth{} and operator{}. This makes these blocks reject
383 the user if not connected via SSL.
384 - Allow modules to provide simple channel modes without parameter.
385 - Remove restrictions on CNAME in the resolver.
386 - Make the resolver remember nonresponsive nameservers.
387 - Move nick collision notices from +s to +k.
388 - Add additional information to various server notices about server
389 connections.
390 - Show throttle information in /stats t.
391 - Show rejectcache and throttle information in /testline.
392 - Show oper reason in /testline.
393 - Allow opers to see other users' umodes with /mode <nick>.
394 - SCAN UMODES GLOBAL NO-LIST MASK <mask> is no longer an operspy command.
395 - Also apply floodcount to messages to remote clients (except services).
396 - Remove user@server messages to local users. Sending such messages to
397 remote servers is still possible, for securely messaging pseudoservers
398 whether service{}'ed or not. The special oper-only syntax opers@server
399 remains as well.
400 - Allow /list on a named +p channel. A full /list already included +p channels.
401 - Add operspy /topic.
402 - For remote rehashes, send error messages to the requesting oper as well.
403 - Disable autoconnect for a server with excessive TS delta.
404 - Disallow invites to juped channels.
405 - Warn about certain duplicate and redundant auth blocks.
406 - Make PRIVMSG/NOTICE behave as CPRIVMSG/CNOTICE automatically if possible.
407 - Allow +z messages from outside if a channel is -n.
408 - Allow coloured part reasons in -c channels.
409 - Add ircu-like WHOX support. This allows requesting specific information
410 in /who and allows obtaining services login name for all users in a
411 channel. XChat/Conspire use WHOX to update away status more efficiently.
412 - Allow opers and shide_exempt users to see hopcounts even if flatten_links
413 is on.
414 - Rework ip_cloaking.
415 - Add the IP address to userlog, as in ircd-ratbox 3.0.
416 - Split cidr_bitlen into cidr_ipv4_bitlen and cidr_ipv6_bitlen.
417 - Allow using ziplinks with SSL connections. This is not as efficient as
418 using OpenSSL's built in compression, but also works with older versions
419 of OpenSSL.
420 - Fix an off by one error with zipstats processing, which could overwrite
421 a variable with NULL causing a crash on some systems.
422 - Document some extensions in charybdis-oper-guide.
423 - Add more server protocol documentation.
424 - Add m_sendbans extension, SENDBANS command to propagate xlines and resvs
425 manually.
426 - Add chm_sslonly extension, cmode +S for SSL/TLS only channels.
427 - Add chm_operonly extension, cmode +O for IRCop only channels.
428 - Add chm_adminonly extension, cmode +A for server admin only channels.
429 - Various code cleanups.
430
431 ## charybdis-3.0.4
432
433 - Fix a crash on certain recent versions of Ubuntu.
434 - Allow 127.x.y.z for DNSBL replies instead of just 127.0.0.x.
435 - Various documentation improvements.
436
437 ## charybdis-3.0.3
438
439 - Fix IPv6 D:lines
440 - Fix rejectcache and unknown_count.
441 - Fix genssl.sh.
442 - Fix ident for SSL/TLS connections.
443 - Fix SSL/TLS bugs for servers with more than about 100 connections.
444 - Small bugfixes.
445
446 ## charybdis-3.0.2
447
448 - Improve OLIST extension error messages.
449 - Improve some kline error checking.
450 - Avoid timing out clients if we are still waiting for a DNSBL lookup.
451 - Fix resolver hangs with epoll.
452 - Fix compilation without zlib.
453
454 ## charybdis-3.0.1
455
456 - Fix occasional hung clients with kqueue.
457 - Fix a rare ssld crash.
458 - Fix a bug that could cause incorrect connect failure reasons to be
459 reported.
460 - Make the IRCd work on MacOS X again.
461
462 ## charybdis-3.0.0
463
464 - Port the IRCd to libratbox, which has improved our portability and allows
465 us to reuse low-level code instead of maintaining our own.
466 - Change configuration of maximum number of clients to ircd-ratbox 3 way.
467 - Add adminwall from ircd-ratbox, as an extension.
468 - Add client and server-to-server SSL, read example.conf for setup.
469 - Replace servlink with ssld (also for ziplinks).
470 - A new extban, $z, has been added for ssl users (extensions/extb_ssl.so).
471 - A new compatibility channel mode, +R, has been added, it sets
472 +q/-q $~a (extensions/chm_operonly_compat.so). This is similar to
473 the +R seen in ircd-seven.
474 - A new compatibility channel mode, +S, has been added, it sets
475 +b/-b $~z (extensions/chm_sslonly_compat.so).
476 - A new compatibility channel mode, +O, has been added, it sets
477 +iI/-iI $o (extensions/chm_operonly_compat.so).
478 - Add remote D:lines. Note that these are not enabled by default.
479 - Remove EFnet-style G:lines. Noone appears to use these.
480 - Remove idle time checking (auto disconnecting users idle too long).
481 - Display a notice to clients when the IRCd is shut down using SIGTERM.
482 - Some error messages have been clarified to enhance usability.
483 - Close the link to servers that send invalid nicks (e.g. nicklen mismatches).
484 Formerly the users were killed from the network.
485 - Enable topicburst by default in connect{}.
486 - Fix a potential desync which can happen with oper override.
487 - Remove "deopped" flag (TS5 legacy).
488 - Use 127.0.0.1 as nameserver if none can be found in /etc/resolv.conf.
489 - Only accept 127.0.0.x as a dnsbl listing.
490 - Change cloaking module (same as 2.2.1, different from 2.2.0).
491 - Make some more server notices about failed remote connect attempts
492 network wide.
493 - Make some server notices about flooders and TS delta network wide.
494 - Remove redundant "<server> had been connected for <time>" server notice.
495 - Add resv oper privilege to control /resv, /unresv and cmode +L and +P,
496 enabled by default.
497 - Add mass_notice oper privilege to control global notices and /wallops,
498 enabled by default.
499 - Rework unkline/undline/unxline/unresv so they show the exact item removed
500 and do not rehash bans.
501 - Show opers a list of recently (<24hrs) split servers in /map.
502 - Add /privs command, shows effective privileges of a client.
503
504 ## charybdis-2.2.0
505
506 - The I/O code has been reworked, file descriptor metadata is stored in a
507 hashtable and the maximum number of clients can now be set in ircd.conf.
508 - Improve error checking and error messages for kline/dline/xline/resv files.
509 - Allow kline ipv6:address, unkline some.host and unkline ipv6:address
510 without *@.
511 - Add accountability (wallops, log) to OKICK extension.
512 - Add opernick to OPME/OMODE/OJOIN log messages.
513 - Add use_forward option, allows disabling cmode +fFQ and umode +Q.
514 - Add keyword substitution to DNSBL reasons, making it possible to show
515 things like the user's IP address in the reason.
516 - Use sendto_one_notice() more.
517 - Server notices about kills now include the victim's nick!user@host instead
518 of just nick.
519 - Include real hostname in Closing Link message for unknown connections
520 that have sent USER, in particular banned users.
521 - Add some documentation about the SASL client protocol.
522 - Change spambot, flooder and jupe joiner notices from host to orighost.
523 - Remove the last remains of server hostmasking (this made it possible to
524 have multiple servers with similar names appear as a single server).
525 - Keep bitmasks of modularized umodes reserved forever to the letter,
526 avoiding problems when reloading umode modules in a different order.
527 - Fix -logfile.
528 - Update to the new revision (v8) of the TS6 spec, this fixes problems with
529 joins reversing certain mode changes crossing them. This interoperates
530 with older versions.
531 - Put "End of Channel Quiet List" at the end of +q lists.
532 - Fix invisible count getting desynched from reality if the act of opering
533 up sets -i or +i.
534 - Don't leak auth{} spoofed IP addresses in +f notices.
535 - Shorten quit/part/kick reasons to avoid quit reasons overflowing the
536 client exiting server notice (from TOPICLEN to 260).
537 - Fix some cases where 10 char usernames lose their final character.
538 - Move username check after xline and dnsbl checks, so it will not complain
539 to opers about clients who are xlined or blacklisted anyway (both of
540 which silently reject).
541 - Remove invite_ops_only config option, forcing it to YES.
542 - Allow /invite (but not invex) to override +r, +l, +j in addition to +i.
543 - Add several new extensions, such as createoperonly.
544 - Merge whois notice extensions into one and move it from snomask +y to +W.
545
546 ## charybdis-2.1.2
547
548 - Fix bug that could cause all hostmangled users to be exempted when a
549 single ban exception existed on a channel.
550 - Tweak \s code a little.
551 - Add a minor clarification to the SGML docs.
552 - Avoid truncation in ip_cloaking (by removing components on the other side).
553 Note that this may cause channel +bqeI modes set on such very long hosts
554 to no longer match.
555
556 ## charybdis-2.1.1
557
558 - Search the shortest list (user's/channel's) when looking up channel
559 memberships.
560 - Make the SID-collision notice look right under all conditions.
561 - Move kills from services from +s to +k snomask.
562 - When no_tilde is present on an auth{} block, check the non-tilde version
563 of the user@host against k:lines as well.
564 - Put full reason in the SQUIT reason when a server is rejected for
565 insufficient parameters being passed to a command.
566 - Don't redirect users to an existing domain, irc.fi.
567 - Improve communication of servlink-related error messages.
568
569 ## charybdis-2.1.0
570
571 - Our official website is now http://www.ircd-charybdis.org/.
572 - Make RPL_ISUPPORT (005 numeric) modularizable.
573 - Also do forwarding if the channel limit (+l) is exceeded.
574 - Don't count opers on service{} servers in /lusers.
575 - Allow servers to send to @#chan and +#chan.
576 - Allow +S clients (services) to send to channels and @/+ channels always.
577 - Allow normal match() on IP address also in /masktrace.
578 - Add new testmask from ratbox 2.2. Allows matches on nick, ip and gecos
579 in addition to user and host, and is fully analogous to masktrace.
580 The numeric has changed from 724 to 727 and fields in it have changed.
581 - Show IP addresses to opers in /whowas.
582 - Add extb_extgecos extban option ($x:nick!user@host#gecos), from sorcery
583 modules.
584 - Add extb_canjoin extban option ($j:#channel), matches if the user is banned
585 from the other channel.
586 - Allow opers to /who based on realhost.
587 - Allow opers to /masktrace, /testmask based on realhost.
588 - Add general::operspy_dont_care_user_info, limits operspy accountability to
589 channel-related information.
590 - Make host mangling more reliable.
591 - Prevent ban evasion by enabling/disabling host mangling.
592 - Add EUID, sends real host and services account in the same command as other
593 user information.
594 - Make it possible to send CHGHOST without ENCAP (fixes problems with old
595 services).
596 - Allow service{} servers to manipulate the nick delay table (for "nickserv
597 enforcement", aka SVSHOLD).
598 - Send server notices about connections initiated by remote opers network wide.
599 - Fix too early truncation of JOIN channel list.
600 - Make the newconf system available to modules.
601 - Add /stats s to the hurt module to list active hurts.
602 - Add general::servicestring, shown in /whois for opered services (+oS).
603 - Show real host/IP behind dynamic spoof in /whois to the user themselves
604 and opers.
605 - Document option to disable nick delay.
606 - Improve logging of server connections.
607 - Clean up handling of hostnames in connect blocks.
608 - Remove support for resolving ip6.int, people should be using ip6.arpa.
609 - Unbreak --disable-balloc (useful for debugging with tools like valgrind).
610 - Make Solaris 10 I/O ports code compile.
611 - Add WEBIRC module to allow showing the real host/IP of CGI:IRC users.
612 - Comment out blacklist{} block in example confs, as AHBL requires
613 notification before use.
614 - Fix some bugs relating to the resolver.
615
616 ## charybdis-2.0.0
617
618 - Replace ADNS with a new smaller resolver from ircu and hybrid.
619 - Make services shortcuts (/chanserv etc) configurable in ircd.conf.
620 - Add extban: extensible +bqeI matching via modules. Syntax is
621 $<type>[:<data>]. By default no modules are loaded.
622 - Add DNS blacklist checking.
623 - Change operator{} block user@host from host to orighost. This means that
624 services/+h spoofs do not work in operator{} blocks; auth{} spoofs still
625 work. Check your operator{} blocks!
626 - Split contrib/ into extensions/ and unsupported/.
627 - Change CHGHOST do show the change to all other clients on common channels
628 with quit/join/mode.
629 - Add /rehash nickdelay to clear out the nickdelay tables.
630 - Glines are now disabled in the example confs.
631 - Show more error messages on stderr.
632 - Add OMODE command to extensions/ for easier oper mode hacking.
633 - Add HURT system to extensions/; this shuns clients matching certain host/ip
634 unless and until they identify to services. Mainly intended for SorceryNet.
635 - Show SASL success and failure counts in /stats t.
636 - Allow more frequent autoconnects to servers.
637 - Messaging services by nickname no longer uses target change slots.
638 - Only accept SASL from servers in a service{} block.
639 - New auth{} flag need_sasl to reject users who haven't done SASL
640 authentication.
641 - Expand blah.blah and blah:blah to *!*@... instead of ...!*@* for bans
642 - Don't allow opers to fake locops/operwall to +w.
643 - Documentation updates.
644 - Many bugfixes.
645
646 ## charybdis-1.1.0
647
648 - Implement SAFELIST.
649 - Incorporate ircu's match() algorithm.
650 - Improve usermode modularization.
651 - Seperate server notices into a seperate snomask, freeing up many
652 usermodes to be used.
653 - Add support for SIGNON originating from Hyperion2.
654 - Modularize many server notices into seperate modules.
655 - Add hooks for can_join and can_create_channel.
656 - Add support for SASL authentication.
657 - Add introduce_user hook for adding new messages when a user is bursted.
658 - Move a large part of the ircd into libcharybdis.
659 - Don't complain "unknown user mode" if a user tries to unset
660 a mode they do not have access to.
661 - Update our challenge specification to the challenge implementation in
662 ratbox 2.2 for interoperability.
663 - Make +f notices network-wide (local host, global host,
664 global user@host, local class), other notices tied to +f remain local.
665 - Allow ENCAP REALHOST outside of netburst.
666 - Add general::global_snotices option to make server notices be
667 network-wide or not.
668 - Add sno_farconnect.c to contrib, provides farconnect support.
669 Could be useful for BOPM.
670 - Add sno_routing.c which displays information about netsplits, netjoins
671 and the clients affected by them.
672 - Add CHANTRACE and TRACEMASK commands from ratbox 3.0
673 - Use IsOperAdmin() instead of IsAdmin() when sending admin-only messages,
674 that way hidden admins get them too.
675 - Add m_error to core_module_table, somehow it was missing.
676 - Correct a format string bug that occurs when a read error is
677 received.
678 - Add some logging in places where we drop servers and only notify
679 server operators.
680 - Track hostmask limits based on a client's original host, if
681 available.
682 - Move HIDE_SPOOF_IPS into the general {} block in ircd.conf
683
684 ## charybdis-1.0.3
685
686 - Fix /invite UID leak. (Found by logiclrd@EFnet.)
687 - Incorporate ratbox bugfixes for the MONITOR system.
688 - Made show_ip() less braindead.
689 - Show real errno if we fail to connect to a server.
690 - Don't disclose server IP's when a connection fails.
691 - Do not show the channels a service is sitting in.
692 - Reverted the aline code from hybrid-7.2
693 - Make sure TS6 services are recognized properly if connected remotely.
694 - Tweak something in services support for cyrix boxes.
695
696 ## charybdis-1.0.2
697
698 - Fix propagation of an empty SJOIN (permanant channels).
699 - Fix an exploit involving a malformed /trace request.
700 - Don't display a blank RPL_WHOISCHANNELS in a remote whois request.
701 - Allow modules to provide new usermodes.
702 - On a nickname collision, change the collided nick to their unique ID,
703 if general::collision_fnc is enabled in the config.
704 - Don't allow UID lookups in /monitor + and /monitor s
705 - Fix a garbage issue with channel mode +j.
706 - Apply proper capability flags to the proper server in me_gcap().
707 - Use find_named_person() instead of find_person() in a nick collision.
708 - Prevent UID disclosure in cmode setting.
709 - Prevent UID disclosure to remote clients in /kick.
710 - Do not allow users to query via /whois <server> <UID>.
711 - Don't allow local users to use UID's in local usermode changes.
712 - Propagate +q lists on netjunction.
713 - Clear +q lists on a lowerTS SJOIN.
714 - Ported a generic k/d/x-line parser from hybrid-7.2 which resulted in
715 duplicate code reduction.
716 - Fix linebuf raw code to not truncate lines longer than 512 bytes;
717 improves ziplink reliability on net junction.
718 - Use find_named_person() vs find_person() in services alias code.
719 - Fix issue where channel forwarding token can be lost on net junction.
720 - Fix empty channel desync issues involving +P.
721 - Remove unused non-ENCAP CHGHOST support.
722 - Use TS6 form for SQUIT wallops.
723 - Propagate nickname changes for remote clients in TS6 form if possible,
724 even if sent in TS5 format.
725 - Only clear oper_only_umodes for local clients on deoper.
726
727 ## charybdis-1.0.1
728
729 - Display logged in status on non-local clients too.
730 - Documentation updates
731 - Fix a bug with forward target authorization.
732 - Fix a bug with mode propagation (+Q/+F).
733 - Change ERR_NOSUCHNICK to ERR_SERVICESOFFLINE in services aliases.
734 - Add remote rehashing.
735 - Document service { } blocks (u:lines on ircu).
736 - Document identify_service and identify_command in reference.conf.
737
738 ## charybdis-1.0
739
740 - Implement channel mode +L for channel list limit exemptions.
741 - Implement channel mode +P primarily as a status mode, permanant
742 channel -- this is usually enforced via services registrations.
743 - Change behaviour of /stats p: now displays all staff members instead
744 of local ones only.
745 - Make oper_list global, add local_oper_list for local traffic.
746 - Strip control codes from parts and quits.
747 - Add channel mode +c which strips control codes from messages sent to
748 the channel.
749 - Add channel mode +g which enables free use of the /invite command.
750 - Add channel mode +z which sends rejected messages to channel ops.
751 Could be useful for Q&A sessions or other similar events.
752 - Add channel quietmasks. These are recommended over the use of channel
753 bans used to remove a user's ability to participate in the channel.
754 - Add channel join throttling mode, +j. Used to throttle channel join
755 traffic, i.e. join/part flood attacks. Syntax: +j <joins>:<timeslice>
756 - Improvements to channel_modes(), from shadowircd -- allows for
757 better construction of the mode string.
758 - Use the undernet throttle notice instead of bancache message when
759 dealing with rejected clients. (stolen from ircu2.10.12)
760 - Add channel forwarding, via channel mode +f, behaves similarly to
761 dancer-ircd version.
762 - Update example.conf to reflect AthemeNET changes. Original ratbox
763 config is now reference.conf.
764 - Services account names are now tracked globally.
765 - Add channel mode +Q which disables the effects of channel forwarding
766 on a temporary basis.
767 - Add channel mode +F which allows anybody to disable forwarding target
768 authorisation, voluntarily on their channels.
769 - Make wallops behave like normal wallops.
770 - Add services aliases: /ns, /cs, /os, /nickserv, /chanserv, /operserv.
771 - Add simple hack that enables use of server password for automatic
772 identify.