mirror of
https://github.com/wallabag/docker.git
synced 2025-12-22 03:38:32 +01: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) }}"
|
mailer_password: "{{ lookup('env', 'SYMFONY__ENV__MAILER_PASSWORD')|default('~', true) }}"
|
||||||
from_email: "{{ lookup('env', 'SYMFONY__ENV__FROM_EMAIL')|default('wallabag@example.com', 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: "{{ 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) }}"
|
domain_name: "{{ lookup('env', 'SYMFONY__ENV__DOMAIN_NAME')|default('https://your-wallabag-url-instance.com', true) }}"
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
|
|||||||
@ -28,7 +28,7 @@ parameters:
|
|||||||
|
|
||||||
# fosuser stuff
|
# fosuser stuff
|
||||||
fosuser_registration: {{ registration }}
|
fosuser_registration: {{ registration }}
|
||||||
fosuser_confirmation: true
|
fosuser_confirmation: {{ registration_mail_confirmation }}
|
||||||
|
|
||||||
from_email: {{ from_email }}
|
from_email: {{ from_email }}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user