summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2022-04-22Merge branch '2.0' into 2.1.Sadie Powell
2022-04-11Remove unnecessary ProcessModes call in unreal4.Sadie Powell
This was made obsolete by the previous commit.
2022-03-01Remove TR1 compatibility layer.Sadie Powell
This isn't necessary now we use C++17.
2022-02-13Fix unsetting vhosts on unreal4 (#289).PeGaSuS
2022-01-13Rip out check_functions().Sadie Powell
This isn't actually used anywhere and just slows down the build.
2022-01-13Rip out calculate_depends().Sadie Powell
This code is incredibly error prone and it just duplicates behaviour that CMake already implements with depend.make files.
2022-01-13Remove NO_CLIENT_LONG_LONG from the mysql module.Sadie Powell
This is not necessary now we use C++17.
2022-01-12Use the default CMake modules for finding gettext instead of our own.Sadie Powell
2022-01-12Merge branch '2.0' into 2.1.Sadie Powell
2022-01-10Avoid duplicate checks in irc2sql.Sadie Powell
2022-01-10Fix ns_resetpass not returning a response for XMLRPC (#243)Filippo Cortigiani
Co-authored-by: filippo nicola cortigiani <simos@H7-25.fritz.box>
2022-01-10Multiple updates for unreal4 protocol (#285)k4bek4be
* Parse PROTOCTL PREFIX and PROTOCTL USERMODES * Add several previously unhandled modes * Fix incorrect SJOIN prefix handling * Enable message tags sending from ircd * Add timedban matcher * Add operclass matcher * Store all client and channel moddata. * Call unreal's internal unban on /cs unban * Check for ~a:0 ban * Add country ban matcher * Use +B umode for services bots
2022-01-09Adjust IsIdentValid test to comply with upcoming ircd-hybrid release (#272).Michael Wobst
hybrid.cpp: adjust IsIdentValid test to comply with upcoming ircd-hybrid where user names may only consist of [A-Za-z0-9._-] and may not begin with '.', '-', or '_'. As a side effect this fixes an issue where currently it is possible to introduce bots whose user name starts with (non-alnum) characters considered invalid for ircd-hybrid leading to a services shutdown due to a nick introduction/kill loop.
2022-01-06Update the copyright headers for 2022.Sadie Powell
2022-01-04Update more IRCServices references to reflect the current project.Sadie Powell
- If referring to the specific piece of software use "Anope". - If referring to services in general use "services".
2022-01-04Use C++11 header names instead of their deprecated equivalents.Sadie Powell
2022-01-04Replace all uses of push_back with emplace_back.Sadie Powell
2022-01-04Consistently use #pragma once across all header files.Sadie Powell
This replaces a mixture of no include guards, ANOPE_FOO_H, and FOO_H.
2022-01-04Merge branch '2.0' into 2.1.Sadie Powell
2022-01-04Modernize CXXFLAGS on Unix and enable -Werror on CI.Sadie Powell
Also clear up warnings that this exposed.
2022-01-04Use C++11 default initializers and destructors where possible.Sadie Powell
2022-01-04Use C++11 style class/struct initialisation.Sadie Powell
2022-01-03Fix some minor issues discovered whilst working on 2.1.Sadie Powell
2022-01-03Replace anope_{final,override} with their C++11 equivalent.Sadie Powell
2022-01-03Merge branch '2.0' into 2.1.Sadie Powell
2021-12-28Add a build time check that OpenLDAP is reentrant.Sadie Powell
2021-12-28Reflect OpenLDAP 2.5 upstream change from libldap_r to libldapRobert Scheck
Starting with OpenLDAP 2.5 upstream decided to merge the non-threaded libldap_r library into the threaded libldap library. And starting with OpenLDAP 2.6 common Linux distributions such as Fedora do not ship the compatibility symbolic link anymore (which leads to a build failure), thus the linking tests for libldap_r and uses alternatively libldap. See also: - https://lists.openldap.org/hyperkitty/list/openldap-announce@openldap.org/thread/BH3VDPG6IYYF5L5U6LZGHHKMJY5HFA3L/ - https://bugzilla.redhat.com/show_bug.cgi?id=2032707
2021-12-03Send mode changes from ChanServ if the channel is not registered.Sadie Powell
Avoids calling WhoSends() on a null pointer.
2021-11-30Remove undefined behaviour around checking if this is null.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 the server name as the enforcer hostname if not otherwise set.Sadie Powell
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-08-29Send the oper mode for services pseudoclients on InspIRCd.Sadie 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-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-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