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