Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-23 | Fix various typos. | Peter Powell | |
2019-01-01 | Update copyright to 2019. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2019 Anope Team/i' {} \; | |||
2018-04-25 | Update copyright to 2018. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2018 Anope Team/i' {} \; | |||
2017-03-30 | m_regex_posix: use REG_ICASE | Adam | |
2017-01-17 | Cleanup some excess whitespaces and tabs, and fix a few typos along the way. | Robby | |
2017-01-16 | Update copyright to 2017. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2017 Anope Team/i' {} \; Added missing copyright headers to files that didn't have it yet. | |||
2016-11-05 | irc2sql: fix changing status modes to update ison modes | Adam | |
2016-11-05 | irc2sql: fix crash on shutdown with no sql | Adam | |
2016-11-05 | irc2sql: update max topic len to 512 | Adam | |
2016-11-04 | m_mysql: null empty columns instead of setting to '' | Adam | |
2016-11-04 | irc2sql: fix a couple SQL errors | Adam | |
2016-09-25 | Merge pull request #177 from attilamolnar/2.0+sqliteleak | Adam | |
m_sqlite: Fix possible memory leak when opening a database fails | |||
2016-09-05 | m_ssl_openssl: allow certificate chain files to be used | Adam | |
2016-08-17 | m_sqlite: Fix possible memory leak when opening a database fails | Attila Molnar | |
2016-04-13 | Remove support for DH-AES and DH-BLOWFISH. | Peter Powell | |
These SASL mechanisms are considered insecure and should not be used anymore. | |||
2016-01-28 | Update copyright to 2016. This was done with: | Robby | |
find include/ src/ lang/ docs/ modules/ *.* Config -exec sed -i 's/-20.. Anope Team/-2014 Anope Team/i' {} \; Added missing copyright headers to files that didn't have it yet. Fixed some whitespace and blank lines along the way. | |||
2016-01-23 | Update m_ssl_gnutls Windows library version to libgnutls-30 | Adam | |
2016-01-23 | Fix m_sql_oper to compile from the cleanup of the other day | Adam | |
2016-01-19 | Fix various inconsistencies/crashes related to having multiple opers ↵ | Adam | |
configured for the same user through combinations of os_oper/config/m_sql_oper | |||
2015-09-23 | Clear regex xlines on unload, which happens on shutdown, even though they ↵ | Adam | |
are perm modules | |||
2015-09-06 | Merge pull request #126 from SaberUK/2.0+typos | Adam | |
Fix a ton of typos. | |||
2015-07-23 | Remove unused variables from m_ldap | Adam | |
2015-07-23 | Set LDAP_OPT_PROTOCOL_VERSION 3 etc on reconnect, too | Adam | |
2015-07-08 | Fix a ton of typos. | Peter Powell | |
2015-04-30 | irc2sql: handle away messages. | Jyzee | |
2015-03-22 | Fix m_ldap_oper to build | Adam | |
2015-03-12 | Merge pull request #113 from attilamolnar/2.0+openssl | Adam | |
m_ssl_openssl: SSL context option changes | |||
2015-03-12 | m_ssl_openssl: Allow disabling SSLv3 via the config | Attila Molnar | |
2015-03-12 | m_ssl_openssl: Set sane default context options | Attila Molnar | |
2015-03-11 | Redesign m_ldap to no longer rely on undefined behavior | Adam | |
Accessing the same LDAP* from multiple threads at once is always undefined, even if one thread is just polling ldap_result. Instead keep one thread per connection and issue blocking queries on the thread. | |||
2015-01-28 | More properly track topic change sources and allow users with access to ↵ | Adam | |
change topics through topiclock | |||
2014-12-02 | Link m_ldap against ldap_r not ldap | Adam | |
2014-10-16 | Validate credentials sent via sasl more | Adam | |
2014-10-14 | Fix module event prioritization which was broken with the newer | Adam | |
auto-attach event stuff. Also remove logically dead code from os_defcon, and make os_defcon akill similar masks to os_session when enforcing session akills. Fixes #1618 which relies on os_session to be prioritized before os_defcon. | |||
2014-09-14 | changed the engine of the chanstats table from InnoDB back to MyISAM to ↵ | DukePyrolator | |
avoid increasing the auto_increment counter on each INSERT IGNORE. For existing tables please manually run 'ALTER TABLE anope_chanstats ENGINE=MyISAM'. | |||
2014-07-11 | Fix Log() calls in m_ldap_oper | Adam | |
2014-06-09 | Correct wording of log message when ldap services are created | Adam | |
2014-05-30 | Fix Windows build and update library names to the newer ones. | Adam | |
Also fix crash on Windows when unloading a module because it threw an exception. | |||
2014-05-20 | Speed up akill xline checks | Adam | |
Cache xline nick, user, host, etc instead of rebuilding it everytime its requested. Store users ip in sockaddr form and not string form to prevent having to rebuild sockaddrs when checking xlines. Also do not try to convert empty config values in Config::Get as this can be rather common if a non string configuration value is not set, and the cost of the ConvertException is great. | |||
2014-05-01 | Pass password to nick register event so modules like m_ldap_authentication ↵ | Adam | |
can create the respective account using the decrypted password which might not always be available | |||
2014-03-17 | m_ssl_gnutls: Fix deprecation warnings when using newer GnuTLS versions. | Robby- | |
2014-03-11 | Set LDAP_OPT_NETWORK_TIMEOUT to 0 in m_ldap to prevent the asynchronous | Adam | |
library cals from blocking... Fix multiple possible null pointer derefs if modules pass null interfaces (none currently do, but it is allowed) Fix memory leak from results when services are destructed Timeout queries that never come back. | |||
2014-03-10 | Fix compile error in m_sasl_dh-aes and m_sasl_dh-blowfish on unusually old ↵ | Adam | |
g++ versions | |||
2014-03-09 | irc2sql: removed the currentusers field from the chan table, keeping it ↵ | DukePyrolator | |
updated on each join/part eats too many ressources | |||
2014-02-24 | Fix m_ssl_gnutls to send its cert. Most of this is from Attila. | Adam | |
2014-02-22 | Make m_ssl_gnutls work with at least GnuTLS v2.8 | Attila Molnar | |
2014-02-20 | enc_bcrypt.cpp: Get rid of the libxcrypt dependency by including code from ↵ | Daniel Vassdal | |
libxcrypt, and move enc_bcrypt out of extras | |||
2014-02-17 | Merge pull request #52 from attilamolnar/2.0+gnutls | Adam | |
Add support for SSL connections powered by GnuTLS | |||
2014-02-17 | Move encryption.h to include/modules | Adam | |
2014-02-17 | Add m_ssl_gnutls | Attila Molnar | |