Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit 527202b

Browse files
committed
Fixed reject-non-fqdn setting (#6).
1 parent 0aab183 commit 527202b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config/session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ impl Config {
202202
.parse_if_block("session.ehlo.require", ctx, &available_keys)?
203203
.unwrap_or_else(|| IfBlock::new(true)),
204204
reject_non_fqdn: self
205-
.parse_if_block("session.ehlo.reject-invalid", ctx, &available_keys)?
205+
.parse_if_block("session.ehlo.reject-non-fqdn", ctx, &available_keys)?
206206
.unwrap_or_else(|| IfBlock::new(true)),
207207
})
208208
}

0 commit comments

Comments
 (0)