hashicorp-forge / hermes

A document management system
Mozilla Public License 2.0
1.8k stars 95 forks source link

Enable sending an email to users not found in the Google Workspace directory #666

Closed jfreda closed 4 months ago

jfreda commented 4 months ago

We have encountered rare cases where users may not be found in the Google Workspace directory, which prevents them from logging into Hermes. This PR enables sending an email to these users with custom remediation instructions.

New config block

google_workspace {
  ...
  user_not_found_email {
    body    = "Oh no! :-("
    enabled = true
    subject = "Unable to sign into Hermes"

  }
  ...
}