From 0eda6c7f7f3b59680ae417ac0c38b5997d88f03e Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Sat, 3 Feb 2024 17:58:44 +0200
Subject: [PATCH] Router: Small SPF fix.

Fix the SpamAssassin error: `HELO does not match SPF record`.
---
 Ansible/roles/router/files/nsd/shore.co.il | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Ansible/roles/router/files/nsd/shore.co.il b/Ansible/roles/router/files/nsd/shore.co.il
index 2a7fa83..5092d2c 100644
--- a/Ansible/roles/router/files/nsd/shore.co.il
+++ b/Ansible/roles/router/files/nsd/shore.co.il
@@ -2,7 +2,7 @@
 $TTL 1h
 $ORIGIN shore.co.il.
 @               IN      SOA     ns1     hostmaster (
-        2024012601 ; Serial
+        2024020301 ; Serial
         4h         ; Refresh
         1h         ; Retry
         4w         ; Expire
@@ -26,8 +26,8 @@ ns4     IN      A       163.172.74.36
         IN      SPF     "v=spf1 -all"
 
 smtp    IN      A       62.219.131.121
-        IN      TXT     "v=spf1 -all"
-        IN      SPF     "v=spf1 -all"
+        IN      TXT     "v=spf1 a -all"
+        IN      SPF     "v=spf1 a -all"
 
 _imaps._tcp IN  SRV 0 1 993 imap
             IN  TXT "v=spf1 -all"
-- 
GitLab