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
<email
<senderAddress
>
optionalmax. 1
string
</senderAddress>
>
optionalmax. 1
</email>
<outgoingServer
<host
>
requiredmax. 1
string
</host>
<port
>
requiredmax. 1
string
</port>
<encryption
xsd:string
NONE
TLS
STARTTLS
>
optionalmax. 1
</encryption>
<authorization
Choice: Choose only ONE of the following
<none
>
required
</none>
<plain
<user
>
requiredmax. 1
string
</user>
<password
xsd:string
encrypted
optional
=
boolean
>
requiredmax. 1
</password>
>
required
</plain>
<login
<user
>
requiredmax. 1
string
</user>
<password
xsd:string
encrypted
optional
=
boolean
>
requiredmax. 1
</password>
>
required
</login>
Choice End
>
requiredmax. 1
</authorization>
>
requiredmax. 1
</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:
              encrypted: true
              value: "text"
          login:
            user: "text"
            password:
              encrypted: true
              value: "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 encrypted="true">text</password>
      </plain>
      <login>
        <user>text</user>
        <password encrypted="true">text</password>
      </login>
    </authorization>
  </outgoingServer>
</configuration>