Yet another solution: Keep track of candidates for our authserv-id

This commit is contained in:
Hocuri
2022-10-05 16:47:56 +02:00
parent 906f95ee84
commit 0d221cced9
4 changed files with 176 additions and 80 deletions

View File

@@ -184,6 +184,16 @@ pub enum Config {
/// In a future versions, this switch may be removed.
#[strum(props(default = "0"))]
SendSyncMsgs,
/// Space-separated list of all the authserv-ids which we believe
/// may be the one of our email server.
///
/// When checking DKIM and SPF, our email server adds the results in an
/// Authentication-Results... TODO documentation
///
/// See https://github.com/deltachat/deltachat-core-rust/issues/3507 for more
/// info about the Authentication-Results header.
AuthservIdCandidates,
}
impl Context {