summaryrefslogtreecommitdiff
path: root/crates/common/src/config/scripts.rs
blob: 2ca53e8d193e2da0f7617d67e311077d6e3137b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use std::{collections::HashSet, sync::Arc, time::Instant};

use ahash::AHashMap;
use nlp::bayes::cache::BayesTokenCache;
use parking_lot::RwLock;
use sieve::{Compiler, Runtime, Sieve};
use utils::suffixlist::PublicSuffix;

use super::smtp::auth::DkimSigner;

pub struct SieveCore {
    pub untrusted_compiler: Compiler,
    pub untrusted_runtime: Runtime<()>,
    pub trusted_runtime: Runtime<SieveContext>,
    pub from_addr: String,
    pub from_name: String,
    pub return_path: String,
    pub sign: Vec<Arc<DkimSigner>>,
    pub scripts: AHashMap<String, Arc<Sieve>>,
}

#[derive(Default)]
pub struct SieveContext {
    pub psl: PublicSuffix,
    pub bayes_cache: BayesTokenCache,
    pub remote_lists: RemoteLists,
}

pub struct RemoteLists {
    pub lists: RwLock<AHashMap<String, RemoteList>>,
}

pub struct RemoteList {
    pub entries: HashSet<String>,
    pub expires: Instant,
}

impl Default for RemoteLists {
    fn default() -> Self {
        Self {
            lists: RwLock::new(AHashMap::new()),
        }
    }
}