Configure email settings

This commit is contained in:
Sonny Bakker 2021-02-02 21:37:12 +01:00
parent b16f2585c7
commit 377053797d
3 changed files with 20 additions and 7 deletions

View file

@ -9,14 +9,14 @@
# Mail Server #
###############
# mail.backend: 'smtp' # Use dummy if you want to disable email entirely
mail.host: 'smtp'
# mail.port: 25
# mail.username: ''
# mail.password: ''
# mail.use-tls: false
mail.backend: 'smtp'
mail.host: '{{ smtp_server }}'
mail.port: {{ smtp_port }}
mail.username: '{{ smtp_username }}'
mail.password: '{{ smtp_password }}'
mail.use-tls: true
# The email address to send on behalf of
# mail.from: 'root@localhost'
mail.from: '{{ smtp_username }}'
# If you'd like to configure email replies, enable this.
# mail.enable-replies: true