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