Skip to content

Commit f49debf

Browse files
authored
Merge pull request #112 from racke/pr/disable-vrfy-true
Set default for postfix_disable_vrfy_command to true.
2 parents 410993a + f61d90f commit f49debf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ None
6262
* `postfix_smtp_tls_cafile` [optional]: A file containing CA certificates of root CAs trusted to sign either remote SMTP server certificates or intermediate CA certificates (e.g. `/etc/ssl/certs/ca-certificates.crt`)
6363

6464
* `postfix_smtpd_banner` [default: `$myhostname ESMTP $mail_name (Ubuntu)`]: Greeting banner **You MUST specify $myhostname at the start of the text. This is required by the SMTP protocol.**
65-
* `postfix_disable_vrfy_command` [default: `false`]: Disable the `SMTP VRFY` command. This stops some techniques used to harvest email addresses
65+
* `postfix_disable_vrfy_command` [default: `true`]: Disable the `SMTP VRFY` command. This stops some techniques used to harvest email addresses
6666
* `postfix_message_size_limit` [default: `10240000`]: The maximal size in bytes of a message, including envelope information
6767

6868
* `postfix_smtpd_tls_cert_file` [default: `/etc/ssl/certs/ssl-cert-snakeoil.pem`]: Path to certificate file

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ postfix_mynetworks:
5454
- '[::1]/128'
5555

5656
postfix_smtpd_banner: '$myhostname ESMTP $mail_name (Ubuntu)'
57-
postfix_disable_vrfy_command: false
57+
postfix_disable_vrfy_command: true
5858
postfix_message_size_limit: 10240000
5959

6060
postfix_smtpd_tls_cert_file: /etc/ssl/certs/ssl-cert-snakeoil.pem

0 commit comments

Comments
 (0)