aboutsummaryrefslogtreecommitdiffstats
path: root/test/functional/configs/settings.conf
blob: 0ba4de1c6fb7fb22c652d4d767f0d3198b9f26e3 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
lua = ${LUA_SCRIPT};

settings {
  id_test {
    id = "id_test";
    apply {
      symbols_enabled = ["SIMPLE_TEST"];
    }
  }

  id_pre { # implicit id
    apply {
      symbols_enabled = ["SIMPLE_PRE"];
    }
  }

  id_virtual {
    apply {
      symbols_enabled = ["SIMPLE_VIRTUAL"];
    }
  }

  id_virtual1 {
    apply {
      symbols {
        EXPLICIT_VIRTUAL1 = 10.0
      }
       symbols_enabled = ["DEP_REAL"];
    }
  }

  id_virtual_group {
    user = "test@example.com";
    from = "test2@example.com";
    hostname = "example.com";
    selector = "rcpts:addr.in(test3@example.com)";
    header = {
      "Content-Transfer-Encoding" = "7bit";
      "Custom-Header" = true;
      "Mime-Version" = false;
    }
    request_header = {
      "Test" = "passed";
    }

    expression = 'user || from || hostname || selector:1 || header:mime_version || header:custom_header || header:1 || request_header:test'
    apply {
      symbols_enabled {
        SIMPLE_VIRTUAL = 10.0;
      }
      symbols {
        EXPLICIT_VIRTUAL = 10.0
      }
    }
  }
}
classifier {
  backend = "sqlite3";
  statfile {
    spam = true;
    symbol = BAYES_SPAM;
    path = "/tmp/bayes.spam.sqlite3";
  }
  statfile {
    spam = false;
    symbol = BAYES_HAM;
    path = "/tmp/bayes.ham.sqlite3";
  }
  min_learns = 1;
  min_token_hits = 1;
}