You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vars.py 954B

123456789101112131415161718192021222324252627282930
  1. import shutil
  2. import socket
  3. CONTROLLER_ERRORS = True
  4. HAVE_MILTERTEST = shutil.which('miltertest') and True or False
  5. RSPAMD_EXTERNAL_RELAY_ENABLED = False
  6. RSPAMD_KEY_PVT1 = 'ekd3x36tfa5gd76t6pa8hqif3ott7n1siuux68exbkk7ukscte9y'
  7. RSPAMD_KEY_PUB1 = 'm8kneubpcjsb8sbsoj7jy7azj9fdd3xmj63txni86a8ye9ncomny'
  8. RSPAMD_LOCAL_ADDR = '127.0.0.1'
  9. RSPAMD_MAP_WATCH_INTERVAL = '1min'
  10. RSPAMD_PORT_CONTROLLER = 56790
  11. RSPAMD_PORT_CONTROLLER_SLAVE = 56793
  12. RSPAMD_PORT_FUZZY = 56791
  13. RSPAMD_PORT_FUZZY_SLAVE = 56792
  14. RSPAMD_PORT_NORMAL = 56789
  15. RSPAMD_PORT_NORMAL_SLAVE = 56794
  16. RSPAMD_PORT_PROXY = 56795
  17. RSPAMD_PORT_CLAM = 2100
  18. RSPAMD_PORT_FPROT = 2101
  19. RSPAMD_PORT_FPROT2_DUPLICATE = 2102
  20. RSPAMD_PORT_AVAST = 2103
  21. RSPAMD_P0F_SOCKET = '/tmp/p0f.sock'
  22. RSPAMD_REDIS_ADDR = '127.0.0.1'
  23. RSPAMD_REDIS_PORT = 56379
  24. RSPAMD_NGINX_ADDR = '127.0.0.1'
  25. RSPAMD_NGINX_PORT = 56380
  26. RSPAMD_GROUP = 'nogroup'
  27. RSPAMD_USER = 'nobody'
  28. SOCK_DGRAM = socket.SOCK_DGRAM
  29. SOCK_STREAM = socket.SOCK_STREAM