Email - 8.0

Talend ESB Infrastructure Services Configuration Guide

Version
8.0
Language
English
Product
Talend Data Fabric
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Open Studio for ESB
Talend Real-Time Big Data Platform
Module
Talend ESB
Talend Runtime
Content
Design and Development
Installation and Upgrade
Last publication date
2023-09-14

The Decanter e-mail alerter sends an e-mail for each alert.

The decanter-alerting-email feature installs the e-mail alerter:
karaf@root()> feature:install decanter-alerting-email
This feature also installs the etc/org.apache.karaf.decanter.alerting.email.cfg configuration file where you can specify the SMTP server and e-mail addresses to use:
#
# Decanter e-mail alerter configuration
#

# From e-mail address
from=

# To e-mail address
to=

# Hostname of the SMTP server
host=smtp.gmail.com

# Port of the SMTP server
port=587

# enable SMTP auth
auth=true

# enable starttls and ssl
starttls=true
ssl=false

# Optionally, username for the SMTP server
#username=

# Optionally, password for the SMTP server
#password=
  • the from property specifies the from e-mail address (for instance dev@karaf.apache.org)
  • the to property specifies the to e-mail address (for instance dev@karaf.apache.org)
  • the host property specifies the SMTP server hostname or IP address
  • the port property specifies the SMTP server port number
  • the auth property (true or false) specifies if the SMTP server requires authentication (true) or not (false)
  • the starttls property (true or false) specifies if the SMTP server requires STARTTLS (true) or not (false)
  • the ssl property (true or false) specifies if the SMTP server requires SSL (true) or not (false)
  • the username property is optional and specifies the username to connect to the SMTP server
  • the password property is optional and specifies the password to connect to the SMTP server