|
@@ -13,9 +13,8 @@ source s_src {
|
|
|
unix-stream("/dev/log");
|
|
|
internal();
|
|
|
};
|
|
|
-
|
|
|
-destination d_combined { file("/var/log/combined.log"); };
|
|
|
-destination d_redis_persistent_log {
|
|
|
+destination d_stdout { pipe("/dev/stdout"); };
|
|
|
+destination d_redis_ui_log {
|
|
|
redis(
|
|
|
host("redis-mailcow")
|
|
|
persist-name("redis1")
|
|
@@ -34,8 +33,8 @@ destination d_redis_f2b_channel {
|
|
|
filter f_mail { facility(mail); };
|
|
|
log {
|
|
|
source(s_src);
|
|
|
- destination(d_combined);
|
|
|
+ destination(d_stdout);
|
|
|
filter(f_mail);
|
|
|
- destination(d_redis_persistent_log);
|
|
|
+ destination(d_redis_ui_log);
|
|
|
destination(d_redis_f2b_channel);
|
|
|
};
|