mirror of
https://github.com/wallabag/docker
synced 2025-12-13 09:46:27 +00:00
makes email confirmation for user registration configurable
This commit is contained in:
committed by
Nicolas Lœuillet
parent
7a476cdab0
commit
6edcd745c4
@@ -22,6 +22,7 @@
|
||||
mailer_password: "{{ lookup('env', 'SYMFONY__ENV__MAILER_PASSWORD')|default('~', true) }}"
|
||||
from_email: "{{ lookup('env', 'SYMFONY__ENV__FROM_EMAIL')|default('wallabag@example.com', true) }}"
|
||||
registration: "{{ lookup('env', 'SYMFONY__ENV__FOSUSER_REGISTRATION')|default('true', true) }}"
|
||||
registration_mail_confirmation: "{{ lookup('env', 'SYMFONY__ENV__FOSUSER_CONFIRMATION')|default('true', true) }}"
|
||||
domain_name: "{{ lookup('env', 'SYMFONY__ENV__DOMAIN_NAME')|default('https://your-wallabag-url-instance.com', true) }}"
|
||||
|
||||
tasks:
|
||||
|
||||
@@ -28,7 +28,7 @@ parameters:
|
||||
|
||||
# fosuser stuff
|
||||
fosuser_registration: {{ registration }}
|
||||
fosuser_confirmation: true
|
||||
fosuser_confirmation: {{ registration_mail_confirmation }}
|
||||
|
||||
from_email: {{ from_email }}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user