diff options
author | korgoth1 <vladislav.stakhov@gmail.com> | 2020-01-25 22:44:49 +0300 |
---|---|---|
committer | korgoth1 <vladislav.stakhov@gmail.com> | 2020-01-25 22:44:49 +0300 |
commit | 5ef72228d5718a0be6b14c62b47bed14ac913de9 (patch) | |
tree | 2bb367ffab9295f0dac4a03435b5d067162dd0e9 | |
parent | 6135bc06fe43b7524f01d45f134f1a85cd4aa3f9 (diff) | |
download | rspamd-5ef72228d5718a0be6b14c62b47bed14ac913de9.tar.gz rspamd-5ef72228d5718a0be6b14c62b47bed14ac913de9.zip |
[Test] spf.lua fix example of external relay
-rw-r--r-- | src/plugins/lua/spf.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/spf.lua b/src/plugins/lua/spf.lua index d6949cd76..80d1e664d 100644 --- a/src/plugins/lua/spf.lua +++ b/src/plugins/lua/spf.lua @@ -42,7 +42,7 @@ spf { # Disable all IPv6 lookups disable_ipv6 = false; # Use IP address from a received header produced by this relay (using by attribute) - external_relay = "192.168.1.1"; + external_relay = ["192.168.1.1"]; } ]]) return |