A major new spam campaign has been launched by Linode servers using 3rd and 4th tier subdomains of throwaway domains, mostly .us and .cl all with
Return-Path: <[email protected]>
A major new spam campaign has been launched by Linode servers using 3rd and 4th tier subdomains of throwaway domains, mostly .us and .cl all with
Return-Path: <[email protected]>
CORRECTION!
I made a post about OPENPGPKEY DNS records, and turns out I misread the content relating to it. It is the hash as bytes that is truncated, not the digest itself.
I have corrected my DNS records, the script at https://gist.github.com/TruncatedDinoSour/a0874bf1e90647a9a49985e531d9d15f and the blog post at https://blog.ari.lt/b/openpgpkey-records-are-cool/ - It was an honest mistake!
Regardless, all good now and I have put in efforts to retract the wrong version ASAP 😭 The RFC by “octets” means a byte in the actual hash of sha-256 output, not the hex digest.
Anyway, you should still set OPENPGPKEY stuff up :p Ofc now hearing with CORRECT information :D
"Why are you rejecting our emails?”
“Your SPF doesn’t include the servers your mail comes from.”
“What’s SPF?”
“A thing that says which servers can send mail for your domain.”
“Why do I need to do that? I don’t have problems writing to anyone else.”
“You will, and you really should fix it. Just let your mail admin know.”
“OK fine, but I’m the mail admin… so how do I fix it?”
“You just have to update a DNS record.”
“What’s DNS?”
💀 💀 💀
If anyone is following along, I came up with a solution to my Gmail gateway.
It’s bash because is there any other way?
It scrapes Google’s list of networks from DNS and collects them in a temp file.
If a network isn’t already allowed in iptables, a rule gets added.
It diffs against my production list. If the files don’t match it updates the production one and restarts Postfix.
The file is assigned to mynetworks in Postfix:
mynetworks = /etc/postfix/mynetworks.cidr
Our students are on Gmail. Staff are on-prem for now.
Staff see “external sender” warnings on student mail (added by Barracuda). I’d like to skip that via an outbound gateway in Google. <https://support.google.com/a/answer/178333>
I can programmatically get Google netblocks from _spf.google.com
What's the best approach to keeping them up-to-date in Postfix or Sendmail as permitted relay hosts?
I can kludge something together but wondering if anyone already did it and has recommendations.