mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-09-08 14:15:40 +08:00
fixed dkim hash
This commit is contained in:
parent
73e4454c0f
commit
3864b1774c
2 changed files with 4 additions and 1 deletions
|
@ -13,3 +13,6 @@ useOpenSSL=true
|
|||
# If true then also adds a signature for the outbound domain
|
||||
# Affects WildDuck ZoneMTA plugin only
|
||||
signTransportDomain=false
|
||||
|
||||
# do not change this
|
||||
hashAlgo="sha256"
|
||||
|
|
|
@ -117,7 +117,7 @@ class Maildropper {
|
|||
}
|
||||
|
||||
let messageSplitter = new MessageSplitter();
|
||||
let dkimStream = new RelaxedBody();
|
||||
let dkimStream = new RelaxedBody(envelope.dkim);
|
||||
|
||||
messageSplitter.once('headers', headers => {
|
||||
envelope.headers = headers;
|
||||
|
|
Loading…
Add table
Reference in a new issue