From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.help Subject: Re: Gnus: Blocked message to gmail addresses Date: Sun, 12 Feb 2023 21:15:08 +0100 Message-ID: <865yc6iqsz.fsf@gnu.org> References: <86cz6xmsxr.fsf@duenenhof-wilhelm.de> <86h6w8jsyt.fsf@gnu.org> <86r0vbeiob.fsf@duenenhof-wilhelm.de> <86tu07t01w.fsf@gnu.org> <86zg9i65yz.fsf@duenenhof-wilhelm.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="38214"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: help-gnu-emacs@gnu.org To: "H. Dieter Wilhelm" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Sun Feb 12 21:15:54 2023 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pRIlN-0009ma-Lm for geh-help-gnu-emacs@m.gmane-mx.org; Sun, 12 Feb 2023 21:15:54 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pRIl1-0004qg-VM; Sun, 12 Feb 2023 15:15:31 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRIl0-0004qC-0p for help-gnu-emacs@gnu.org; Sun, 12 Feb 2023 15:15:30 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRIkz-0003n8-G5; Sun, 12 Feb 2023 15:15:29 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=HN4YPGypXbbQ0v6dDi+72/G1Q5mEZDp/Yuy9WBdyouU=; b=LMxVHGh5St2acEK0v2SX QBxD5JO9T9W2/gpvlogKyDx1XW2p58MKQiByEcHZQReD+E23pvstonjKP+6ogZDZMA4GZpcBtTEsl +atlDJ/mtfyZqogLDrwUgH2pPqZq5rlj4n1Ff6sMzp2DP/XdTyuKQ5sAXFW2/Ssuwo5xbKV4DpOuk iOGFGGngMx+Ef6Hnx9eEdoEjf3YWglrJAATL0CvV2T1B+T0sint11bYVZbRW5lzaLB2byDHdYpenS kgT2K+k6lA10p53lt1SEpPldXpwizO8tkcB1tIYTfdBZ8K0XpIUH4LeZwI1c1kh3V6+jpLaqNifAT JajN+dYuRSDCVg==; Original-Received: from p5b326467.dip0.t-ipconnect.de ([91.50.100.103] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pRIkz-0008Vc-2Q; Sun, 12 Feb 2023 15:15:29 -0500 In-Reply-To: <86zg9i65yz.fsf@duenenhof-wilhelm.de> (H. Dieter Wilhelm's message of "Sun, 12 Feb 2023 20:25:56 +0100") X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:142728 Archived-At: "H. Dieter Wilhelm" writes: > Above configurations seem to apply when I'm "in" a respective group but > how can I set parameters when I'm in the Gnus' *Group* buffer and want > to write a new mail (m) or with C-x m from an arbitrary buffer? > > So far I'm always getting > > Gcc: nnfolder+archive:sent.2023-02 > > instead of > > Gcc: nnimap+1und1:Sent The relevant part from the manual is this: All clauses that match the group name will be used, but the last setting =E2=80=9Cwins=E2=80=9D. So if you have two clauses that both ma= tch the group name, and both set, say display, the last setting will override the first. So depending on your setup, you could write: (setq gnus-parameters '((".*" (gcc-self . "nnimap+1und1:Sent")) (further refinements here) (...))) And then you should also delete the part which is responsible for Gcc: nnfolder+archive:sent.2023-02 Best, Arash