Matthias Andreas Benkard | 1ba5381 | 2022-12-27 17:32:58 +0100 | [diff] [blame] | 1 | @version: 3.28 |
Matthias Andreas Benkard | b382b10 | 2021-01-02 15:32:21 +0100 | [diff] [blame] | 2 | @include "scl.conf" |
| 3 | options { |
| 4 | chain_hostnames(off); |
| 5 | flush_lines(0); |
| 6 | use_dns(no); |
| 7 | use_fqdn(no); |
| 8 | owner("root"); group("adm"); perm(0640); |
| 9 | stats_freq(0); |
| 10 | bad_hostname("^gconfd$"); |
| 11 | }; |
| 12 | source s_src { |
| 13 | unix-stream("/dev/log"); |
| 14 | internal(); |
| 15 | }; |
| 16 | destination d_stdout { pipe("/dev/stdout"); }; |
| 17 | destination d_redis_ui_log { |
| 18 | redis( |
| 19 | host("redis-mailcow") |
| 20 | persist-name("redis1") |
| 21 | port(6379) |
| 22 | command("LPUSH" "DOVECOT_MAILLOG" "$(format-json time=\"$S_UNIXTIME\" priority=\"$PRIORITY\" program=\"$PROGRAM\" message=\"$MESSAGE\")\n") |
| 23 | ); |
| 24 | }; |
| 25 | destination d_redis_f2b_channel { |
| 26 | redis( |
| 27 | host("redis-mailcow") |
| 28 | persist-name("redis2") |
| 29 | port(6379) |
Matthias Andreas Benkard | 7b2a3a1 | 2021-08-16 10:57:25 +0200 | [diff] [blame] | 30 | command("PUBLISH" "F2B_CHANNEL" "$(sanitize $MESSAGE)") |
Matthias Andreas Benkard | b382b10 | 2021-01-02 15:32:21 +0100 | [diff] [blame] | 31 | ); |
| 32 | }; |
| 33 | filter f_mail { facility(mail); }; |
| 34 | filter f_replica { |
| 35 | not match("User has no mail_replica in userdb" value("MESSAGE")); |
| 36 | not match("Error: sync: Unknown user in remote" value("MESSAGE")); |
| 37 | }; |
| 38 | log { |
| 39 | source(s_src); |
| 40 | filter(f_replica); |
| 41 | destination(d_stdout); |
| 42 | filter(f_mail); |
| 43 | destination(d_redis_ui_log); |
| 44 | destination(d_redis_f2b_channel); |
| 45 | }; |