From e0628c60f3c89298382754a44bffa80e9eccc135 Mon Sep 17 00:00:00 2001 From: Unknown Date: Mon, 7 May 2018 16:31:19 +0800 Subject: [PATCH] Edit comments --- tasks/main.yml | 4 ++-- templates/msmtprc.j2 | 4 ++-- tests/vagrant.yml | 1 - 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 57c91a5..1f673c3 100755 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -21,7 +21,7 @@ tags: - mail -- name: Install msmtp and mailx. +- name: Install msmtp and mailx on Debian. apt: pkg: "{{item}}" state: present @@ -33,7 +33,7 @@ when: ansible_os_family == "Debian" # not tested my modifications with Archlinux -- name: Install msmtp and mailx. +- name: Install msmtp and mailx on Archlinux. pacman: name={{item}} state=present with_items: - msmtp diff --git a/templates/msmtprc.j2 b/templates/msmtprc.j2 index c9511fa..c79d243 100644 --- a/templates/msmtprc.j2 +++ b/templates/msmtprc.j2 @@ -20,9 +20,9 @@ logfile {{msmtp_logfile}} {% endif %} {% endif %} -# default is ‘localhost’. Use domain part of your email address or FQDN of host. +# default is localhost. Use domain part of your email address or FQDN of host. domain {{msmtp_domain}} -# default is ‘off’. When on, an envelope-from address of the form user@domain will be generated. +# default is off. When on, an envelope-from address of the form user@domain will be generated. auto_from off # The default is to remove BCC headers. # remove_bcc_headers on|off diff --git a/tests/vagrant.yml b/tests/vagrant.yml index c7d0a93..b35963a 100644 --- a/tests/vagrant.yml +++ b/tests/vagrant.yml @@ -1,4 +1,3 @@ -# test file for fail2ban --- - hosts: all remote_user: vagrant