Created
June 14, 2019 20:30
-
-
Save GlitchWitch/427b92ad92aa5370f78011f04c7ad528 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
acl_smtp_mail=acl_check_mail | |
acl_smtp_data=acl_check_data | |
begin acl | |
acl_check_mail: | |
.ifdef CHECK_MAIL_HELO_ISSUED | |
deny | |
message = no HELO given before MAIL command | |
condition = ${if def:sender_helo_name {no}{yes}} | |
.endif | |
accept | |
acl_check_data: | |
accept | |
begin authenticators | |
fixed_cram: | |
driver = cram_md5 | |
public_name = CRAM-MD5 | |
server_secret = ${if eq{$auth1}{ph10}{secret}fail} | |
server_set_id = $auth1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment