using a seperate file for the DKIM key configuration enables the user to easily configure with their settings. MR !4
19 lines
311 B
Plaintext
19 lines
311 B
Plaintext
dkim_key(
|
|
'example.org',
|
|
'dkim',
|
|
'/certs/amavis/dkim/example.org.dkim.pem'
|
|
);
|
|
|
|
|
|
@dkim_signature_options_bysender_maps = (
|
|
{
|
|
"example.org" => {
|
|
s => 'dkim',
|
|
d => 'example.org',
|
|
a => 'rsa-sha256',
|
|
ttl => 10*24*3600
|
|
}
|
|
}
|
|
);
|
|
|