summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-12-03Send mode changes from ChanServ if the channel is not registered.Sadie Powell
Avoids calling WhoSends() on a null pointer.
2021-12-02Fix checking if `this` is null in regchannel.Sadie Powell
I can't see any places this might be called on a null pointer.
2021-11-30Remove undefined behaviour around checking if this is null.Sadie Powell
2021-11-30CMake warnings CMP0003 and CMP0007 are not necessary.Sadie Powell
2021-11-30Fix cmake deprecation warning CMP0026.Sadie Powell
2021-11-30Merge branch '2.0' into 2.1.Sadie Powell
2021-11-20Fix some message params being sent as <middle> instead of <trailing>.Sadie Powell
2021-11-14Use example.com instead of localhost.net in the example configs.Sadie Powell
2021-11-14Use the server name as the enforcer hostname if not otherwise set.Sadie Powell
2021-11-14Fix the grammar of the globaloncycledown message (#279).Austin Ellis
The previous default example (which is in use on many Anope networks) refers to Services in 2nd person, then 1st person - in the same sentence.
2021-10-17Increase the default channel expiry to 30 days.Sadie Powell
2021-10-17Increase the default nickname expiry to 90 days.Sadie Powell
2021-10-06Show the protocol module name when connecting to the uplink.Sadie Powell
2021-08-29Mark as 2.0.11-git.Sadie Powell
2021-08-29Send the oper mode for services pseudoclients on InspIRCd.Sadie Powell
2021-08-28Merge branch '2.0' into 2.1Sadie Powell
2021-08-25Update Jobe's email address in the readme.Matthew Beeching
2021-08-09cmake: update NSIS template for NSIS 3Adam
Newer cmake versions require NSIS 3, which already defines a RemoveSection macro causing cpack to fail
2021-08-09Release 2.0.10.2.0.10Sadie Powell
2021-08-01Deduplicate code for checking if a user is securely connected.Sadie Powell
2021-08-01Merge branch '2.0' into 2.1.Sadie Powell
2021-07-24webcpanel: fix command source ip to use extforward ipAdam
2021-06-17Overwritten has two t's in it.Sadie Powell
2021-06-17Fix various spelling issues (#274).Josh Soref
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>.
2021-06-04Use the InspIRCd-sent maxlist size instead of networkinfo:modelistsize.Sadie Powell
2021-06-04Add support for per-mode list limits.Sadie Powell
2021-06-01Allow protocol modules to declare that the IRCd supports tags.Sadie Powell
This is not being used currently but will be soon.
2021-05-31Remove nickserv:strictpasswords as it is now obsolete.Sadie Powell
2021-05-31Add the nickserv:minpasslen option.Sadie Powell
2021-05-31Rename nickserv:passlen to nickserv:maxpasslen.Sadie Powell
2021-05-31Merge branch '2.0' into 2.1.Sadie Powell
2021-05-31Fix some misleading indentation in ns_register.Sadie Powell
2021-05-26Add the -devel switch to Config.Sadie Powell
This makes the script use defaults that make development easier.
2021-05-23Improve the message for NICK_IDENTIFY_REQUIRED.Sadie Powell
2021-04-27Use InnoDB instead of the deprecated MyISAM engine.Sadie Powell
Ref: https://www.percona.com/blog/2016/10/11/mysql-8-0-end-myisam/
2021-04-27Use utf8mb4 instead of utf8 in chanstats and irc2sql.Sadie Powell
The utf8 charset, confusingly, is an alias for utf8mb3 which is not a real UTF-8 encoding as it can only store three byte characters. The real UTF-8 charset is utf8mb4.
2021-04-27Add the anope_override keyword to methods that lack it.Sadie Powell
2021-04-27Use elseif in CMake where possible.Sadie Powell
2021-04-27Rip out compatibility code for now-unsupported CMake versions.Sadie Powell
2021-04-27Remove the repeated conditions in cmake endif/else statements.Sadie Powell
2021-04-27Bump minimum CMake version to 3.8.Sadie Powell
This is the minimum version that supports CMAKE_CXX_STANDARD=17.
2021-04-27Switch SendSVSLogin to take a NickAlias.Sadie Powell
2021-04-21Remove unnecessary space.Sadie Powell
2021-04-21The last parameter of Solanum ECHO is a <trailing>.Sadie Powell
2021-04-21Implement support for the Solanum ECHO server capability.Sadie Powell
https://github.com/solanum-ircd/solanum/commit/4cac091255d972b0131ffbf0cd278f984bd892d4
2021-04-16Process writes to the uplink socket before quitting in all cases.Sadie Powell
This allows any error that might have been sent to the IRCd to actually be sent.
2021-04-16Default to the inspircd3 protocol module instead of inspircd20.Sadie Powell
2021-04-16Don't enforce casemapping when using the 1202 InspIRCd protocol.Sadie Powell
This allows older servers which use a module that provides custom casemapping (e.g. the ascii module) to link.
2021-04-08Use UTC in anopesmtp to fix a C++98 compat warning.Sadie Powell
2021-04-08Log when freopen and chown fail.Sadie Powell