aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/config/config.yml
diff options
context:
space:
mode:
authorGlenn Goffin <glenn.goffin@gmail.com>2018-02-23 20:39:25 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2018-10-11 07:57:11 +0200
commit6a3187066f2f60120acd11b207a40bbd6d6d9519 (patch)
tree37adb96d9f1e28eefb1658a7481bc9ab5bbd83f1 /app/config/config.yml
parent102f57941ebfd03899760f8add0701952b4d982f (diff)
downloadwallabag-6a3187066f2f60120acd11b207a40bbd6d6d9519.tar.gz
wallabag-6a3187066f2f60120acd11b207a40bbd6d6d9519.tar.zst
wallabag-6a3187066f2f60120acd11b207a40bbd6d6d9519.zip
Add secure email
Diffstat (limited to 'app/config/config.yml')
-rw-r--r--app/config/config.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/app/config/config.yml b/app/config/config.yml
index 951cdf71..092f3ec0 100644
--- a/app/config/config.yml
+++ b/app/config/config.yml
@@ -79,10 +79,13 @@ doctrine_migrations:
79 79
80# Swiftmailer Configuration 80# Swiftmailer Configuration
81swiftmailer: 81swiftmailer:
82 transport: "%mailer_transport%" 82 transport: "%mailer_transport%"
83 host: "%mailer_host%" 83 username: "%mailer_user%"
84 username: "%mailer_user%" 84 password: "%mailer_password%"
85 password: "%mailer_password%" 85 host: "%mailer_host%"
86 port: "%mailer_port%"
87 encryption: "%mailer_encryption%"
88 auth_mode: "%mailer_auth_mode%"
86 spool: 89 spool:
87 type: memory 90 type: memory
88 91