Moved application.ini sieve_auth_plain_initial to per domain config

This commit is contained in:
the-djmaze 2024-03-24 16:49:00 +01:00
parent 3513669412
commit b3c10190cb
5 changed files with 15 additions and 12 deletions

View file

@ -45,6 +45,7 @@ const
sievePort: 4190,
sieveType: 0,
sieveTimeout: 10,
sieveAuthLiteral: true,
smtpHost: '',
smtpPort: 25,
@ -108,6 +109,7 @@ const
},
Sieve: {
enabled: !!oDomain.sieveEnabled(),
authLiteral: !!oDomain.sieveAuthLiteral(),
host: oDomain.sieveHost,
port: oDomain.sievePort,
secure: pInt(oDomain.sieveType()),