From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2201) id 6FBED3858C2C; Sun, 2 Oct 2022 11:01:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6FBED3858C2C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1664708512; bh=+H7Se46i9tkKYHkkHdxCMesge1fKeu7v5Zf2XTPhl9k=; h=To:Subject:Date:From:From; b=BenTiCWDmqABaeu3lAOQZ34e5gqn4EYH6Pe4fuNEU8ZOM/rVmpIEFLodXdWIVdSFa iU2IEhJMKkb4dO7vaSKHHNKs2wI5Xu0G06QPdlnTjxlEzD2cec1gsjGQ0MJxAKdXRA nSB+9AyLnGGCEOqx+ZJDLVI9pcHdAyz35zIpZP1s= To: cygwin-apps-cvs@sourceware.org Subject: [calm - Cygwin server-side packaging maintenance script] branch master, updated. 20220704-16-g89f3b34 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 51a73cae10bcc79c24dc8f00dcafaa69f3897c51 X-Git-Newrev: 89f3b347ea1d4a06c97f52d17f6643598e1c611a Message-Id: <20221002110152.6FBED3858C2C@sourceware.org> Date: Sun, 2 Oct 2022 11:01:52 +0000 (GMT) From: Jon TURNEY List-Id: https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/calm.git;h=89f3b347ea1d4a06c97f52d17f6643598e1c611a commit 89f3b347ea1d4a06c97f52d17f6643598e1c611a Author: Jon Turney Date: Mon Sep 26 13:02:37 2022 +0100 Send emails with 'Reply-To' cygwin-apps Switch email From: back to cygwin-no-reply. Using the cygwin-apps list email doesn't work well, as the list filters out bounces which appear to come from itself. Set Reply-To: instead, so replies go there. This reverts commit d047fed3d38af7a0307f46d74b0bf7e78eaaeda6 ("Change From: address to cygwin-apps") Diff: --- calm/buffering_smtp_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calm/buffering_smtp_handler.py b/calm/buffering_smtp_handler.py index 161438f..f6d5f34 100644 --- a/calm/buffering_smtp_handler.py +++ b/calm/buffering_smtp_handler.py @@ -40,7 +40,7 @@ class BufferingSMTPHandler(logging.handlers.BufferingHandler): logging.handlers.BufferingHandler.__init__(self, capacity=0) self.fromaddr = fromaddr self.toaddrs = toaddrs - self.replyto = replytoaddr + self.replytoaddr = replytoaddr self.subject = subject self.formatter = logging_format self.setFormatter(logging.Formatter(logging_format))