Skip to content

Commit

Permalink
Merge pull request #38 from jcbf/jcbf-whitelist-to-ACCEPT
Browse files Browse the repository at this point in the history
WhitelistTo should return SMFIS_ACCEPT
  • Loading branch information
jcbf committed Nov 8, 2017
2 parents e03d3da + dddfaf2 commit 61da76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smf-spf.c
Expand Up @@ -840,7 +840,7 @@ static sfsistat smf_envrcpt(SMFICTX *ctx, char **args) {
}
if (conf.tos) {
strtolower(context->recipient);
if (to_check(context->recipient)) return SMFIS_CONTINUE;
if (to_check(context->recipient)) return SMFIS_ACCEPT;
if (context->status == SPF_RESULT_FAIL && conf.refuse_fail) {
char reject[2 * MAXLINE];

Expand Down

0 comments on commit 61da76e

Please sign in to comment.