Open RoDmitry opened 1 year ago
Feel free to give feedback in case you’re interested in merging only part of these changes.
Feel free to give feedback in case you’re interested in merging only part of these changes.
Hi, I won't have time to review this PR until Stalwart Mail Server reaches v1.0.0
.
send_msg(&mut self, message: &Message<'x>)
to send message which was already transformed usingIntoMessage
. Now you can have ownedMessage
, so if any error occurs, you don't loose the entire message, so you can send it again.sign(&mut self, signer: &DkimSigner<_>)
method onMessage
, which signs message in place, and then message can be sent using usualsend()
.#[inline]
, because compiler does not inline by default, as far as I know, so you need to tell it which function you think may be inlined. It improves performance.