[exim] Cannot get Exim to verify DANE for remote smtp

2024-03-04 Thread Dominic Preston via Exim-users
Hello all, I am trying to configure Exim to try DANE before deciding to deliver unencrypted mail to remote hosts. My general configuration has: dns_dnssec_ok = 1 And for the remote_smtp transport: hosts_try_dane = * dnssec_request_domains = * My system dns resolver verifies dnssec, "dig do.have

[exim] Re: Cannot get Exim to verify DANE for remote smtp

2024-03-04 Thread Jeremy Harris via Exim-users
On 02/03/2024 12:07, Dominic Preston via Exim-users wrote: I've confirmed I can get a DNSSEC validated record for do.havedane.net via dig, so why does Exim suggest otherwise? Have you tried using Exim's debug facilities? -- Cheers, Jeremy -- ## subscription configuration (requires account):

[exim] Re: Cannot get Exim to verify DANE for remote smtp

2024-03-04 Thread Dominic Preston via Exim-users
On Mon, 4 Mar 2024 at 09:09, Jeremy Harris via Exim-users wrote: > Have you tried using Exim's debug facilities? I will generate some logs. Is it possible you could you test https://havedane.net/ with Exim so I have a comparison? -- ## subscription configuration (requires account): ## https:/

[exim] redirect router that calls a script that generates a .forward

2024-03-04 Thread Fabien LUCE via Exim-users
Hi, I would like to build a python script whose output (a stream with exim filter commands) is piped to a redirect router. Maybe in a more self explanatory way, each time the router is reached, it launches the script that returns the .forward file to it. Is that possible to set this or do I really

[exim] Re: redirect router that calls a script that generates a .forward

2024-03-04 Thread Jeremy Harris via Exim-users
On 04/03/2024 14:09, Fabien LUCE via Exim-users wrote: Maybe in a more self explanatory way, each time the router is reached, it launches the script that returns the .forward file to it. A redirect router, using a "data" option, which has as its value a "${run ...}" expansion, that calls the py

[exim] Re: redirect router that calls a script that generates a .forward

2024-03-04 Thread Fabien LUCE via Exim-users
Thanks! Yes I will take care of it as much as I can. On Mon, 4 Mar 2024 at 15:43, Jeremy Harris via Exim-users < exim-users@lists.exim.org> wrote: > On 04/03/2024 14:09, Fabien LUCE via Exim-users wrote: > > Maybe in a more self explanatory way, each time the router is reached, it > > launches th

[exim] Re: redirect router that calls a script that generates a .forward

2024-03-04 Thread Cyborg via Exim-users
Am 04.03.24 um 15:50 schrieb Fabien LUCE via Exim-users: Thanks! Yes I will take care of it as much as I can. In that case, you would use a database connection, which simplifys the entire task and saves a lot of cpu cycles. Starting a python interpreter for every mail is just a waste of a lo

[exim] Python - was Re: Re: redirect router that calls a script that generates a .forward

2024-03-04 Thread Andrew C Aitchison via Exim-users
On Mon, 4 Mar 2024, Cyborg via Exim-users wrote: Am 04.03.24 um 15:50 schrieb Fabien LUCE via Exim-users: Thanks! Yes I will take care of it as much as I can. In that case, you would use a database connection, which simplifys the entire task and saves a lot of cpu cycles. Starting a python

[exim] Re: Cannot get Exim to verify DANE for remote smtp

2024-03-04 Thread Dominic Preston via Exim-users
On Mon, 4 Mar 2024 at 09:09, Jeremy Harris via Exim-users wrote: > Have you tried using Exim's debug facilities? On further investigation, /etc/resolv.conf was missing "trust-ad", so valid DNSSEC results were being ignored. Dig doesn't look up via glibc, which masked the issue. -- ## subscripti

[exim] redirect router that calls a script that generates a .forward

2024-03-04 Thread ftg--- via Exim-users
Hi, I would like to build a python script whose output (a stream with exim filter commands) is piped to a redirect router. Maybe in a more self explanatory way, each time the router is reached, it launches the script that returns the .forward file to it. Is that possible to set this or do I rea

[exim] Re: How can I force redelivery of saved message?

2024-03-04 Thread graeme vetterlein via Exim-users
Amazingly , a google search brought me to an email in a group I subscribe to ...and it was recent (but I still missed it :-( ) I changed my /etc/mailname to let's say "badname" and a whole bunch of mail got sent to users@badname  and the report on th failure to postmaster@badname   ...I never

[exim] Re: Python - was Re: Re: redirect router that calls a script that generates a .forward

2024-03-04 Thread Fabien LUCE via Exim-users
Thanks that may help also. On Mon, 4 Mar 2024 at 17:58, Andrew C Aitchison via Exim-users < exim-users@lists.exim.org> wrote: > On Mon, 4 Mar 2024, Cyborg via Exim-users wrote: > > > Am 04.03.24 um 15:50 schrieb Fabien LUCE via Exim-users: > >> Thanks! > >> Yes I will take care of it as much as I