Re: [exim] DomainKeys skip signing some emails

Top Page
Delete this message
Reply to this message
Author: Olivier Bonvalet
Date:  
To: Olivier Bonvalet, exim-users
Subject: Re: [exim] DomainKeys skip signing some emails
Phil Pennock a écrit :
> Can we see the Exim configuration which makes this decision, please? I
> suspect the bug is there.
>
> The DK signing happens before sending the data out. There's no
> race-condition (that I'm aware of). It sounds more as though you have a
> configuration bug where the signing only happens in some cases.
>
> -Phil


Yes, this is done by the lookup in /etc/exim4/dk/domains :
  dk_private_key = ${lookup {$domain} nwildlsearch {/etc/exim4/dk/domains} \
                {/etc/exim4/dk/rsa.private.$dk_domain} {0} }


And this file actually contains this 3 lines :
^yahoo\..*
^hotmail\..*
^gmail\..*


Olivier