dellemc.openmanage.ome_application_alerts_smtp module – This module allows to configure SMTP or email configurations
Note
This module is part of the dellemc.openmanage collection (version 7.6.1).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install dellemc.openmanage
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: dellemc.openmanage.ome_application_alerts_smtp
.
New in dellemc.openmanage 4.3.0
Synopsis
This module allows to configure SMTP or email configurations on OpenManage Enterprise and OpenManage Enterprise Modular.
Requirements
The below requirements are needed on the host that executes this module.
python >= 3.8.6
Parameters
Parameter |
Comments |
---|---|
The Privacy Enhanced Mail (PEM) file that contains a CA certificate to be used for the validation. |
|
The credentials for the SMTP server |
|
The password to access the SMTP server. |
|
The username to access the SMTP server. |
|
The IP address or FQDN of the SMTP destination server. |
|
Enable or disable authentication to access the SMTP server. The credentials are mandatory if enable_authentication is The module will always report change when this is Choices:
|
|
OpenManage Enterprise or OpenManage Enterprise Modular IP address or hostname. |
|
OpenManage Enterprise or OpenManage Enterprise Modular password. |
|
OpenManage Enterprise or OpenManage Enterprise Modular HTTPS port. Default: |
|
The port number of the SMTP destination server. |
|
The socket level timeout in seconds. Default: |
|
Use SSL to connect with the SMTP server. Choices:
|
|
OpenManage Enterprise or OpenManage Enterprise Modular username. |
|
If Configure Prior to collection version Choices:
|
Notes
Note
The module will always report change when enable_authentication is
True
.Run this module from a system that has direct access to Dell OpenManage Enterprise or OpenManage Enterprise Modular.
This module support
check_mode
.
Examples
---
- name: Update SMTP destination server configuration with authentication
dellemc.openmanage.ome_application_alerts_smtp:
hostname: "192.168.0.1"
username: "user_name"
password: "user_password"
ca_path: "/path/to/ca_cert.pem"
destination_address: "localhost"
port_number: 25
use_ssl: true
enable_authentication: true
credentials:
username: "username"
password: "password"
- name: Update SMTP destination server configuration without authentication
dellemc.openmanage.ome_application_alerts_smtp:
hostname: "192.168.0.1"
username: "user_name"
password: "user_password"
ca_path: "/path/to/ca_cert.pem"
destination_address: "localhost"
port_number: 25
use_ssl: false
enable_authentication: false
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Details of the HTTP Error. Returned: on HTTP error Sample: |
|
Overall status of the SMTP settings update. Returned: always Sample: |
|
returned when SMTP settings are updated successfully. Returned: success Sample: |