![]() |
Notifications from forum are going to SPAM folder - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: Notifications from forum are going to SPAM folder (/thread-5800.html) |
Notifications from forum are going to SPAM folder - hashdawg - 08-27-2016 Just noticed a bunch of emails from the forum went straight into SPAM, because there is no SPF/DKIM used for emails. Quote:Received-SPF: neutral (google.com: 2a03:f80:ed15:149:154:152:149:1 is neither permitted nor denied by best guess record for domain of www-data@hashcat.net) client-ip=2a03:f80:ed15:149:154:152:149:1; Would be nice if you could set up SPF and DKIM for emails. Thanks! RE: Notifications from forum are going to SPAM folder - royce - 08-28-2016 Assuming that the stated host is the only source, something along these lines would be a starting point: Code: IN TXT "v=spf1 ip6:2a03:f80:ed15:149:154:152:149:1 ~all" RE: Notifications from forum are going to SPAM folder - hashdawg - 08-28-2016 (08-28-2016, 12:51 AM)royce Wrote: Assuming that the stated host is the only source, something along these lines would be a starting point: I'm sure not all mail providers are supporting IPv6, so would be good to include 149.154.152.149 ip as well. Code: IN TXT "v=spf1 ip6:2a03:f80:ed15:149:154:152:149:1 ip4:149.154.152.149 ~all" DKIM is also highly recommended as well as setting DMARC policy so nobody will forge emails from hashcat.net domain name. RE: Notifications from forum are going to SPAM folder - atom - 08-28-2016 OK, added. Let's see how it works. Thanks RE: Notifications from forum are going to SPAM folder - hashdawg - 08-28-2016 (08-28-2016, 10:55 AM)atom Wrote: OK, added. Let's see how it works. Thanks I see you've added SPF which is great! But what about DKIM? On Linux you can install opendkim and generate a key to sign all emails. Here is a guide how to use it on Debian: https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-dkim-with-postfix-on-debian-wheezy It should be pretty much the same on Ubuntu. |