[Dovecot] Syslog-ng match fixes
parent
ba246d34cb
commit
858f0d686d
|
@ -31,7 +31,10 @@ destination d_redis_f2b_channel {
|
|||
);
|
||||
};
|
||||
filter f_mail { facility(mail); };
|
||||
filter f_replica { not match("User has no mail_replica in userdb" value("MESSAGE")); };
|
||||
filter f_replica {
|
||||
not match("User has no mail_replica in userdb" value("MESSAGE"));
|
||||
not match("Error: sync: Unknown user in remote" value("MESSAGE"));
|
||||
};
|
||||
log {
|
||||
source(s_src);
|
||||
filter(f_replica);
|
||||
|
|
|
@ -31,7 +31,10 @@ destination d_redis_f2b_channel {
|
|||
);
|
||||
};
|
||||
filter f_mail { facility(mail); };
|
||||
filter f_replica { not match("User has no mail_replica in userdb" value("MESSAGE")); };
|
||||
filter f_replica {
|
||||
not match("User has no mail_replica in userdb" value("MESSAGE"));
|
||||
not match("Error: sync: Unknown user in remote" value("MESSAGE"));
|
||||
};
|
||||
log {
|
||||
source(s_src);
|
||||
filter(f_replica);
|
||||
|
|
Loading…
Reference in New Issue