All Downloads are FREE. Search and download functionalities are using the official Maven repository.

config.email.yml Maven / Gradle / Ivy

There is a newer version: 2.1.37
Show newest version
# Email Sender Configuration
---
# Email server host name or IP address
host: ${email.host:mail.lightapi.net}
# Email SMTP port number. Please don't use port 25 as it is not safe
port: ${email.port:587}
# Email user or sender address.
user: ${email.user:[email protected]}
# Email password. If you want to put the email.pass in values.yml, you must encrypt it.
# If you don't want to put the password in the config file, you can use the following environment variable.
# EMAIL_PASS=password
pass: ${email.pass:password}
# Enable debug. Default to false.
debug: ${email.debug:true}
# Enable Authentication. Default to true.
auth: ${email.auth:true}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy