Trace:
Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
workflow:configure_mailserver [2019/06/14 08:15] admin created |
— (current) | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ~~NOTRANS~~ | ||
| - | ~~Title: Configure Mail server~~ | ||
| - | |||
| - | The workflow engine contains functions for sending emails. These functions need a valid mail server configuration in order to work properly. Simply add the mail settings to the [[jvx:server:lco:appconfig|application configuration]]. The following settings are possible: | ||
| - | |||
| - | <file xml config.xml> | ||
| - | <?xml version="1.0" encoding="UTF-8"?> | ||
| - | |||
| - | <application> | ||
| - | |||
| - | ... | ||
| - | |||
| - | <mail> | ||
| - | <smtp> | ||
| - | <host>smtp.gmail.com</host> | ||
| - | <port>587</port> | ||
| - | <username>user.name@gmail.com</username> | ||
| - | <password>password$secret</password> | ||
| - | <tlsenabled>true</tlsenabled> | ||
| - | <defaultsender>From <user.name@gmail.com></defaultsender> | ||
| - | </smtp> | ||
| - | </mail> | ||
| - | |||
| - | </application> | ||
| - | </file> | ||
| - | |||
