At 09:48 AM 7/7/2007, Michael Scheidell wrote:
>Seems if you use dkim to sign outgoing email through amavisd-new policy
>bank and forward-method, the 'disclaimer' added to message does not pass
>the body test. since it seems to sign the message before the disclaimer
>is added.
>
>Q) how do I get it to sign AFTER mangling (do I do it in amavisd.conf?)
>or wait till Mark gets back?
(I'm CCing you so you can verify my signature - feel free to reply in kind)
In the setup you describe, amavisd-new cannot modify the message
after it's sent to dkimproxy and postfix. Postfix could mangling the
message if it's doing any address rewriting, you might want to add
no_address_mappings to your receive_override_options (but make sure
address mapping is enabled somewhere else).
What test addresses have you tried? I've had trouble with most of
them being broken at one time or another. I don't think any of them
have been universally reliable.
[EMAIL PROTECTED] seems to be working right now.
Which version of dkim-milter is in ports? Current version is 1.2.0.
Finally, here's a little perl snippit from Mark that can be used to
verify a mail
# from Mark Martinic
perl -MMail::DKIM::Verifier -ne '
BEGIN{$dkim=Mail::DKIM::Verifier->new_object};
s/\r?\n\z/\015\012/; $dkim->PRINT($_);
END{$dkim->CLOSE;print $dkim->result_detail,"\n"}' $1
--
Noel Jones
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
AMaViS-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/amavis-user
AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/howto/