aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_dnsbl.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2026-06-051-1/+1
* Allow specifying a module name in SetPriority.Gravatar Sadie Powell2025-12-311-2/+1
* Fix the syntax of the DNSBL command.Gravatar Sadie Powell2025-11-261-1/+1
* Default <dnsbl:name> to the domain of the DNSBL.Gravatar Sadie Powell2025-10-221-4/+1
* Rename ToHuman to ToLongString.•••This name is used by functions in too many places already. Gravatar Sadie Powell2025-03-181-1/+1
* Add a formatting overload of the ModuleException constructor.Gravatar Sadie Powell2025-03-181-2/+2
* Add Duration::ToHuman and update messages to use it.Gravatar Sadie Powell2025-03-031-1/+1
* Avoid the use of ConvToStr in string concatenation.•••This function calls INSP_FORMAT in most cases nowadays so we may as well just call that manually. Gravatar Sadie Powell2025-03-011-3/+3
* Update copyright headers.Gravatar InspIRCd Robot2025-02-281-1/+1
* Deprecate bitmask DNSBL records.•••We don't use these in any of our docs or example configs and almost everyone uses the record type. Using a bitmask is also a source of footguns because users don't really understand how bit masks actually work. Gravatar Sadie Powell2025-02-271-1/+4
* Error if a user doesn't specify any DNSBL records to match.Gravatar Sadie Powell2025-02-271-0/+3
* Add text replies for DNSBL responses.•••Closes #1243. Gravatar Sadie Powell2024-10-131-2/+33
* Add a formatting overload to {Membership,User}::Write(Remote)Notice.Gravatar Sadie Powell2024-08-181-3/+3
* Update copyright headers.Gravatar InspIRCd Robot2024-07-141-1/+1
* Add URL encoded versions of the DNSBL/network to the dnsbl module.Gravatar Sadie Powell2024-07-111-4/+6
* Include the network name in the DroneBL example config.Gravatar Sadie Powell2024-07-101-3/+4
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-6/+7
* Update usages of stdalgo::string::equalsci to use insp::equalsci.Gravatar Sadie Powell2023-08-111-2/+2
* Move stdalgo::string::join to utility/string and templatise separator.Gravatar Sadie Powell2023-08-111-2/+1
* Fix an inverted condition in the DNSBL module.Gravatar Sadie Powell2023-08-011-1/+1
* If we can't add an X-line on an DNSBLed user then kill them instead.Gravatar Sadie Powell2023-07-211-0/+1
* Perform DNSBL lookups on E-lined users.•••Even if we aren't going to punish these users it can be useful for opers to know if users are in a DNSBL. Gravatar Sadie Powell2023-07-211-10/+14
* Add support for shunning users who are in a DNSBL.Gravatar Sadie Powell2023-07-211-2/+12
* Fix sending the wrong message when a user requests stats.•••Closes #2051. Gravatar Sadie Powell2023-07-121-1/+1
* Add support for rechecking whether a user is in a DNSBL.Gravatar Sadie Powell2023-07-071-3/+68
* Move DNSBL lookup code to SharedData to allow it to be called from several pl...Gravatar Sadie Powell2023-07-071-69/+86
* Tell a marked user that their user@host was changed AFTER changing it.Gravatar Sadie Powell2023-07-031-2/+2
* Retain the "real" username properly like we do for hostnames.•••This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. Gravatar Sadie Powell2023-06-291-20/+20
* Fix an inverted condition in the DNSBL module.Gravatar Sadie Powell2023-06-031-1/+1
* Rename duration to timeutils and relocate InspIRCd::TimeString.Gravatar Sadie Powell2023-05-101-2/+2
* Remove the now-obsolete hostchange module.•••Closes #2025. Gravatar Sadie Powell2023-05-021-3/+0
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-281-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2023-04-281-1/+1
* | Allow modules to provide an error for when a class doesn't match.Gravatar Sadie Powell2023-03-241-1/+1
* | Replace getInt/getUInt/getFloat with type safe templated functions.Gravatar Sadie Powell2023-01-251-1/+1
* | Refactor the caching methods in User and rename to make more sense.Gravatar Sadie Powell2023-01-241-7/+7
* | Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings.Gravatar Sadie Powell2023-01-231-18/+18
* | Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-231-2/+2
* | Move duration functions to their own header.Gravatar Sadie Powell2023-01-231-2/+3
* | Add a helper method for determining if a sockaddrs is an IP endpoint.Gravatar Sadie Powell2023-01-171-1/+1
* | Qualify auto correctly in all cases.Gravatar Sadie Powell2023-01-101-2/+2
* | Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-101-1/+1
* | Rework how users are assigned to connect classes.•••- Move core connect class checks and <performance:clonesonconnect> to the core_user module. - Add pre-change and post-change events for when a connect class changes. - Split explicit class changing out into its own method. - Remove the need to almost always call CheckClass after SetClass. - Add use counting to the connect class instead of relying on the shared_ptr use count. Gravatar Sadie Powell2023-01-081-7/+7
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-081-8/+55
|\|
| * Fix DNSBL user/host marks being overwritten by ident/host lookups.Gravatar Sadie Powell2023-01-071-10/+52
* | Add some overloads of Find{Nick,UUID,} for local/remote users.Gravatar Sadie Powell2023-01-071-2/+2
* | Add a helper class for creating a reference to a DNS manager.Gravatar Sadie Powell2023-01-051-2/+2
* | Misc DNSBL code cleanup.Gravatar Sadie Powell2023-01-041-41/+41
* | Move the shared data in the DNSBL module to its own class.Gravatar Sadie Powell2023-01-041-26/+40
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\|