summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-04-01Release 2.1.4.2.1.4Sadie Powell
2024-03-31Fix some typos in the changelog.Sadie Powell
2024-03-31Add a default value for sendmailpath.Sadie Powell
2024-03-29Update the changelogs.Sadie Powell
2024-03-29Fix the default value of accessmax in cs_access.Sadie Powell
2024-03-27Alias ACCESS to ALIST now the former is unused.Sadie Powell
2024-03-26Add more nick options to webcpanel's nickserv/info page.Sadie Powell
2024-03-26Remove some leftover references to nickserv/access.Sadie Powell
2024-03-26Allow specifying the webcpanel template directory directly.Sadie Powell
There's no need to hardcode a base path here.
2024-03-26Fix some spelling issues in the webcpanel that were missed earlier.Sadie Powell
2024-03-26Use consistent headers and footers on all webcpanel templates.Sadie Powell
2024-03-26Flatten the webcpanel hierarchy slightly.Sadie Powell
2024-03-20Add the --nopid option to disable writing a pidfile.Sadie Powell
This is useful for init scripts that don't fork.
2024-03-20Fix deleting pidfiles.Sadie Powell
2024-03-19Fix the Windows build.Sadie Powell
2024-03-19Use paths relative to data/conf in the config file.Sadie Powell
This was done in some places already but not consistently. Closes #349.
2024-03-19Put the webcpanel directory in the data directory not a subdir.Sadie Powell
2024-03-19Allow using absolute paths in more places.Sadie Powell
2024-03-19Redocument deprecated encryption modules.Sadie Powell
2024-03-19Prevent using enc_posix as a primary encryption module.Sadie Powell
2024-03-18Add verify-only support for POSIX crypt() hashes from Atheme.Sadie Powell
2024-03-18Fix an off by one error in enc_sha2.Sadie Powell
2024-03-18Fix unnecessary uses of std::string.Sadie Powell
2024-03-18Improve sending email.Sadie Powell
- Use consistent line endings as expected by the email spec. - Don't require admins to escape . at the start of lines. - Log the reason why sending email fails.
2024-03-18Fix not storing the start time after calling UpdateTime.Sadie Powell
2024-03-18Use clock_gettime if it is available.Sadie Powell
2024-03-15Use consistent casing when referring to vhosts and vidents.Sadie Powell
2024-03-15Fix a format-extra-args warning on some versions on GCC.Sadie Powell
2024-03-15Bump actions/checkout from 3 to 4dependabot[bot]
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
2024-03-15Merge branch '2.0' into 2.1.Sadie Powell
2024-03-15Dependabot requires that the target-branch is a string.Sadie Powell
2024-03-15Consistently use READ_ONLY_MODE everywhere.Sadie Powell
2024-03-15Merge branch '2.0' into 2.1.Sadie Powell
2024-03-15Send dependabot pull requests to the 2.1 branch.Sadie Powell
2024-03-14Initialize timer members with constructor initialization.Sadie Powell
2024-03-14Restore some functionality that was removed in an earlier commit.Sadie Powell
2024-03-14Fix a warning when building with Clang.Sadie Powell
2024-03-14Rework sending global notices.Sadie Powell
Admins can now queue multiple messages and send them when they are ready. This is fully compatible with the previous global behaviour. Admins can now also send messages to individual servers. This is useful for informing users of maintenance due to downtime.
2024-03-12Require that at least one encryption module is loaded.Sadie Powell
2024-03-12Add command handlers for encap commands on InspIRCd.Sadie Powell
2024-03-12Show the full command in CONFIRM_DROP.Sadie Powell
2024-03-12Fix the reason when kicking users from suspended channels.Sadie Powell
Closes #372.
2024-03-12Merge branch '2.0' into 2.1.Sadie Powell
2024-03-12Add a workaround for users matching expired sqlines.Sadie Powell
I'll fix this properly in 2.1 because I don't want to make big changes to 2.0. Closes #384.
2024-03-12Fix expiring forbids.Sadie Powell
2024-03-12Respect --noexpire in cs_suspend and ns_suspend.Sadie Powell
2024-03-12Fix expiring channel suspensions.Sadie Powell
Closes #386.
2024-03-12Fix expiring nick suspensions.Sadie Powell
Closes #376.
2024-03-12Fix duplicate messages when synconset/syncongroup is set.Sadie Powell
Closes #366.
2024-03-12Implement support for challenge authentication on InspIRCd.Sadie Powell