vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit c4101162d667aa7be34c662198b126079d058833
parent 632d55265b6931c3091a9dc61c594c005d264f71
Author: Miro Prasil <miro@circleci.com>
Date:   Wed, 29 Jan 2020 11:32:42 +0000

SIGNUPS_ALLOWED with no whitelist [fixes #830]

This reverts back to `SIGNUPS_ALLOWED` when there is no domain whitelist
set. The functionality was broken in 64d6f72.

Diffstat:
Msrc/config.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/config.rs b/src/config.rs @@ -515,7 +515,7 @@ impl Config { // (it doesn't contain any domains), or if it matches at least // one domain. let whitelist_str = self.signups_domains_whitelist(); - whitelist_str.is_empty() || whitelist_str.split(',').filter(|s| !s.is_empty()).any(|d| d == e[0]) + ( whitelist_str.is_empty() && CONFIG.signups_allowed() )|| whitelist_str.split(',').filter(|s| !s.is_empty()).any(|d| d == e[0]) } pub fn delete_user_config(&self) -> Result<(), Error> {