mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-24 07:38:11 +00:00
Add secure email
This commit is contained in:
parent
102f57941e
commit
6a3187066f
2 changed files with 14 additions and 8 deletions
|
@ -79,10 +79,13 @@ doctrine_migrations:
|
||||||
|
|
||||||
# Swiftmailer Configuration
|
# Swiftmailer Configuration
|
||||||
swiftmailer:
|
swiftmailer:
|
||||||
transport: "%mailer_transport%"
|
transport: "%mailer_transport%"
|
||||||
host: "%mailer_host%"
|
username: "%mailer_user%"
|
||||||
username: "%mailer_user%"
|
password: "%mailer_password%"
|
||||||
password: "%mailer_password%"
|
host: "%mailer_host%"
|
||||||
|
port: "%mailer_port%"
|
||||||
|
encryption: "%mailer_encryption%"
|
||||||
|
auth_mode: "%mailer_auth_mode%"
|
||||||
spool:
|
spool:
|
||||||
type: memory
|
type: memory
|
||||||
|
|
||||||
|
|
|
@ -27,10 +27,13 @@ parameters:
|
||||||
|
|
||||||
domain_name: https://your-wallabag-url-instance.com
|
domain_name: https://your-wallabag-url-instance.com
|
||||||
|
|
||||||
mailer_transport: smtp
|
mailer_transport: smtp
|
||||||
mailer_host: 127.0.0.1
|
mailer_user: ~
|
||||||
mailer_user: ~
|
mailer_password: ~
|
||||||
mailer_password: ~
|
mailer_host: 127.0.0.1
|
||||||
|
mailer_port: false
|
||||||
|
mailer_encryption: ~
|
||||||
|
mailer_auth_mode: ~
|
||||||
|
|
||||||
locale: en
|
locale: en
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue