Skip to content

Commit

Permalink
Merge pull request #93 from racke/pr/postifx-typo
Browse files Browse the repository at this point in the history
Fix "postifx" typo
  • Loading branch information
tersmitten authored Aug 19, 2020
2 parents 366facc + b2b4c8c commit 5f358a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ None
* `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.**
* `postfix_disable_vrfy_command` [default: `false`]: Disable the `SMTP VRFY` command. This stops some techniques used to harvest email addresses
* `postfix_message_size_limit` [default: `10240000`]: The maximal size in bytes of a message, including envelope information
* `postifx_header_checks_database_type` [default: `regexp`]: The database type for use in `header_checks`
* `postfix_header_checks_database_type` [default: `regexp`]: The database type for use in `header_checks`
* `postfix_default_database_type` [default: `hash`]: The default database type for use in `newaliases`, `postalias` and `postmap` commands
* `postfix_smtpd_tls_cert_file` [default: `/etc/ssl/certs/ssl-cert-snakeoil.pem`]: Path to certificate file
* `postfix_smtpd_tls_key_file` [default: `/etc/ssl/certs/ssl-cert-snakeoil.key`]: Path to key file
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ postfix_mynetworks:
postfix_smtpd_banner: '$myhostname ESMTP $mail_name (Ubuntu)'
postfix_disable_vrfy_command: false
postfix_message_size_limit: 10240000
postifx_header_checks_database_type: regexp
postfix_header_checks_database_type: regexp
postfix_default_database_type: hash
postfix_smtpd_tls_cert_file: /etc/ssl/certs/ssl-cert-snakeoil.pem
postfix_smtpd_tls_key_file: /etc/ssl/private/ssl-cert-snakeoil.key
Expand Down
2 changes: 1 addition & 1 deletion templates/etc/postfix/main.cf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ sender_dependent_relayhost_maps = {{ postfix_default_database_type }}:{{ postfix
smtp_generic_maps = {{ postfix_default_database_type }}:{{ postfix_generic_file }}
{% endif %}
{% if postfix_header_checks %}
smtp_header_checks = {{ postifx_header_checks_database_type }}:{{ postfix_header_checks_file }}
smtp_header_checks = {{ postfix_header_checks_database_type }}:{{ postfix_header_checks_file }}
{% endif %}
mydestination = {{ postfix_mydestination | join(', ') }}
mynetworks = {{ postfix_mynetworks | join(' ') }}
Expand Down

0 comments on commit 5f358a9

Please sign in to comment.