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