diff options
author | Daniel <git@baby-gnu.org> | 2021-08-25 16:41:24 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 18:41:24 +0200 |
commit | 2ed1c92c6331029ebd2762cc425a3a163dffd113 (patch) | |
tree | 82e9c08cf7fab9124a3fa46b350622588cfbd7ab /.env.nanobox | |
parent | 366e0b82dbfd51b4502586beb39f65594ddf36a5 (diff) |
New env variable: CAS_SECURITY_ASSUME_EMAIL_IS_VERIFIED (#16655)
When using a CAS server, the users only have a temporary email `change@me-foo-cas.com` which can't be changed but by an administrator. We need a new environment variable like for SAML to assume the email from CAS is verified. * config/initializers/omniauth.rb: define CAS option for assuming email are always verified. * .env.nanobox: add new variable as an example.
Diffstat (limited to '.env.nanobox')
-rw-r--r-- | .env.nanobox | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.env.nanobox b/.env.nanobox index 5951777a2..d61673836 100644 --- a/.env.nanobox +++ b/.env.nanobox @@ -228,6 +228,7 @@ SMTP_FROM_ADDRESS=notifications@${APP_NAME}.nanoapp.io # CAS_LOCATION_KEY='location' # CAS_IMAGE_KEY='image' # CAS_PHONE_KEY='phone' +# CAS_SECURITY_ASSUME_EMAIL_IS_VERIFIED=true # Optional SAML authentication (cf. omniauth-saml) # SAML_ENABLED=true |