X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/44960d6c1d2db2c496fc9ca4bcbddd7fec859f72..8b56c5ca739697747d783c5bacb294c5fd570c42:/ChangeLog diff --git a/ChangeLog b/ChangeLog index 13a17f7..177155a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,580 @@ /*********************************************************************** X3 ChangeLog +2010-09-17 Matthew Beeching + + * src/chanserv.c: Updated ChanServ.staff, ChanServ.ircops and + ChanServ.helpers to hide users with user mode +H (hide oper). + +2010-09-08 Matthew Beeching + + * src/proto-p10.c: Replaced some horrible code for formatting a + channel mode string and fix for a bug where chan mode +A was + being ignored. + +2010-08-29 Matthew Beeching + + * src/chanserv.c: Changed wheel of misfortune nick change pseudo + user to use a hard coded host name to prevent accidentally giving + out a users real host. + +2010-08-19 Matthew Beeching + + * src/proto-p10.c: Changed TOK_PRIVS to "PR" to match current ircu + distributions. + +2010-07-31 Matthew Beeching + + * src/proto-common.c: Added hg revision information to VERSION + reply to match version strings everywhere else. + +2010-07-30 Matthew Beeching + + * src/Makefile.in: Added version.c generation at compile time + + * src/modcmd.c: Updated to use cvs_version from version.c + + * src/version.c.SH: Added version.c.SH to generate version.c + + * src/version.h: Added version.h + +2010-07-07 Matthew Beeching + + * src/hash.h: Added support for user modes +D, +R, +W, +H, +L + and +q. + + * src/opserv.c: Added support for user modes +D, +R, +W, +H, +L + and +q. + + * src/proto-p10.c: Added support for user modes +D, +R, +W, +H, + +L and +q. + +2010-07-07 Matthew Beeching + + * src/hash.h: Added support for user modes +z and +a and fixed + some comments. + + * src/opserv.c: Added support for user modes +z and +a and + added support to TRACE/ADDALERT CHECKRESTRICTIONS criteria for + channel mode +a and +Z. + + * src/proto-p10.c: Added support for user modes +z and +a. + +2010-07-07 Matthew Beeching + + * src/opserv.c: Added support to TRACE/ADDALERT CHECKRESTRICTIONS + criteria for channel mode +O and +r. + +2010-07-03 Matthew Beeching + + * src/chanserv.c: Removed extra 'is' from CSMSG_SMURF_TARGET. + +2010-06-06 Matthew Beeching + + * src/proto-p10.c: Fix for crash on BURST (B) message for a channel + with +L, at least one ban or except, and no users. + +2010-05-21 Matthew Beeching + + * src/modcmd.c: Added support for fall back replacements in + command bindings. For example if you specify $1n instead of $1, + then the users nick will be used if param 1 is not supplied. + +2010-05-14 Matthew Beeching + + * src/nickserv.c: Fix for NickServ NICKINFO using the wrong + lastseen timestamp. + +2010-05-13 Matthew Beeching + + * src/proto-p10.c: Fixed support for channel mode +a (Admins only). + +2010-05-12 Matthew Beeching + + * tools/db.php: Rewrote parser function as a class and faster + parsing. + +2010-05-11 Matthew Beeching + + * src/nickserv.c: Added nick expiration support. + + * src/nickserv.h: Added nick expiration support. + + * x3.conf.example: Added nick expiration support. + +2010-05-06 Matthew Beeching + + * src/nickserv.c: Added SET action for SEARCH. + + * src/nickserv.help: Added SET action for SEARCH. + +2010-05-06 Matthew Beeching + + * src/nickserv.c: Added NickServ search title criteria. + + * src/nickserv.help: Added NickServ search title criteria. + +2010-04-29 Matthew Beeching + + * src/opserv.c: Minor typo in previous commit where returning 0 + when it should have been 1 from opserv_join_check(). + +2010-04-29 Matthew Beeching + + * src/opserv.c: Fix for possible bug in opserv_join_check(). + +2010-04-23 Matthew Beeching + + * src/log.c: Modified X3.last to only show host and ident to + opers. + +2010-03-15 Matthew Beeching + + * ChangeLog: Abusing to figure out mercurial a bit. + +2010-03-13 Matthew Beeching + + * src/hash.h: Changed HOSTLEN to match Nefarious. + +2010-03-03 Matthew Beeching + + * src/proto-p10.c: Fixed bug in P10 B64 IPv6 parsing where the + entire IPv6 IP after the :: was ommited. + +2010-02-27 Matthew Beeching + + * src/proto-p10.c: Added message handlers for ZLINE and REMOVE + to ignore both messages + +2010-02-05 Matthew Beeching + + * src/nickserv.help: Fix for a minor documentation error where $S + was used instead of $N. + +2010-01-14 Matthew Beeching + + * src/nickserv.c: Added support for LDAP auth registering initial + nick when nick registration is enabled. + +2010-01-09 Neil Spierling + + * Srvx sync. Author: Michael Poole. + + * src/ioset.c (ioset_listen): Linux -- reasonably -- requires that + SO_REUSEADDR be set on a socket before binding it to an in-use socket. + So do that. + + * src/sar.c: Convert "struct sockaddr_storage" to "void *" to comply + with C99's strict(er) aliasing rules. Allocate off the stack or + heap, as appropriate. Add new function sar_free_nameserver() to + clean up the heap-allocated data. + +2010-01-07 Neil Spierling + + * src/chanserv.c: 8ball will now accept "what colour". + +2009-12-18 Neil Spierling + + * x3.conf.example: Added type 8 for Nefarious 1.3.0. + + * src/proto-p10.c: Only use the old cloak.c code if type 7 is given. + If type 8 is given then the cloaked hosts are picked up during burst + (+cC) + +2009-12-17 Neil Spierling + + * src/log.c: Revert message type to 5. + +2009-12-17 Neil Spierling + + * src/mod-track.c: Fixed a crash with net rider kicks. + +2009-12-12 Alex Schumann + + src/x3ldap.c: Fix crash bug with ldap adding users. Deal with some warnings. + + src/x3ldap.h: Deal with some warnings. + +2009-12-09 Henrik Stuart + + src/mod-python.c: add support for module_register. + +2009-12-09 Henrik Stuart + + src/mod-python.c: add support for log_register_type. + +2009-12-09 Neil Spierling + + src/nickserv.c: Shuffle the auto oper functions around to fix a + desync issue. + + src/proto-p10.c: Ignore PRIV_NONE within the first 5 seconds of + a client's connection. Temp fix for now. + +2009-12-06 Matthew Beeching + + * src/chanserv.c: Removed seemingly unnecessary "cannot invite" + warning from chan_opt_automode. + +2009-12-02 Matthew Beeching + + * src/nickserv.c: Added merging SSL fingerprint lists during + account merging. + +2009-12-01 Matthew Beeching + + * src/opserv.c: Added ADDALERT reactions noticeuser and msguser + to go with trace reactions notice and privmsg. + +2009-11-29 Matthew Beeching + + * src/nickserv.c: Rewrote parts of loc_auth() to get it working + the same as cmd_auth() with regards to SSL fingerprint support. + +2009-11-29 Neil Spierling + + * src/nickserv.c: Small tweak. + +2009-11-29 Neil Spierling + + * src/nickserv.c: Small tweak to the password checks with sslfp LOC. + +2009-11-29 Neil Spierling + * src/nickserv.c: Added SSL fingerprint support to LOC. + + * src/nickserv.h: Added sslfp to loc_auth. + + * src/proto-p10.c: Added support for the new S loc auth type. + +2008-11-28 Matthew Beeching + + * src/nickserv.help: Added help for ADDSSLFP, DELSSLFP, OADDSSLFP + and ODELSSLFP + + * src/nickserv.c: Added support for SSL fingerprint authentication. + + * src/nickserv.h: Added support for SSL fingerprint authentication. + +2009-11-28 Matthew Beeching + + * src/mod-memoserv.c: Fix for bug where MemoServ is created as a + local bot but not registered as a service on first startup. + +2009-11-26 Matthew Beeching + + * src/chanserv.c: Fixed a missing ',' in cmd_myaccess output. + +2009-11-26 Henrik Stuart + + * src/common.h src/main-common.c: add extra parameter to reg_exit_func and + exit_func_t. + + * src/proto-p10.c src/mod-qserver.c src/chanserv.c src/mod-snoop.c + src/hash.c src/helpfile.c src/gline.c src/global.c src/mod-helpserv.c + src/opserv.c src/timeq.c src/saxdb.c src/modcmd.c src/saxdb.h + src/mod-sockcheck.c src/shun.c src/mod-python.c src/spamserv.c + src/mail-common.c src/mod-memoserv.c src/mod-track.c src/log.c src/ioset.c + src/nickserv.c src/main.c src/sar.c: collateral evolution fixes due to + exit_func change. + +2009-11-26 Henrik Stuart + + * src/proto-common.c: fix typo in malloc variable name. + +2009-11-26 Henrik Stuart + + * src/modcmd.h src/modcmd.c: add extra parameter to reg_svccmd_unbind_func + and svccmd_unbind_func_t. + + * src/chanserv.c: collateral evolution fixes due to svccmd_unbind_func + change. + +2009-11-24 Henrik Stuart + + * src/proto.h src/proto-common.c: add extra parameter to + reg_mode_change_func and mode_change_func_t. + + * src/chanserv.c: collateral evolution fixes due to mode_change_func + change. + +2009-11-24 Henrik Stuart + + * src/nickserv.h src/nickserv.c: add extra parameter to reg_unreg_func and + unreg_func_t. + + * src/chanserv.c src/mod-helpserv.c src/mod-memoserv.c: collateral + evolution fixes due to unreg_func change. + +2009-11-24 Henrik Stuart + + * src/nickserv.h src/nickserv.c: add extra parameter to reg_auth_func and + auth_func_t. + + * src/chanserv.c src/mod-snoop.c src/global.c src/mod-helpserv.c + src/opserv.c src/mod-memoserv.c src/mod-track.c: collateral evolution + fixes due to auth_func change. + +2009-11-24 Henrik Stuart + + * src/nickserv.h src/proto-common.c: add extra parameter to + reg_user_mode_func and user_mode_func_t. + + * src/mod-snoop.c src/mod-track.c: collateral evolution fixes due to + user_mode_func change. + +2009-11-24 Henrik Stuart + + * src/nickserv.h src/proto-common.c: add extra parameter to + reg_channel_mode_func and channel_mode_func_t. + + * src/chanserv.c src/mod-snoop.c src/mod-track.c: collateral evolution + fixes due to channel_mode_func change. + +2009-11-24 Henrik Stuart + + * src/hash.c src/hash.h: add extra parameter to reg_kick_func and + kick_func_t. + + * src/chanserv.c src/mod-snoop.c src/mod-track.c: collateral evolution + fixes due to kick_func change. + +2009-11-24 Henrik Stuart + + * src/hash.c src/hash.h: add extra parameter to reg_part_func, + unreg_part_func, and part_func_t. + + * src/chanserv.c src/mod-snoop.c src/mod-helpserv.c src/spamserv.c + src/mod-track.c: collateral evolution fixes due to part_func change. + +2009-11-24 Henrik Stuart + + * src/hash.c src/hash.h: add extra parameter to reg_del_channel_func and + del_channel_func_t. + + * src/opserv.c src/proto-p10.c: collateral evolution fixes due to + del_channel_func change. + +2009-11-23 Matthew Beeching + + * src/nickserv.c: Removed 2 nonsensical spaces in + *NickServ.accountinfo output for "Karma" + +2009-11-22 Matthew Beeching + + * src/nickserv.c: Fix for bug allowing the use of odelcookie + to result in an account's password changing when it shouldn't. + +2009-11-22 Matthew Beeching + + * src/nickserv.c: Added fix for LDAP password not being updated + on odelcookie where account password is changed anyway. + +2009-11-21 Matthew Beeching + + * src/x3ldap.c: Updated OpServ level in LDAP feature to remove + the attribute when 0 instead of setting it to 0 + + * src/x3ldap.h: Updated OpServ level in LDAP feature to remove + the attribute when 0 instead of setting it to 0 + + * src/nickserv.c: Updated OpServ level in LDAP feature to remove + the attribute when 0 instead of setting it to 0 + +2009-11-21 Matthew Beeching + + * src/x3ldap.c: Fix for bug allowing accounts in LDAP to + authenticate to unactivated accounts. + + * src/nickserv.c: Fix for bug allowing accounts in LDAP to + authenticate to unactivated accounts. + +2009-11-16 Matthew Beeching + + * src/proto-p10.c: Added support for MARK SSLCLIFP. + + * src/hash.h: Added support for MARK SSLCLIFP. + + * src/opserv.c: Added SSLCLIFP mark to cmd_whois. + +2009-11-16 Matthew Beeching + + * src/nickserv.c: Fix for crash in cmd_oregister due to incorrect + parameter counts. + +2009-11-15 Matthew Beeching + + * src/hosthiding.c: Fix for crash bug in make_virthost() when host + name doesnt have a '.' in it. + +2009-11-15 Henrik Stuart + + * src/hash.c: fix variable set for registering nick change functions. + +2009-11-14 Matthew Beeching + + * src/nickserv.c: Fix for bug #2869968 (*NickServ.oregister allowing + invalid handles) + +2009-11-01 Henrik Stuart + + * src/hash.h src/hash.c: add extra parameter to new_channel_func_t and + reg_new_channel_func. + + * src/chanserv.c src/opserv.c: add extra NULL argument/parameter to + reflect change in hash. + +2009-11-01 Henrik Stuart + + * src/nickserv.h src/nickserv.c: add extra parameter to + handle_merge_func_t and reg_handle_merge_func. + + * src/mod-helpserv.c: add extra NULL argument/parameter to reflect change + in nickserv. + +2009-11-01 Henrik Stuart + + * src/nickserv.h src/nickserv.c: add extra parameter to allowauth_func_t + and reg_allowauth_func. + + * src/mod-helpserv.c: add extra NULL argument/parameter to reflect change + in nickserv. + +2009-11-01 Henrik Stuart + + * src/nickserv.h src/nickserv.c: add extra parameter to failpw_func_t and + reg_failpw_func. + + * src/mod-helpserv.c: add extra NULL argument/parameter to reflect change + in nickserv. + +2009-11-01 Henrik Stuart + + * src/hash.h src/hash.c: add extra parameter to topic_func_t and + reg_topic_func. + + * src/chanserv.c src/mod-python.c: add extra NULL argument/parameter to + reflect change in hash. + +2009-11-01 Henrik Stuart + + * src/proto.h src/proto-common.c: add extra parameter to chanmsg_func_t + and reg_chanmsg_func. + + * src/chanserv.c src/modcmd.c: add extra NULL argument/parameter to + reflect change in proto. + +2009-10-31 Henrik Stuart + + * src/nickserv.h src/nickserv.c: add extra parameter to + handle_rename_func_t and reg_handle_rename func. + + * src/chanserv.c src/mod-helpserv.c src/mod-memoserv.c: add extra NULL + argument/parameter to reflect change in nickserv. + +2009-10-30 Henrik Stuart + + * src/mod-snoop.c src/mod-helpserv.c src/mod-sockcheck.c src/mod-track.c: + fix missed NULL argument/parameter additions from earlier commits. + +2009-10-30 Henrik Stuart + + * src/hash.h src/hash.c: add extra parameter to join_func_t and + reg_join_func. + + * src/chanserv.c src/opserv.c src/mod-python.c src/spamserv.c: add extra + NULL argument/parameter to reflect change in hash. + +2009-10-30 Henrik Stuart + + * src/hash.h src/hash.c: add extra parameter to nick_change_func_t and + reg_nick_change_func. Also fix memory leaks from not freeing extras lists + for some callback routines. + + * src/chanserv.c src/opserv.c src/mod-python.c src/spamserv.c + src/nickserv.c src/modcmd.c: add extra NULL argument/parameter to reflect + change in hash. + + * src/proto-p10.c: fix logic for calling call_new_user_funcs. + +2009-10-30 Henrik Stuart + + * src/proto.h: add extra parameter to reg_oper_func and oper_func_t. + + * src/global.c: add extra NULL argument parameter to reflect changes. + + * src/proto-common.c: add extra parameter to implementation of + reg_oper_func and reflect the extra parameter in call_oper_funcs. + + * src/proto-p10.c: free storage for extra parameters. + +2009-10-28 Henrik Stuart + + * src/hash.h src/hash.c: add extra parameter to del_user_func_t, + reg_del_user_func, and unreg_del_user_func. Add new call_del_user_funcs + function to abstract hash internals from outside callers. + + * src/opserv.c src/mod-python.c src/spamserv.c src/nickserv.c: add extra + NULL argument(parameter to reflect change in hash. + + * src/proto-p10.c: use call_del_user_funcs instead of interfacing with + hash.c internals directly. Remove unused code due to this change. + + * src/proto-common.c: remove reference to hash internals. + +2009-10-28 Matthew Beeching + + * src/x3ldap.c: Added ldap_do_oslevel() to set OpServ access level in + LDAP. + + * src/x3ldap.h: Added ldap_do_oslevel() to set OpServ access level in + LDAP. + + * src/nickserv.c: Added configuration option for OpServ access level + LDAP attribute name and call to ldap_do_oslevel() on access level + change. + + * src/nickserv.h: Added configuration option for OpServ access level + LDAP attribute name. + + * x3.conf.example: Added configuration option for OpServ access level + LDAP attribute name. + +2009-10-27 Henrik Stuart + + * src/hash.h src/hash.c: add extra parameter to new_user_func_t and + reg_new_user_func. Add new call_new_user_funcs function to abstract hash + internals from outside callers. + + * src/proto-p10.c: use call_new_user_funcs instead of interfacing with + hash.c internals directly. Remove unused code due to this change. + + * src/global.c src/opserv.c src/mod-python.c src/spamserv.c + src/nickserv.c: add extra NULL argument/parameter to reflect change in + hash. + + * src/proto-common.c: remove reference to hash internals. + +2009-10-27 Henrik Stuart + + * src/hash.h: add extra parameter to server_link_func_t and + reg_server_link_func. Add new call_server_link_funcs function to abstract + hash internals from outside callers. + + * src/proto-p10.c: call call_server_link_funcs rather than interfacing + directly with hash.c internals. + + * src/chanserv.c: add extra NULL-argument/parameter to server link + handler. + + * src/hash.c: add extra parameter to reg_server_link_func and introduce + call_server_link_funcs to shield external callers from the functionality. + + * src/proto-common.c: remove extern definitions for the hash.c structures + for the server link callback structure. + + * src/mod-python.c: add extra NULL-argument/parameter to server link + handler. + 2009-10-27 Henrik Stuart * src/mod-python.c: remove unused code.