From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 3F9F3DCDC for ; Fri, 22 Sep 2023 11:58:35 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 2060490AE for ; Fri, 22 Sep 2023 11:58:35 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Fri, 22 Sep 2023 11:58:34 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 78656487FF for ; Fri, 22 Sep 2023 11:58:33 +0200 (CEST) From: Maximiliano Sandoval To: pmg-devel@lists.proxmox.com Date: Fri, 22 Sep 2023 11:58:32 +0200 Message-Id: <20230922095832.192110-1-m.sandoval@proxmox.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.003 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pmg-devel] [PATCH pmg-api] reduce the logging level of certain messages X-BeenThere: pmg-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Mail Gateway development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Sep 2023 09:58:35 -0000 The (re)started messages happen whenever the service is started. These messages do not indicate any error. Signed-off-by: Maximiliano Sandoval --- src/bin/pmg-smtp-filter | 4 ++-- src/bin/pmgpolicy | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bin/pmg-smtp-filter b/src/bin/pmg-smtp-filter index 13da635..7da3de8 100755 --- a/src/bin/pmg-smtp-filter +++ b/src/bin/pmg-smtp-filter @@ -366,7 +366,7 @@ sub load_config { my $prop = $self->{server}; if ($self->{ruledb}) { - $self->log (0, "reloading configuration $database"); + $self->log ('info', "reloading configuration $database"); $self->{ruledb}->close (); } @@ -426,7 +426,7 @@ sub pre_loop_hook { $prop->{log_level} = 3; - $self->log (0, "Filter daemon (re)started (max. $max_servers processes)"); + $self->log ('info', "Filter daemon (re)started (max. $max_servers processes)"); eval { PMG::MailQueue::cleanup_active(); }; $self->log (0, "Cleanup failures: $@") if $@; diff --git a/src/bin/pmgpolicy b/src/bin/pmgpolicy index 38c3621..df2e66f 100755 --- a/src/bin/pmgpolicy +++ b/src/bin/pmgpolicy @@ -290,7 +290,7 @@ sub pre_loop_hook { $prop->{log_level} = 3; - $self->log(0, "Policy daemon (re)started"); + $self->log('info', "Policy daemon (re)started"); $SIG{'USR1'} = sub { # reloading server configuration @@ -315,7 +315,7 @@ sub load_config { my $prop = $self->{server}; if ($self->{ruledb}) { - $self->log(0, "reloading configuration $database"); + $self->log('info', "reloading configuration $database"); $self->{ruledb}->close(); } -- 2.39.2