Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sansible/ssmtp
https://github.com/sansible/ssmtp
ansible ansible-role ansible-roles ssmtp
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sansible/ssmtp
- Owner: sansible
- License: mit
- Created: 2016-07-04T10:21:51.000Z (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2022-04-28T11:06:19.000Z (over 2 years ago)
- Last Synced: 2023-08-05T07:51:16.544Z (over 1 year ago)
- Topics: ansible, ansible-role, ansible-roles, ssmtp
- Language: Makefile
- Size: 27.3 KB
- Stars: 5
- Watchers: 9
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SSMTP
Master: [![Build Status](https://travis-ci.org/sansible/ssmtp.svg?branch=master)](https://travis-ci.org/sansible/ssmtp)
Develop: [![Build Status](https://travis-ci.org/sansible/ssmtp.svg?branch=develop)](https://travis-ci.org/sansible/ssmtp)* [Installation and Dependencies](#installation-and-dependencies)
* [Tags](#tags)
* [Examples](#examples)This roles installs SSMTP.
## Installation and Dependencies
To install this role run `ansible-galaxy install sansible.ssmtp`
or add this to your `roles.yml````YAML
- name: sansible.ssmtp
version: v2.1.x
```and run `ansible-galaxy install -p ./roles -r roles.yml`
## Tags
This role uses two tags: **build** and **configure**
* `build` - Installation of SSMTP and dependencies.
* `configure` - SSMTP configuration files.## Examples
To simply install SSMTP for a mailhost:
```YAML
- name: Install and configure SSMTP
hosts: "somehost"roles:
- role: sansible.ssmtp
sansible_ssmtp_group: ssmtp_user
sansible_ssmtp_user: ssmtp_user
sansible_ssmtp_mailserver_host: localhost
sansible_ssmtp_mailserver_password: password
sansible_ssmtp_mailserver_port: 25
sansible_ssmtp_mailserver_username: username
```