Skip to content

Commit

Permalink
Merge pull request #3596 from glego/add-secure-email
Browse files Browse the repository at this point in the history
Add secure email
  • Loading branch information
j0k3r committed Oct 11, 2018
2 parents 102f579 + 6a31870 commit 43b6f3a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
11 changes: 7 additions & 4 deletions app/config/config.yml
Expand Up @@ -79,10 +79,13 @@ doctrine_migrations:

# Swiftmailer Configuration
swiftmailer:
transport: "%mailer_transport%"
host: "%mailer_host%"
username: "%mailer_user%"
password: "%mailer_password%"
transport: "%mailer_transport%"
username: "%mailer_user%"
password: "%mailer_password%"
host: "%mailer_host%"
port: "%mailer_port%"
encryption: "%mailer_encryption%"
auth_mode: "%mailer_auth_mode%"
spool:
type: memory

Expand Down
11 changes: 7 additions & 4 deletions app/config/parameters.yml.dist
Expand Up @@ -27,10 +27,13 @@ parameters:

domain_name: https://your-wallabag-url-instance.com

mailer_transport: smtp
mailer_host: 127.0.0.1
mailer_user: ~
mailer_password: ~
mailer_transport: smtp
mailer_user: ~
mailer_password: ~
mailer_host: 127.0.0.1
mailer_port: false
mailer_encryption: ~
mailer_auth_mode: ~

locale: en

Expand Down

0 comments on commit 43b6f3a

Please sign in to comment.