1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-15 18:57:05 +00:00

Merge pull request #1152 from wallabag/v2-forgot-password

Handle forgot password
This commit is contained in:
Nicolas Lœuillet 2015-03-30 17:05:37 +02:00
commit f98a2a0fc3
15 changed files with 526 additions and 8 deletions

View file

@ -44,5 +44,11 @@ monolog:
assetic:
use_controller: true
#swiftmailer:
# delivery_address: me@example.com
swiftmailer:
# see http://mailcatcher.me/
transport: smtp
host: 'localhost'
port: 1025
username: null
password: null

View file

@ -13,7 +13,9 @@ web_profiler:
intercept_redirects: false
swiftmailer:
disable_delivery: true
# to be able to read emails sent
spool:
type: file
doctrine:
dbal:

View file

@ -41,3 +41,4 @@ parameters:
items_on_page: 12
theme: baggy
language: en_US
from_email: no-reply@wallabag.org

View file

@ -59,4 +59,5 @@ security:
- { path: ^/api/salt, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/api/doc, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/forgot-password, roles: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/, roles: ROLE_USER }