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 4.4.0).
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
.
To use it in a playbook, specify: dellemc.openmanage.ome_application_alerts_smtp
.
New in version 4.3.0: of dellemc.openmanage
Synopsis
This module allows to configure SMTP or email configurations on OpenManage Enterprise and OpenManage Enterprise Modular.
Parameters
Parameter |
Comments |
---|---|
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: 443 |
|
The port number of the SMTP destination server. |
|
Use SSL to connect with the SMTP server. Choices:
|
|
OpenManage Enterprise or OpenManage Enterprise Modular username. |
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 EMC 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"
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"
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: {“error”: {“@Message.ExtendedInfo”: [{“Message”: “Unable to update the SMTP settings because the entered credential is invalid or empty.”, “MessageArgs”: [], “MessageId”: “CAPP1106”, “RelatedProperties”: [], “Resolution”: “Either enter valid credentials or disable the Use Credentials option and retry the operation.”, “Severity”: “Critical”}], “code”: “Base.1.0.GeneralError”, “message”: “A general error has occurred. See ExtendedInfo for more information.”}} |
|
Overall status of the SMTP settings update. Returned: always Sample: “Successfully updated the SMTP settings.” |
|
returned when SMTP settings are updated successfully. Returned: success Sample: {“Credential”: {“Password”: null, “User”: “admin”}, “DestinationAddress”: “localhost”, “PortNumber”: 25, “UseCredentials”: true, “UseSSL”: false} |
Authors
Sachin Apagundi(@sachin-apa)