syslog-ng.conf 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @version: 3.19
  2. @include "scl.conf"
  3. options {
  4. chain_hostnames(off);
  5. flush_lines(0);
  6. use_dns(no);
  7. dns_cache(no);
  8. use_fqdn(no);
  9. owner("root"); group("adm"); perm(0640);
  10. stats_freq(0);
  11. bad_hostname("^gconfd$");
  12. };
  13. source s_src {
  14. unix-stream("/dev/log");
  15. internal();
  16. };
  17. destination d_stdout { pipe("/dev/stdout"); };
  18. destination d_redis_ui_log {
  19. redis(
  20. host("redis-mailcow")
  21. persist-name("redis1")
  22. port(6379)
  23. command("LPUSH" "POSTFIX_MAILLOG" "$(format-json time=\"$S_UNIXTIME\" priority=\"$PRIORITY\" program=\"$PROGRAM\" message=\"$MESSAGE\")\n")
  24. );
  25. };
  26. destination d_redis_f2b_channel {
  27. redis(
  28. host("redis-mailcow")
  29. persist-name("redis2")
  30. port(6379)
  31. command("PUBLISH" "F2B_CHANNEL" "$MESSAGE")
  32. );
  33. };
  34. filter f_mail { facility(mail); };
  35. # start
  36. # overriding warnings are still displayed when the entrypoint runs its initial check
  37. # warnings logged by postfix-mailcow to syslog are hidden to reduce repeating msgs
  38. filter f_overrides { not match("overriding earlier entry" value("MESSAGE")); };
  39. # end
  40. filter f_skip_local { not facility (local0, local1, local2, local3, local4, local5, local6, local7); };
  41. log {
  42. source(s_src);
  43. filter(f_skip_local);
  44. filter(f_overrides);
  45. destination(d_stdout);
  46. filter(f_mail);
  47. destination(d_redis_ui_log);
  48. destination(d_redis_f2b_channel);
  49. };