Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 1.79 KB

File metadata and controls

54 lines (44 loc) · 1.79 KB
title summary permalink redirect_from sidebar
Configuring Qumulo Alerts Integration with an Email Server
This section explains how to configure Qumulo Alerts to work with an email server.
/qumulo-alerts-guide/configuring-integrations/email-server.html
/qumulo-alerts-guide/installing-configuring/integration-email-server.html
qumulo_alerts_guide_sidebar

{% include note.html content="After May 2022, only organizations with access to the Google Admin Console can use SMTP relay. If your organization has this access, see Route outgoing SMTP relay messages through Google." %}

To Add a New Email Server to Qumulo Alerts

Run the ./alerts email_server_add command 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"

{{site.data.alerts.note}}

  • The --login, --password, and --security flags might be optional, depending on the type of SMTP email server that you use.
  • {{site.qumuloalerts.locale}} {{site.qumuloalerts.consTrans}}
  • {{site.qumuloalerts.tz}}
{{site.data.alerts.end}}

{{site.exampleOutput}}

[{
  "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"
}]

To Test Integration with Your Email Server

Run the ./alerts email_server_test command.

{{site.qumuloalerts.testSuccess}}