mailclient
This configuration is required when using the plugins:
-
Data_Protection -
Subscriptions
-
Documentation
-
YAML Format
-
XML Format
| Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets. |
<configuration
>
required<outgoingServer
<authorization
Choice: Choose only ONE of the following
<login
<user
>
requiredstring
</user>
<password
>
requiredstring
</password>
Credentials with encoded password. Technical user ("username") to be used for connecting to the database, and encoded password ("password") of the technical user (see also Secrets in Configuration).
</login>
Choice End
requiredmax. 1Authorization scheme of the mail server.
</authorization>
Connection of the mail server.
</outgoingServer>
</configuration>
| This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not. |
cadenzaconfig:
settings:
mailclient:
email:
senderAddress: "text"
outgoingServer:
host: "text"
port: "text"
encryption: "NONE"
authorization:
none: {}
plain:
user: "text"
password: "text"
login:
user: "text"
password: "text"
Filename: mailclient-config.xml
| This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not. |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<configuration>
<email>
<senderAddress>text</senderAddress>
</email>
<outgoingServer>
<host>text</host>
<port>text</port>
<encryption>NONE</encryption>
<authorization>
<none/>
<plain>
<user>text</user>
<password>text</password>
</plain>
<login>
<user>text</user>
<password>text</password>
</login>
</authorization>
</outgoingServer>
</configuration>