In W&B Server, adding users to the instance or a team triggers an email invitation. By default, W&B sends these invitations through a third-party mail server. If your organization restricts outbound traffic from the corporate network, these invitations might not reach the end user. To work around this, administrators of a self-managed W&B Server can route invitation emails through an internal SMTP server. To configure W&B Server to use your internal SMTP server, complete the following steps:Documentation Index
Fetch the complete documentation index at: https://wb-21fd5541-docs-2632.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
- Set the
GORILLA_EMAIL_SINKenvironment variable in the Docker container or the Kubernetes deployment tosmtp://[USER:PASSWORD]@smtp.host.com:[PORT].USERandPASSWORDare optional.- If you’re using an SMTP server that’s designed to be unauthenticated, set the value for the environment variable like
GORILLA_EMAIL_SINK=smtp://smtp.host.com:[PORT]. - Commonly used port numbers for SMTP are
587,465, and25. The port might differ based on the type of mail server you’re using.
- Optional: To configure the default sender email address for SMTP, which is initially set to
noreply@wandb.com, set theGORILLA_EMAIL_FROM_ADDRESSenvironment variable on the server to your desired sender email address.