From d164306f8b5186afc5a1670da2db6eb5ae3972c2 Mon Sep 17 00:00:00 2001 From: "R. Miles McCain" Date: Thu, 28 May 2020 22:01:22 +0000 Subject: [PATCH] Make email verification optional (fixes #30) --- TEMPLATE.env | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/TEMPLATE.env b/TEMPLATE.env index 156f20c7..1aa840a5 100644 --- a/TEMPLATE.env +++ b/TEMPLATE.env @@ -24,6 +24,10 @@ ALLOWED_HOSTS=* # Set to True (capitalized) if you want people to be able to sign up for your Shynet instance (not recommended) SIGNUPS_ENABLED=False +# Should user email addresses be verified? Only set this to `required` if you've setup the email settings and allow +# public sign-ups; otherwise, it's unnecessary. +ACCOUNT_EMAIL_VERIFICATION=none + # The timezone of the admin panel. Affects how dates are displayed. TIME_ZONE=America/New_York