rspamd-client 0.4.1

Rspamd client API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
services:
  rspamd:
    image: rspamd/rspamd:latest
    container_name: rspamd-test
    ports:
      - "11333:11333"
      - "11334:11334"
    volumes:
      - ./tests/rspamd-config:/etc/rspamd/local.d
    environment:
      - RSPAMD_CHECK_ALL_FILTERS=true
    healthcheck:
      test: ["CMD", "curl", "-f", "http://localhost:11333/ping"]
      interval: 5s
      timeout: 3s
      retries: 10
      start_period: 10s