ieisystem.inmanage.edit_smtp 模块 – 设置 SMTP 信息

注意

此模块是 ieisystem.inmanage 集合 (版本 3.0.0) 的一部分。

如果您使用的是 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install ieisystem.inmanage。您需要其他要求才能使用此模块,有关详细信息,请参阅 需求

要在剧本中使用它,请指定:ieisystem.inmanage.edit_smtp

ieisystem.inmanage 1.0.0 新增功能

概要

  • 在 ieisystem 服务器上设置 SMTP 信息。

  • 只有 M5 型号支持此功能。

需求

在执行此模块的主机上需要以下需求。

  • Python 3.7+

  • inManage

参数

参数

注释

email

字符串

发件人邮箱。

host

字符串

指定通过指定传输连接到远程设备的 DNS 主机名或地址。host 的值用作传输的目标地址。

interface

字符串 / 必填

局域网通道,eth0 为共享,eth1 为专用。

选项

  • "eth0"

  • "eth1"

  • "bond0"

password

字符串

指定用于验证与远程设备连接的密码。如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_PASSWORD 的值。

primary_auth

字符串

主 SMTP 服务器身份验证。

选项

  • "启用"

  • "禁用"

primary_ip

字符串

主 SMTP 服务器 IP。

primary_name

字符串

主 SMTP 服务器名称。

primary_password

字符串

主 SMTP 服务器密码,长度为 4 到 64 位,不能包含空格。

primary_auth=启用 时必填。

primary_port

整数

主 SMTP 服务器端口,重试计数配置标识 (1-65535)。

primary_status

字符串

主 SMTP 支持。

选项

  • "启用"

  • "禁用"

primary_username

字符串

主 SMTP 服务器用户名,长度为 4 到 64 位。

必须以字母开头,不能包含逗号、冒号、空格、分号、反斜杠。

provider

字典

包含连接详细信息的字典对象。

host

字符串

指定通过指定传输连接到远程设备的 DNS 主机名或地址。host 的值用作传输的目标地址。

password

字符串

指定用于验证与远程设备连接的密码。如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_PASSWORD 的值。

username

字符串

配置用于验证与远程设备连接的用户名。如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_USERNAME 的值。

secondary_auth

字符串

次要 SMTP 服务器身份验证。

选项

  • "启用"

  • "禁用"

secondary_ip

字符串

次要 SMTP 服务器 IP。

secondary_name

字符串

次要 SMTP 服务器名称。

secondary_password

字符串

次要 SMTP 服务器密码,长度为 4 到 64 位,不能包含空格。

secondary_auth=启用 时必填。

secondary_port

整数

次要 SMTP 服务器端口,重试计数配置标识 (1-65535)。

secondary_status

字符串

次要 SMTP 支持。

选项

  • "启用"

  • "禁用"

secondary_username

字符串

次要 SMTP 服务器用户名,长度为 4 到 64 位。

必须以字母开头,不能包含逗号、冒号、空格、分号、反斜杠。

username

字符串

配置用于验证与远程设备连接的用户名。如果任务中未指定该值,则将使用环境变量 ANSIBLE_NET_USERNAME 的值。

备注

注意

  • 不支持 check_mode

示例

- name: Smtp test
  hosts: inmanage
  no_log: true
  connection: local
  gather_facts: false
  vars:
    inmanage:
      host: "{{ ansible_ssh_host }}"
      username: "{{ username }}"
      password: "{{ password }}"

  tasks:

  - name: "Set smtp information"
    ieisystem.inmanage.edit_smtp:
      interface: "eth0"
      email: "[email protected]"
      primary_status: "enable"
      primary_ip: "100.2.2.2"
      primary_name: "test"
      primary_auth: "disable"
      provider: "{{ inmanage }}"

  - name: "Set smtp information"
    ieisystem.inmanage.edit_smtp:
      interface: "eth0"
      email: "[email protected]"
      primary_status: "enable"
      primary_ip: "100.2.2.2"
      primary_name: "test"
      primary_auth: "enable"
      primary_username: "test"
      primary_password: my_password
      provider: "{{ inmanage }}"

返回值

常见的返回值已在 此处 记录,以下是此模块独有的字段

描述

changed

布尔值

检查设备上是否进行了更改。

返回:始终

message

字符串

模块执行后返回的消息。

返回:始终

state

字符串

模块执行后的状态。

返回:始终

作者

  • 王宝山 (@ieisystem)