From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/19781 Path: main.gmane.org!not-for-mail From: Rajesh Godbole Newsgroups: gmane.emacs.gnus.general Subject: Setting Gcc to an nnimap group Date: 09 Dec 1998 16:37:07 -0800 Sender: owner-ding@hpc.uh.edu Message-ID: <8t6vhjk3k98.fsf@Corp.Sun.COM> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035158068 13345 80.91.224.250 (20 Oct 2002 23:54:28 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:54:28 +0000 (UTC) Return-Path: Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id TAA26232 for ; Wed, 9 Dec 1998 19:39:24 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.9.1/8.9.1) with ESMTP id SAA21362; Wed, 9 Dec 1998 18:38:54 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 09 Dec 1998 18:38:32 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id SAA16111 for ; Wed, 9 Dec 1998 18:38:11 -0600 (CST) Original-Received: from mercury.Sun.COM (mercury.Sun.COM [192.9.25.1]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id TAA26172 for ; Wed, 9 Dec 1998 19:37:58 -0500 (EST) Original-Received: from Corp.Sun.COM ([129.145.35.78]) by mercury.Sun.COM (SMI-8.6/mail.byaddr) with SMTP id QAA16421; Wed, 9 Dec 1998 16:37:10 -0800 Original-Received: from darwinplus.Corp.Sun.COM by Corp.Sun.COM (SMI-8.6/SMI-5.3) id QAA25350; Wed, 9 Dec 1998 16:37:07 -0800 Original-Received: (from rajesh@localhost) by darwinplus.Corp.Sun.COM (8.9.1b+Sun/8.9.1) id QAA03615; Wed, 9 Dec 1998 16:37:07 -0800 (PST) Original-To: nnimap@extundo.com, ding@gnus.org X-Attribution: argv Mail-Copies-To: never X-nnimap-version: nnimap 0.39 User-Agent: Gnus/5.070065 (Pterodactyl Gnus v0.65) XEmacs/21.0 (Poitou) Precedence: list X-Majordomo: 1.94.jlt7 Original-Lines: 37 Xref: main.gmane.org gmane.emacs.gnus.general:19781 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:19781 The following setup has worked for me, mostly. This sets up my Gcc header to nnimap+aries:Mail/sent-{news,mail} depending on whether I'm sending email or posting news. Gotchas: o The Mail/sent-{mail,news} folders on the server *need* to exist. nnimap appends to these. o message mode spits out a message Couldn't store article in group ..., but the article gets appended to Mail/sent-mail Other possibly beneficial things: o Make the sent-mail and sent-news groups permanently visible and display all through G c o Set group level to 2 through S l (I set my nnimap folders to level 1, so a 1 g gets email in that level and will skip the Gcc'ed folders) HTH, -rajesh ;; ;; Begin Setup for Gcc: nnimap+aries:Mail/sent-{mail,news} ;; (setq gnus-message-archive-method '(nnimap "aries" (nnimap-server-address "aries") (nnimap-imap-directory "~/Mail/"))) (setq gnus-message-archive-group '((if (message-news-p) "Mail/sent-news" "Mail/sent-mail"))) ;; End setup