community.general.webfaction_mailbox (0.1.4) — module

Add or remove mailboxes on Webfaction

Authors: Quentin Stafford-Fraser (@quentinsf)

Install collection

Install with ansible-galaxy collection install community.general:==0.1.4


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.1.4

Description

Add or remove mailboxes on a Webfaction account. Further documentation at https://github.com/quentinsf/ansible-webfaction.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  - name: Create a mailbox
    webfaction_mailbox:
      mailbox_name="mybox"
      mailbox_password="myboxpw"
      state=present
      login_name={{webfaction_user}}
      login_password={{webfaction_passwd}}

Inputs

    
state:
    choices:
    - present
    - absent
    default: present
    description:
    - Whether the mailbox should exist

login_name:
    description:
    - The webfaction account to use
    required: true

mailbox_name:
    description:
    - The name of the mailbox
    required: true

login_password:
    description:
    - The webfaction password to use
    required: true

mailbox_password:
    description:
    - The password for the mailbox
    required: true