Anil Aliyan wrote:
Dear Jakes,
Please find some time to help resolve my problem also, will very
greatful to you.
Thanks & Regards,
Anil Aliyan
----- Original Message -----
*From:* Anil Aliyan <mailto:[email protected]>
*To:* [email protected]
<mailto:[email protected]>
*Sent:* Saturday, October 31, 2009 2:28 AM
*Subject:* [qmailtoaster] DKIM Error
Jakes,
Please find the config file attached with this mail.
Pasting the config file into the email is easier for us to help you.
It looks like your config file may be wrong, depending on how you
configured your system.
Right now, your system is going to sign every domain sending email as
the domain listed in your /var/qmail/control/me file since you only
defined a global rule. This is fine if the me file only contain your
domain name (gnvfc.com) but you probably have your hostname in the me
file as well (mail.gnvfc.com) so it's signing using that domain.
You can define individual domains to sign for in this format:
<dkimsign>
<!-- per default sign all mails using dkim -->
<global algorithm="rsa-sha1" domain="/var/qmail/control/me"
keyfile="/var/qmail/control/dkim/global.key" method="simple"
selector="dkim1">
<types id="dkim" />
</global>
<gnvfc.com selector="dkim1">
<types id="dkim" />
</gnvcf>
</dkimsign>
----------------
This will inherit any declarations from the <global> tags that you do
not override (so it will inherit the algorithm="rsa-sha1", keyfile, method).
But without seeing how you configured other things it's hard to guess.