From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: 3a59cc84069376 lisp/gnus/message.el: Reduce redundancy with send-mail-function breaks sendmails -f option Date: Fri, 02 Aug 2019 00:12:30 -0400 Message-ID: References: <20190801233949.z4dfwk2jwawcdpkw@len.workgroup> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="252094"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) To: emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Aug 02 06:12:49 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1htOvu-0013PZ-6z for ged-emacs-devel@m.gmane.org; Fri, 02 Aug 2019 06:12:46 +0200 Original-Received: from localhost ([::1]:60330 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1htOvs-0003e1-Pn for ged-emacs-devel@m.gmane.org; Fri, 02 Aug 2019 00:12:44 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:52008) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1htOvp-0003di-6Y for emacs-devel@gnu.org; Fri, 02 Aug 2019 00:12:42 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1htOvo-0004fz-9a for emacs-devel@gnu.org; Fri, 02 Aug 2019 00:12:41 -0400 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:15457) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1htOvo-0004fi-3Z for emacs-devel@gnu.org; Fri, 02 Aug 2019 00:12:40 -0400 Original-Received: from pmg2.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id 2696885AFD; Fri, 2 Aug 2019 00:12:39 -0400 (EDT) Original-Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id C2EBC82922; Fri, 2 Aug 2019 00:12:37 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1564719157; bh=2V1YtS7KjJnv++h2bdTRTse7HT3KwJ+i1SoKMa7shOI=; h=From:To:Subject:References:Date:In-Reply-To:From; b=dWxNtYvWSwLLJq4628L5YlG/r8vBDVO7AVnE6AdK89efC+/BJVIBCp8NNx8rUZaSA KCBTmsacZ6aZdPqvxSSkHTPNmsNdPu3Xpl9+1w4u0O+K8eGlM8V7j9zWmpqzjvky85 aFRd33TQWGkP3KkGrYSXETc5jImcES1W5vbD/yI2WNzN/tJ0cs3f5YwuyxiRmyKk2J 5meSG8G4Grh1BxJ8cJ68EGPNgNP9rvcbRpOtbQykzaLSsHKY3ZSkSxe46F53j7jAZE smR70aSZrlG01tqm3epItYqAH2J9ZD57xpaUxdmE2vEpmvAjCyp6iyI4sMH9psW8tm 5f/8imARhvuiQ== Original-Received: from pastel (104-195-212-167.cpe.teksavvy.com [104.195.212.167]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 39A1A120ED0; Fri, 2 Aug 2019 00:12:37 -0400 (EDT) In-Reply-To: <20190801233949.z4dfwk2jwawcdpkw@len.workgroup> (Gregor Zattler's message of "Fri, 2 Aug 2019 01:39:49 +0200") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 132.204.25.50 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:239121 Archived-At: > commit 3a59cc84069376802ba8fd731b524d78db58262c broke my email setup. > Somehow (TM) the envelopes sender address (sendmails -f option) is not > taken from From: any more. > > Therefore my smarthost doesn not accept the emails which are then frozen > on my system. > > Among others my customizations contain: > > '(mail-envelope-from 'header) > '(mail-specify-envelope-from t) > > And message-sendmail-f-is-evil is nil. Hmm... message-sendmail-f-is-evil used to default to nil, so the patch seems not to have made any difference in this respect. What's the value of `message-send-mail-function`? What does `M-: (message-default-send-mail-function)` return? Stefan