From 26be0368350cd74fd9e7ad67f1efb2904e0242fd Mon Sep 17 00:00:00 2001 From: Nick Fox Date: Tue, 1 Jan 2019 01:30:24 +0000 Subject: [PATCH] Created Disable invitations (markdown) --- Disable-invitations.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Disable-invitations.md diff --git a/Disable-invitations.md b/Disable-invitations.md new file mode 100644 index 0000000..458b99f --- /dev/null +++ b/Disable-invitations.md @@ -0,0 +1,10 @@ +Even when registration is disabled, organization administrators or owners can invite users to join organization. This won't send email invitation to the users, but after they are invited, they can register with the invited email even if `SIGNUPS_ALLOWED` is actually set to `false`. You can disable this functionality completely by setting `INVITATIONS_ALLOWED` env variable to `false`: + +```sh +docker run -d --name bitwarden \ + -e SIGNUPS_ALLOWED=false \ + -e INVITATIONS_ALLOWED=false \ + -v /bw-data/:/data/ \ + -p 80:80 \ + mprasil/bitwarden:latest +``` \ No newline at end of file