mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2026-03-30 18:51:22 +02:00
fix: remove expand_keys = true from Rspamd configuration (#4689)
This commit is contained in:
parent
7ec86a0e05
commit
b81e2b526f
@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. The format
|
||||
|
||||
- **Rspamd:**
|
||||
- Configuration changes now trigger a service reload instead of a restart ([#4632](https://github.com/docker-mailserver/docker-mailserver/pull/4632))
|
||||
- `expand_keys = true` has been removed from the Redis configuration ([#4689](https://github.com/docker-mailserver/docker-mailserver/pull/4689))
|
||||
- **Internal:**
|
||||
- `ENABLE_QUOTAS=1` - When an alias has multiple addresses, the first local mailbox address found will be used for the Dovecot dummy account workaround ([#4581](https://github.com/docker-mailserver/docker-mailserver/pull/4581))
|
||||
- Change Detection service - Added support for responding to updated DMS config (_Rspamd and TLS certificates_) to `ACCOUNT_PROVISIONER=LDAP` ([#4627](https://github.com/docker-mailserver/docker-mailserver/pull/4627))
|
||||
|
||||
@ -428,7 +428,6 @@ The purpose of this setting is to opt-out of starting an internal Redis instance
|
||||
|
||||
```
|
||||
servers = "redis.example.test:6379";
|
||||
expand_keys = true;
|
||||
```
|
||||
|
||||
[rspamd-redis-config]: https://rspamd.com/doc/configuration/redis.html
|
||||
|
||||
@ -125,7 +125,6 @@ function __rspamd__setup_redis() {
|
||||
# documentation: https://rspamd.com/doc/configuration/redis.html
|
||||
|
||||
servers = "127.0.0.1:6379";
|
||||
expand_keys = true;
|
||||
|
||||
EOF
|
||||
|
||||
|
||||
@ -92,7 +92,6 @@ function teardown_file() { _default_teardown ; }
|
||||
@test 'Rspamd Redis configuration is correct' {
|
||||
_run_in_container rspamadm configdump redis
|
||||
assert_success
|
||||
assert_line 'expand_keys = true;'
|
||||
assert_line 'servers = "127.0.0.1:6379";'
|
||||
|
||||
_run_in_container rspamadm configdump history_redis
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user