> On 2022-02-06 05:10, Scott Kitterman wrote:
On Saturday, February 5, 2022 11:36:40 AM EST Fourhundred Thecat wrote:
> On 2022-02-05 16:00, Scott Kitterman wrote:
Here's how you would do essentially the same query as mentioned in the log
directly with pyspf:
python3 /usr/lib/python3/dist-packages/spf.py 77.75.76.210 seznam.cz
t...@seznam.cz
thank you, this helped a lot. I think I now understand thew problem:
I had my nameservers defined in /etc/resolv.conf, and the first one did
not work:
nameserver 209.244.0.3
nameserver 8.8.8.8
The spf.py script seems to take the first nameserver only, and whet it
gets no response generates the Tempfail error.
All other applications seem to be able to take the second, id the first
does not work. That is why I could resolve manually with `host` command.
All one line. When I do that (on a Debian 10 system) I get:
result: ('pass', 250, 'sender SPF authorized') ip4:77.75.76.0/23
If you don't have python3-dns installed, that would perhaps explain the
problem. The python3-spf package depends on it, so I'm not sure how you
managed it, but if you did, what you're seeing might be the result.
sorry, I was wrong. I do have python3-dns installed.
Now everything seems to work again.
Thank you very much