Age | Commit message (Collapse) | Author |
|
Remove extra double quote (") from modules.conf
|
|
|
|
Old TLS libraries should not be used anymore due to security risks.
|
|
- Always disable SSLv3. Unreal has already done this so clients
will have to upgrade anyway.
- Disable TLSv1.0 by default. Various security standards (e.g.
PCI DSS) are already planning on sunsetting this so we should
too.
|
|
|
|
This numeric is a lot more friendly for clients to deal with.
|
|
This was added for Red Hat 7 which was released in 2000(!) which
nobody should be using anymore.
|
|
Fix action extbans not triggering (resolves #1420)
|
|
This fixes a reversion from ebe5b20
|
|
|
|
|
|
|
|
|
|
|
|
|
|
These are extremely outdated. If we want to ship these then they
should be redone from scratch.
|
|
GCCs warnings for this are much better than Clangs.
|
|
Based partially on a patch by Attila.
|
|
- Move the ISUPPORT token from the core into core_user and start
sending the SAFELIST token to let clients know that they can
safely run LIST on big servers.
- Add support for the channel creation time (C), topic set time
(T), and inverted glob match (N) filters as specified in the
draft-hardy-irc-isupport-00 specification.
- Clean up the logic for filtering channels by user count.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This fixes installing extras modules such as m_qrcode which contain
characters from outside of the Unicode Basic Multilingual Plane.
|
|
- Remind admins that not setting a DIE/RESTART password does not
disable use of those commands.
- Remove references to 1.2 and modules being able to create custom
logging methods. This was never implemented in the 2.0 branch.
- Remove references to an SASL improvement that was reverted.
- Update various InspIRCd website links to use HTTPS over HTTP.
- Update a link to the IRCv3 website to point to the new website.
|
|
|
|
This is causing problems such as duplicate 904 messages.
|
|
This will not cause any compatibility issues as we do not rely on
this attribute internally.
|
|
|
|
2.0: Fix various inconsistencies in m_timedbans.
|
|
* Send to remote servers upon setting
* Send to halfop if available upon expiry
|
|
2.0: Inform the client when a SASL message cannot be sent
|
|
This replaces the devoice module which has now been removed. If you
want users to be able to devoice themselves then you can load the
customprefix module add the following config tag:
<customprefix name="voice" depriv="yes">
If you wish to keep identical behaviour rather than allowing users
to use "MODE #YourChannel -v TheirNick" then you can load the alias
module and add the following config tag:
<alias text="DEVOICE" format="#*" replace="MODE $2 -v $nick">
|
|
- Rework the code flow to be more readable.
- Ensure that the name is well formed.
- Allow prefix modes with a rank of zero.
|
|
|
|
|
|
When SASL is properly configured with a 'target' server, we are able
to inform the client when the message fails to send.
Currently if a target is configured and it is offline, no response is
sent. This can cause some clients to time out while waiting for a response.
If a target isn't configured, behaviour will not change with this commit.
The default of '*' will still send to all servers.
Updated example config with 'target' variable.
|
|
Previously we used FOREACH_MOD to call OnRehash which handled any
thrown exceptions. When we switched to ReadConfig this stopped
being the case.
This bug was introduced in c202dea024.
|
|
This was done to the string variant in d3b82b2f7f.
|
|
Fix CMD_RESTART with relative paths as argv[0].
|
|
|
|
- Use the same dhparams name in m_ssl_openssl as in other modules.
- Fix building m_ssl_mbedtls.
|
|
This removes the need to do lookups in the cgiirc module. This is
useful as relying on gateways to do proper DNS checks is unreliable
and has resulted in issues like 5fc4403f62. Its more sane if we do
our own lookups.
This change has been okayed by multiple WEBIRC gateway authors so
I don't think it will cause many problems.
|
|
|
|
This removes the need to invalidate the cache after changing a
user's hostname.
|