From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 274EE1FF183 for ; Wed, 24 Sep 2025 13:32:51 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 1166F2EF4; Wed, 24 Sep 2025 13:33:22 +0200 (CEST) From: Stoiko Ivanov To: pmg-devel@lists.proxmox.com Date: Wed, 24 Sep 2025 13:32:29 +0200 Message-ID: <20250924113247.50931-2-s.ivanov@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20250924113247.50931-1-s.ivanov@proxmox.com> References: <20250924113247.50931-1-s.ivanov@proxmox.com> MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1758713578182 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.072 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 URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [multi-user.target, fetchmail.pid] Subject: [pmg-devel] [PATCH 1/1 package-rebuilds] fetchmail: improve shipped service file 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: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pmg-devel-bounces@lists.proxmox.com Sender: "pmg-devel" fetchmail exits with 3 if: 'The user authentication step failed...' (see fetchmail(1)). This also includes if there are no accounts configured for fetching, e.g. if all accounts are configured with 'skip' instead of 'poll'. The usecase in PMG is to set all disabled accounts to 'skip'. So simply do not consider an exit of 3 as failure. Additionally adapt the Restart value to 'on-failure' (else systemd tries restarting 5 times and gives up) see systemd.service(5) for the settings. Signed-off-by: Stoiko Ivanov --- pkgs/fetchmail/fetchmail-6.4.39/debian/fetchmail.service | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/fetchmail/fetchmail-6.4.39/debian/fetchmail.service b/pkgs/fetchmail/fetchmail-6.4.39/debian/fetchmail.service index a6e3168..b7260ac 100644 --- a/pkgs/fetchmail/fetchmail-6.4.39/debian/fetchmail.service +++ b/pkgs/fetchmail/fetchmail-6.4.39/debian/fetchmail.service @@ -21,7 +21,8 @@ User=fetchmail Type=exec # sort $OPTIONS after "-daemon 300" to allow overwriting the interval using $OPTIONS ExecStart=/usr/bin/fetchmail --daemon 300 $OPTIONS --nodetach -f /etc/fetchmailrc --pidfile /run/fetchmail/fetchmail.pid -Restart=always +SuccessExitStatus=3 +Restart=on-failure [Install] WantedBy=multi-user.target -- 2.47.3 _______________________________________________ pmg-devel mailing list pmg-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pmg-devel