aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* | Move stdalgo::string::join to utility/string and templatise separator.Gravatar Sadie Powell2023-08-1113-17/+25
* | Rename utility/string_view to utility/string.Gravatar Sadie Powell2023-08-111-1/+1
* | Add an extban for matching against an operator account.Gravatar Sadie Powell2023-08-091-0/+24
* | Rename the O: extban to opertype.Gravatar Sadie Powell2023-08-091-5/+5
* | Make config file cache invalidation more useful.Gravatar Sadie Powell2023-08-063-17/+7
* | Make ldapauth take an enum field for the username field.Gravatar Sadie Powell2023-08-061-12/+39
* | Pass the raw away state to AwayMessage in the ircv3 module.Gravatar Sadie Powell2023-08-041-5/+5
* | Send RPL_REAWAY for compatibility with Unreal's WATCH implementation.Gravatar Sadie Powell2023-08-041-1/+3
* | Rework how away state is stored internally.•••This will be necessary for implementing pre-away as well as some changes for WATCH compatibility with Unreal. Gravatar Sadie Powell2023-08-0416-53/+53
* | Fix an inverted condition in the DNSBL module.Gravatar Sadie Powell2023-08-011-1/+1
* | Release v4.0.0 alpha 23. v4.0.0a23Gravatar Sadie Powell2023-08-011-1/+1
* | Fix some cases missed in the previous commit.Gravatar Sadie Powell2023-07-251-3/+2
* | Also allow suffixing with -line[d] if an X-line is two characters.•••This makes things easier for modules like require_auth in contrib which has a GA-line. Gravatar Sadie Powell2023-07-253-5/+5
* | Add the %created% and %fulltype% variables for the X-line reason.Gravatar Sadie Powell2023-07-251-0/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-07-221-0/+3
|\|
| * Fix a rare case where the hostname cache was not invalidated.Gravatar Sadie Powell2023-07-171-0/+3
* | Fix the filter module preventing access to core stats.Gravatar Sadie Powell2023-07-221-1/+2
* | Make the X-line quit message format a lot more flexible.Gravatar Sadie Powell2023-07-214-25/+23
* | Add a typedef for the Template::Replace map.Gravatar Sadie Powell2023-07-211-1/+1
* | Remove the ability to treat notices specially in delaymsg.Gravatar Sadie Powell2023-07-211-16/+5
* | 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
* | Allow hiding silenced users messages instead of blocking.•••Implements part 1 of #1606. Gravatar Sadie Powell2023-07-211-8/+56
* | Add incremental backoff to the filter/permchannels/xline_db modules.•••Closes #1671. Gravatar Sadie Powell2023-07-213-10/+79
* | Allow timers to not be restarted after changing the interval.•••This is useful if you're changing them from Tick. Gravatar Sadie Powell2023-07-211-2/+5
* | Move checks for whether a user is cloakable to {Get,Reset}Cloaks.Gravatar Sadie Powell2023-07-172-14/+10
* | Fix cloaking users too early in cloak_user.Gravatar Sadie Powell2023-07-171-4/+10
* | Work around MSVC not implementing uniform_int_distribution<char>.Gravatar Sadie Powell2023-07-151-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-07-155-4/+6
|\|
| * If a watched user appears whilst away then also send RPL_GONEAWAY.Gravatar Sadie Powell2023-07-151-0/+2
| * Update copyright headers.Gravatar InspIRCd Robot2023-07-154-4/+4
* | Replace rand/rand_s/random with the C++11 random number generator.Gravatar Sadie Powell2023-07-152-26/+6
* | Simplify the codes that InspIRCd can exit with.•••The custom codes that InspIRCd exits with are not very useful and can confuse init systems like systemd which assume that certain exit codes mean certain things. INSPIRCD_BINARY_EXIT was a workaround for this in v3 but considering thatsers have to check the logs anyway so we may as well just use EXIT_SUCCESS and EXIT_FAILURE. Gravatar Sadie Powell2023-07-137-40/+27
* | Normalise the case of ServerStats.Gravatar Sadie Powell2023-07-137-29/+29
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-07-131-1/+7
|\|
| * Fix parsing end-of-file comments that don't end with a newline.Gravatar Sadie Powell2023-07-121-1/+7
* | Fix some issues with ReadFile.•••- Fix invalidating invoking undefined behaviour when a file is not already cached. - Fix memory corruption caused by assigning a bool to a string. Gravatar Sadie Powell2023-07-121-4/+6
* | Fix sending the wrong message when a user requests stats.•••Closes #2051. Gravatar Sadie Powell2023-07-123-3/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-07-121-0/+7
|\|
| * Log if a user specifies an invalid country code in <connect:country>.Gravatar Sadie Powell2023-07-111-0/+7
* | Fix disabling user mode +r on nick change.•••Closes #2050. Gravatar Sadie Powell2023-07-121-1/+1
* | Remove rang and use fmtlib for printing coloured messages.•••This supports more platforms (e.g. Haiku) and is actually still maintained unlike the former. All of this code should really be cleaned up for release (maybe by adding something like Anope's LOG_CONSOLE) but for now I've just replaced it with the fmtlib equivalent. Gravatar Sadie Powell2023-07-126-57/+68
* | Allow hiding small channels from /LIST past the securelist wait time.Gravatar Sadie Powell2023-07-091-1/+21
* | Extract securelist exemption logic to its own function.Gravatar Sadie Powell2023-07-091-17/+27
* | Allow <define> tags to not redefine a variable if already set.•••This is useful for having a provider config which uses entities but has defaults to fall back to when they are not defined. Gravatar Sadie Powell2023-07-091-4/+5
* | Rename <service> to <services>.•••This tag defines a services server not a service server so this is more grammatically correct. Gravatar Sadie Powell2023-07-072-2/+2
* | Rename the services module config tag to <servicesintegration>.Gravatar Sadie Powell2023-07-071-3/+3
* | Use `username` in the ident module too.•••Nowhere in RFC 1413 does it refer to this field as an ident. Gravatar Sadie Powell2023-07-071-3/+3
* | Add support for rechecking whether a user is in a DNSBL.Gravatar Sadie Powell2023-07-071-3/+68