Do not leak mail password by error

This commit is contained in:
Michael Scherer 2016-04-07 14:59:11 +02:00 committed by Brian Coca
parent c215bff12e
commit 3385bf5ef2

View file

@ -178,7 +178,7 @@ def main():
module = AnsibleModule(
argument_spec = dict(
username = dict(default=None),
password = dict(default=None),
password = dict(default=None, no_log=True),
host = dict(default='localhost'),
port = dict(default='25'),
sender = dict(default='root', aliases=['from']),