schema: add full mailer defaults

This commit is contained in:
leo 2023-05-21 00:39:40 +02:00
parent 9b44edb5a5
commit d4734faf25
Signed by: wanderer
SSH Key Fingerprint: SHA256:Dp8+iwKHSlrMEHzE3bJnPng70I7LEsa3IJXRH/U+idQ
3 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ Schema =
./schema.dhall
sha256:3f615a66aa32fc6c61a7ecfa42b809efcd42acbccf55ed7b0067bd11636debb2
sha256:c2e9212c3d2d45b6706abbe96c5af21dabc0555ecf8e5b9eb824d479b71b88d1
? ./schema.dhall
, Schema/validate =
./validate.dhall

View File

@ -62,9 +62,15 @@ let Schema =
, Mailer =
{ Enabled = False
, Protocol = "smtps"
, SMTPAddr = ""
, SMTPPort = 465
, ForceTrustServerCert = False
, EnableHELO = False
, HELOHostname = ""
, Auth = ""
, From = ""
, User = ""
, Password = ""
, SubjectPrefix = "pcmt - "
, SendPlainText = True
}

View File

@ -5,7 +5,7 @@ let Prelude =
let Schema =
./schema.dhall
sha256:3f615a66aa32fc6c61a7ecfa42b809efcd42acbccf55ed7b0067bd11636debb2
sha256:c2e9212c3d2d45b6706abbe96c5af21dabc0555ecf8e5b9eb824d479b71b88d1
? ./schema.dhall
let Schema/validate