summaryrefslogtreecommitdiffstats
path: root/test/functional/configs/dkim.conf
blob: 50712d17b27807a2695036480e73b78ad9b73bf5 (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
.include(duplicate=append,priority=0) "{= env.TESTDIR =}/configs/plugins.conf"

options = {
  filters = ["dkim"]
  pidfile = "{= env.TMPDIR =}/rspamd.pid"
  dns {
    retransmits = 10;
    timeout = 2s;
  }
}
logging = {
  type = "file",
  level = "debug"
  filename = "{= env.TMPDIR =}/rspamd.log"
}
metric = {
  name = "default",
  actions = {
    reject = 100500,
  }
  unknown_weight = 1
}

worker {
  type = normal
  bind_socket = "{= env.LOCAL_ADDR =}:{= env.PORT_NORMAL =}"
  count = 1
  keypair {
    pubkey = "{= env.KEY_PUB1 =}";
    privkey = "{= env.KEY_PVT1 =}";
  }
  task_timeout = 60s;
}

worker {
        type = controller
        bind_socket = "{= env.LOCAL_ADDR =}:{= env.PORT_CONTROLLER =}"
        count = 1
        secure_ip = ["127.0.0.1", "::1"];
        stats_path = "{= env.TMPDIR =}/stats.ucl"
}

dkim {

sign_condition =<<EOD
return function(task)
  local dodkim = task:get_request_header('dodkim')
  if not dodkim then return end
  return {
    key = "{= env.TESTDIR =}/configs/dkim.key",
    domain = "cacophony.za.org",
    selector = "dkim"
  }
end
EOD;

  dkim_cache_size = 2k;
  dkim_cache_expire = 1d;
  time_jitter = 6h;
  trusted_only = false;
  skip_multi = false;
}
modules {
    path = "{= env.TESTDIR =}/../../src/plugins/lua/"
}
lua = "{= env.TESTDIR =}/lua/test_coverage.lua";