Browse Source

[Postfix] Add '*' as send_as to sender_acl map
[Postfix] Syslog-ng: Do not trim after each push to Redis

André 7 years ago
parent
commit
bdf7632757
2 changed files with 1 additions and 9 deletions
  1. 1 0
      data/Dockerfiles/postfix/postfix.sh
  2. 0 9
      data/Dockerfiles/postfix/syslog-ng.conf

+ 1 - 0
data/Dockerfiles/postfix/postfix.sh

@@ -210,6 +210,7 @@ query = SELECT goto FROM alias
   SELECT logged_in_as FROM sender_acl
     WHERE send_as='@%d'
       OR send_as='%s'
+      OR send_as='*'
       OR send_as IN (
         SELECT CONCAT('@',target_domain) FROM alias_domain
           WHERE alias_domain = '%d')

+ 0 - 9
data/Dockerfiles/postfix/syslog-ng.conf

@@ -30,14 +30,6 @@ destination d_redis_f2b_channel {
     command("PUBLISH" "F2B_CHANNEL" "$MESSAGE")
   );
 };
-destination d_redis_cleanup {
-  redis(
-    host("redis-mailcow")
-    persist-name("redis3")
-    port(6379)
-    command("LTRIM" "POSTFIX_MAILLOG" "0" "`LOG_LINES`")
-  );
-};
 filter f_mail { facility(mail); };
 filter f_skip_local { not facility (local0, local1, local2, local3, local4, local5, local6, local7); };
 log {
@@ -47,5 +39,4 @@ log {
   filter(f_mail);
   destination(d_redis_ui_log);
   destination(d_redis_f2b_channel);
-  destination(d_redis_cleanup);
 };