2019-08-09 20:08:58 +08:00
|
|
|
@version: 3.19
|
2017-05-07 05:42:18 +08:00
|
|
|
@include "scl.conf"
|
|
|
|
options {
|
|
|
|
chain_hostnames(off);
|
|
|
|
flush_lines(0);
|
|
|
|
use_dns(no);
|
2019-08-09 20:08:58 +08:00
|
|
|
dns_cache(no);
|
2017-05-07 05:42:18 +08:00
|
|
|
use_fqdn(no);
|
|
|
|
owner("root"); group("adm"); perm(0640);
|
|
|
|
stats_freq(0);
|
|
|
|
bad_hostname("^gconfd$");
|
|
|
|
};
|
|
|
|
source s_src {
|
|
|
|
unix-stream("/dev/log");
|
|
|
|
internal();
|
|
|
|
};
|
2017-07-11 23:09:20 +08:00
|
|
|
destination d_stdout { pipe("/dev/stdout"); };
|
|
|
|
destination d_redis_ui_log {
|
2017-05-07 05:42:18 +08:00
|
|
|
redis(
|
|
|
|
host("redis-mailcow")
|
2017-07-05 00:08:20 +08:00
|
|
|
persist-name("redis1")
|
2017-05-07 05:42:18 +08:00
|
|
|
port(6379)
|
2017-07-05 18:31:52 +08:00
|
|
|
command("LPUSH" "POSTFIX_MAILLOG" "$(format-json time=\"$S_UNIXTIME\" priority=\"$PRIORITY\" program=\"$PROGRAM\" message=\"$MESSAGE\")\n")
|
2017-05-07 05:42:18 +08:00
|
|
|
);
|
|
|
|
};
|
2017-07-05 00:08:20 +08:00
|
|
|
destination d_redis_f2b_channel {
|
|
|
|
redis(
|
|
|
|
host("redis-mailcow")
|
|
|
|
persist-name("redis2")
|
|
|
|
port(6379)
|
|
|
|
command("PUBLISH" "F2B_CHANNEL" "$MESSAGE")
|
|
|
|
);
|
|
|
|
};
|
|
|
|
filter f_mail { facility(mail); };
|
2019-11-24 21:18:27 +08:00
|
|
|
# start
|
|
|
|
# overriding warnings are still displayed when the entrypoint runs its initial check
|
|
|
|
# warnings logged by postfix-mailcow to syslog are hidden to reduce repeating msgs
|
2020-09-18 01:47:11 +08:00
|
|
|
# Some other warnings are ignored
|
|
|
|
filter f_ignore {
|
|
|
|
not match("overriding earlier entry" value("MESSAGE"));
|
|
|
|
not match("TLS SNI from checks.mailcow.email" value("MESSAGE"));
|
|
|
|
not match("no SASL support" value("MESSAGE"));
|
|
|
|
not facility (local0, local1, local2, local3, local4, local5, local6, local7);
|
|
|
|
};
|
2019-11-24 21:18:27 +08:00
|
|
|
# end
|
2017-05-07 05:42:18 +08:00
|
|
|
log {
|
|
|
|
source(s_src);
|
2020-09-18 01:47:11 +08:00
|
|
|
filter(f_ignore);
|
2017-07-11 23:09:20 +08:00
|
|
|
destination(d_stdout);
|
2017-05-07 05:42:18 +08:00
|
|
|
filter(f_mail);
|
2017-07-11 23:09:20 +08:00
|
|
|
destination(d_redis_ui_log);
|
2017-07-05 00:08:20 +08:00
|
|
|
destination(d_redis_f2b_channel);
|
2017-05-07 05:42:18 +08:00
|
|
|
};
|