Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-08-09 | Release 2.0.10.2.0.10 | Sadie Powell | |
2021-06-17 | Fix various spelling issues (#274). | Josh Soref | |
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>. | |||
2021-06-04 | Add support for per-mode list limits. | Sadie Powell | |
2021-04-16 | Process 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-08 | Use UTC in anopesmtp to fix a C++98 compat warning. | Sadie Powell | |
2021-04-08 | Log when freopen and chown fail. | Sadie Powell | |
2021-02-19 | bots: Fix dtor channel iterator being invalidated. | Matt Schatz | |
The call to UnAssign() erases the channel from the set which invalidates the iterator in this loop. Handle this in the same manner as the NickCore dtor. | |||
2021-01-07 | Update copyright to 2021. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2021 Anope Team/i' {} \; | |||
2020-11-19 | Only grant an account an identifier when the identifier is needed. | Sadie Powell | |
2020-10-22 | Bump for 2.0.10-git. | Sadie Powell | |
2020-10-22 | Release 2.0.9.2.0.9 | Sadie Powell | |
2020-10-21 | Fix account identifiers conflicting with SQL row identifiers. | Sadie Powell | |
2020-10-07 | Bump for 2.0.9-git. | Sadie Powell | |
2020-10-07 | Release 2.0.8.2.0.8 | Sadie Powell | |
2020-10-07 | Fix last case check for le64toh. | Sadie Powell | |
2020-10-06 | Simplify the definition of _le64toh in the siphash implementation. | Sadie Powell | |
2020-10-02 | Remove use of the deprecated register keyword. | Sadie Powell | |
Fixes a build error on C++17 compilers. | |||
2020-09-28 | Fix musl build (gettext internals) | Sam James (sam_c) | |
__USE_GNU_GETTEXT is exposed by musl because they provide a GNU gettext-compatible interface. This doesn't mean they provide all the internals that glibc does. Check for __GLIBC__ if using internal _nl_msg_cat_cntr. Signed-off-by: Sam James (sam_c) <sam@cmpct.info> | |||
2020-09-10 | Implement support for immutable account identifiers. | Sadie Powell | |
2020-09-10 | Fix -Wclass-memaccess warning: | miwob | |
/anope/src/misc.cpp: In function ‘Anope::string Anope::Resolve(const Anope::string&, int)’: /anope/src/misc.cpp:742:60: warning: ‘void* memcpy(void*, const void*, size_t)’ copying an object of non-trivial type ‘union sockaddrs’ from an array of ‘struct sockaddr’ [-Wclass-memaccess] memcpy(&addr, addrresult->ai_addr, addrresult->ai_addrlen); ^ In file included from /anope/include/users.h:21, from /anope/include/bots.h:12, from /anope/include/regchannel.h:18, from /anope/include/config.h:16, from /anope/src/misc.cpp:16: /anope/include/sockets.h:27:18: note: ‘union sockaddrs’ declared here union CoreExport sockaddrs ^~~~~~~~~ | |||
2020-01-04 | Update copyright to 2020. | Robby | |
This was done with: find docs/ include/ language/ modules/ src/ *.* Config -exec sed -i 's/-20.. Anope Team/-2020 Anope Team/i' {} \; | |||
2019-12-14 | Fix a bunch of broken indentation. | Peter Powell | |
2019-11-02 | Bump for 2.0.8-git | Adam | |
2019-11-02 | Release 2.0.72.0.7 | Adam | |
2019-09-23 | Fix various typos. | Peter Powell | |
2019-09-23 | Parse 1205-style mode lists for CAPAB CHANMODES/USERMODES. | Peter Powell | |
2019-09-23 | Update the core message parser to allow parsing IRCv3 message tags. | Peter Powell | |
2019-08-24 | Insert a new line between the subject and message body when sending mail. | Robby | |
Required for RFC 2822 compliancy. Reported by jrmu via IRC. | |||
2019-05-10 | Fix globops logging if there is no predefined sender. | Robby | |
2019-02-14 | Merge pull request #224 from genius3000/2.0+deoper_superadmin | Robby | |
Ensure SuperAdmin isn't left on when de-opering | |||
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-11-10 | Update most URLs to use HTTPS if available, and fix some dead ones too. | Robby | |
2018-07-14 | Ensure SuperAdmin isn't left on when de-opering | Matt Schatz | |
2018-06-12 | anopesmtp: fix previous commit | Adam | |
2018-06-12 | Merge pull request #203 from MrGadget1024/patch-1 | Adam | |
Fix mail sending for reliability. | |||
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-12-11 | Fix mail sending for reliability. | Chris Langsenkamp | |
After sending the "\r\n.\r\n" after the mail payload, smtp_send_email was not waiting for the mail server to complete post-processing and respond with "250", but was sending "QUIT\r\n" immediately and dropping the connection. Mail server may kill the transaction if it can't send the "250" (socket closed). The changes proposed completes the mail transaction by reading for the 250 and in smtp_disconnect steps through a proper quit sequence by waiting for the 221 server response. I discovered this by including the --debug option in services.conf sendmailpath, which invoked logging in smtp_send and that slowed it down enough for the mail server to return the 250 and complete the transaction. | |||
2017-12-11 | Bump for 2.0.7-git | Adam | |
2017-12-11 | Anope 2.0.6 Release2.0.6 | Adam | |
2017-10-12 | Call OnDelChan prior to unsetting extensibles | Adam | |
cs_set uses this to set -P on permanent channels if they are persistent. Also move similar event in nickcore/nickalias destruction | |||
2017-10-12 | Add post init event | Adam | |
2017-08-05 | Use full path to file for conf.cpp file could not be opened error message | Adam | |
2017-07-02 | Default require_oper to true. Fixes os_oper unserializer because it doesn't ↵ | Adam | |
set it. | |||
2017-05-27 | Moved m_dns's reverse ip method to sockaddrs::reverse(). | Alexander Maassen | |
Updated m_dnsbl to support ipv6. | |||
2017-03-27 | regchannel: fix compile warning from previous commit | Adam | |
2017-03-27 | Fix autokick destructor to properly remove channel references from accounts | Adam | |
2017-03-16 | logger.cpp: fix variable shadow warning | Adam | |
2017-03-16 | Include ip for web clients in command log messages for source | Adam | |
2017-03-08 | modes.cpp: correct usage of format string passed to SendMode | Adam | |
2017-02-21 | Unwrap mode changes in RemoveMode before checking if it is set, fixes ↵ | Adam | |
os_mode not being able to remove extbans etc |