This section explains how to integrate an email server with Qumulo Alerts and test the integration.
After May 2022, only organizations with access to the Google Admin Console can use SMTP relay to Route outgoing SMTP relay messages through Google.
To Integrate an Email Server with Qumulo Alerts and Test the Integration by Using the Qumulo Alerts Web UI
- Depending on your SMTP server configuration, the Username, Password, and Security fields might be optional.
- For more information about locales, see What Language Locales Qumulo Alerts Supports. The consumer processes for email, IFTTT, and SMS (ClickSend) integrations translate messages into the recipient's native language.
- For more information about time zones, see Converting Time Zones.
-
On the sidebar, under Servers, click Email Server.
-
Enter the SMTP configuration details:
-
For SMTP Server, enter the hostname or IP address of your SMTP server (for example,
mail.example.com). -
For Port, select the SMTP server port.
-
For From Address, select the email address to appear in the From field of outgoing notifications (for example,
alerts@example.com). -
For Security, select the connection security type.
-
(Optional) For Username, enter the username for SMTP authentication.
-
(Optional) For Password, enter the password for SMTP authentication.
Tip
To keep the current password, leave Password empty. -
For To Address (used only for testing the connection), enter the email address to receive the test message when you click Test Connection.
-
For Default Language, enter a supported language locale to use for notification email templates when a user-level language isn’t configured.
-
For Default Timezone, enter the the time zone for formatting timestamps in notification emails when a user-level timezone isn’t configured.
-
-
Click Save Configuration.
-
Click Test Connection.
-
Qumulo Alerts sends a test message to the configured email address.
-
If the test succeeds, a confirmation message appears.
-
If the test fails, check the configuration details.
-
To Integrate an Email Server with Qumulo Alerts and Test the Integration by Using the alerts CLI
- Depending on the type of SMTP email server that you use, the
--login,--password, and--securityflags might be optional. - For more information about locales, see What Language Locales Qumulo Alerts Supports. The consumer processes for email, IFTTT, and SMS (ClickSend) integrations translate messages into the recipient's native language.
- For more information about time zones, see Converting Time Zones.
-
Run the
./alerts email_server_addcommand and specify the sender’s email address, recipient’s email address, email server hostname and port, language, and time zone. For example:./alerts email_server_add \ --from-addr alerts@example.com \ --to-addr name@example.com \ --server mail.example.com \ --port 25 --language en_US --timezone "America/Los_Angeles"The following is example output.
[{ "from_address": "alerts@example.com", "language": "en_US", "login": null, "password": null, "port": 25, "security": null, "server": "mail.example.com", "timezone": "America/Los_Angeles", "to_address": "name@example.com" }] -
Run the
./alerts email_server_testcommand.A successful response returns the
[{ "ok": true }]JSON output.