From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.help Subject: Re: gnus gmail bcc question Date: Tue, 30 Apr 2013 15:52:32 +0200 Message-ID: <87fvy8dt27.fsf@thinkpad.tsdh.de> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1367330124 577 80.91.229.3 (30 Apr 2013 13:55:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 30 Apr 2013 13:55:24 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Apr 30 15:55:23 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UXB1e-0000Es-67 for geh-help-gnu-emacs@m.gmane.org; Tue, 30 Apr 2013 15:55:22 +0200 Original-Received: from localhost ([::1]:40066 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UXB1d-0002Bs-SH for geh-help-gnu-emacs@m.gmane.org; Tue, 30 Apr 2013 09:55:21 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:57263) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UXB1T-0002AX-J0 for help-gnu-emacs@gnu.org; Tue, 30 Apr 2013 09:55:12 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UXB1O-0000i9-UG for help-gnu-emacs@gnu.org; Tue, 30 Apr 2013 09:55:11 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:48205) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UXB1O-0000ha-OS for help-gnu-emacs@gnu.org; Tue, 30 Apr 2013 09:55:06 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UXB1L-0008QM-EV for help-gnu-emacs@gnu.org; Tue, 30 Apr 2013 15:55:03 +0200 Original-Received: from tsdh.uni-koblenz.de ([141.26.67.142]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 30 Apr 2013 15:55:03 +0200 Original-Received: from tsdh by tsdh.uni-koblenz.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 30 Apr 2013 15:55:03 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 39 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: tsdh.uni-koblenz.de User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.3.50 (gnu/linux) Cancel-Lock: sha1:57Ud6Yg3QR6KkijEtwGJ1nsORjk= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 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.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:90423 Archived-At: Guido Van Hoecke writes: Hi Guido, > I always send a blind copy to myself in order to attach a specific > label to my messages, e.g. send a Bcc: guivho+emacs@gmail.com to > attach the 'emacs' label to that message and have it automagically > appearing in my emacs maul folder. I use Gnus gcc-self parameter for exactly the same purpose: --8<---------------cut here---------------start------------->8--- (setq gnus-parameters `((,(rx "nnimap+") ;; Place a copy of sent mail in the group I'm writing from... (gcc-self . t)) (,(rx "nnimap+Fastmail:INBOX.mailinglists.") ;; ...except for mailing list groups (gcc-self . "nnimap+Fastmail:INBOX.Sent Items")))) --8<---------------cut here---------------end--------------->8--- ,----[ (info "(gnus)Group Parameters") ] | `gcc-self' | If `(gcc-self . t)' is present in the group parameter list, newly | composed messages will be `Gcc''d to the current group. If | `(gcc-self . none)' is present, no `Gcc:' header will be | generated, if `(gcc-self . "string")' is present, this string will | be inserted literally as a `gcc' header. This parameter takes | precedence over any default `Gcc' rules as described later (*note | Archived Messages::), with the exception for messages to resend. | | *Caveat*: Adding `(gcc-self . t)' to the parameter list of `nntp' | groups (or the like) isn't valid. An `nntp' server doesn't accept | articles. `---- Bye, Tassilo