summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2024-12-08Release 2.0.17.2.0.17Sadie Powell
2024-11-19Only process sockets after loading the db when using db_sql{_live}.Sadie Powell
This avoids slow startups for the 95% of users who are using the db_flatfile database backend.
2024-11-16Process all socket events before connecting to the uplink.Sadie Powell
This ensures that the SQL import actually succeeds before we do something that might terminate the process.
2024-11-11Fix using User::Account where User::IsIdentified should be used.Sadie Powell
The former causes a dereference which cause a database update. This is not good for performance with db_sql_live on bigger networks.
2024-10-27Switch the city version of geoipupdate to a non-corrupt database.Sadie Powell
Closes #439.
2024-10-13Update the IRC server to point to Teranova.Sadie Powell
2024-10-12Switch geoipupdate.sh to use a mirror as the original data is gone.Sadie Powell
2024-09-17Remove config option for options:warningtimeout.Sadie Powell
This hasn't done anything since the early 1.9 releases I'm not sure why it hasn't been removed already.
2024-07-19Bump for 2.0.17-git.Sadie Powell
2024-07-19Release 2.0.16.2.0.16Sadie Powell
2024-03-15Fix sending emails to nicks ending with a backslash.Sadie Powell
2024-02-17Mark as 2.0.16-git.Sadie Powell
2024-02-17Release 2.0.15.2.0.15Sadie Powell
2024-02-17Update the copyright headers for 2024.Sadie Powell
2024-02-11Update the Windows dependencies.Sadie Powell
2023-12-17Misc grammar fixes.Sadie Powell
2023-12-08messages: fix incorrect format specifierMingjie Shen
Calling a printf-like function with the wrong type of arguments causes unpredictable behavior. Signed-off-by: Mingjie Shen <shen497@purdue.edu>
2023-08-06Mark as 2.0.15-git.Sadie Powell
2023-08-06Release 2.0.14.2.0.14Sadie Powell
2023-07-11Allow Anope to look up multiple DNS results.Sadie Powell
For fixing bug 1756.
2023-07-11Fix sending log messages from a renamed pseudoclient.Sadie Powell
If a command is named e.g. nickserv/wibble it previously tried to look up the nickserv service and if this service didn't exist then it would fall back to sending from the first available service. This caused problems if the NickServ service had been renamed to something else. Reported by @AndrioCelos on IRC.
2023-07-09Allow customising the email content type.Sadie Powell
This will allow people to send emails using HTML or non UTF-8 text.
2023-07-06Fix a crash when a module tries to get another module's config.Sadie Powell
2023-06-06Terminate lines with CR+LF instead of just LF when sending an email.Sadie Powell
From https://www.rfc-editor.org/rfc/rfc5321#section-2.3.1: > Lines consist of zero or more data characters terminated by the > sequence ASCII character "CR" (hex value 0D) followed immediately by > ASCII character "LF" (hex value 0A).
2023-06-02add gettext to conan depsAdam
2023-06-02use Conan for extra's dependencies on WindowsAdam
conan install src\win32\conanfile.txt --build=missing cmake -B build . cmake --build build --config Release --target PACKAGE
2023-06-01Mark as 2.0.14-git.Sadie Powell
2023-06-01Release 2.0.13.2.0.13Sadie Powell
2023-05-28regchannels: remove dependency on no-delete-null-pointer-checksAdam
2023-05-28config: remove dependency on no-delete-null-pointer-checksAdam
2023-05-11Fix not being able to log into oper accounts when DNS fails.Sadie Powell
2023-05-04Avoid returning null when a config tag does not exist.Sadie Powell
This invokes undefined behaviour on modern compilers.
2023-02-06Fix crashing when encountering an unterminated commented block.Sadie Powell
2022-12-31Update the copyright headers for 2023.Sadie Powell
2022-12-18The fantasy:name field is allowed to contain spaces.Sadie Powell
2022-12-18Show the invalid config value in the rejection message.Sadie Powell
2022-12-09Mark as 2.0.13-git.Sadie Powell
2022-12-09Release 2.0.12.2.0.12Sadie Powell
2022-09-12Fix allowing spaces in some config fields that shouldn't contain them.Sadie Powell
2022-04-22Release 2.0.11.2.0.11Sadie Powell
2022-01-09Use utf-8 encoding for outgoing email (#286)k4bek4be
2022-01-09Add a "Network Service" (RPL_WHOISOPERATOR) line to WHOIS repliesk4be
2022-01-06Update the copyright headers for 2022.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-09Release 2.0.10.2.0.10Sadie Powell
2021-06-17Fix various spelling issues (#274).Josh Soref
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>.
2021-06-04Add support for per-mode list limits.Sadie Powell
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-08Use UTC in anopesmtp to fix a C++98 compat warning.Sadie Powell