From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/77849 Path: news.gmane.org!not-for-mail From: "Edward O'Connor" Newsgroups: gmane.emacs.gnus.general Subject: Re: gmail and sent mail Date: Wed, 16 Mar 2011 11:25:03 -0700 Message-ID: References: <278vwfexrg.fsf@news.eternal-september.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1300299947 8422 80.91.229.12 (16 Mar 2011 18:25:47 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 16 Mar 2011 18:25:47 +0000 (UTC) Cc: nognus To: Richard Riley Original-X-From: ding-owner+M26168@lists.math.uh.edu Wed Mar 16 19:25:42 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PzvPe-0006oN-C8 for ding-account@gmane.org; Wed, 16 Mar 2011 19:25:38 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1PzvPY-0003Tf-F3; Wed, 16 Mar 2011 13:25:32 -0500 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1PzvPX-0003TM-4F for ding@lists.math.uh.edu; Wed, 16 Mar 2011 13:25:31 -0500 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1PzvPW-0001Vm-2l for ding@lists.math.uh.edu; Wed, 16 Mar 2011 13:25:30 -0500 Original-Received: from mail-yx0-f172.google.com ([209.85.213.172]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1PzvPV-0003qE-5l for ding@gnus.org; Wed, 16 Mar 2011 19:25:29 +0100 Original-Received: by yxk30 with SMTP id 30so1034443yxk.17 for ; Wed, 16 Mar 2011 11:25:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=Ys8ETNFOZhnsttAkNUWGnXrDSkgoFPh5+eeZxF5vv5A=; b=XKb1fxZPIodzE/bfGf5i8txuaFJIF7Ib0Xz+Tq3V3IFkXJH19qE7BfhM/QM0IwZE89 kOFQY80EStDuVpd7S8t8VOBQkW/Fkz4d+GSXYwwOfdzFwV3uUp4z43C84384VntuPuXn 6jr0j2Kx1EQZm80JpVLj+drydmXB6vLN1eWLg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=Z5XF1Rj2bxVWB+Bj9rRpjCfF+XbpzVZ1+rYxSBK7ZQV15ia4gtGSBXRGJGQV5smsZd n36byY6jNuDwJ4TZMBEZdkVt6ujBNTzjMUhc8KkxIkTLCaUNq7tYthlAmGDIxNHny4J5 4YA5tizqFU8OWDkL/DMsJgEAfcKIUxyN+swkI= Original-Received: by 10.236.143.8 with SMTP id k8mr282867yhj.220.1300299923200; Wed, 16 Mar 2011 11:25:23 -0700 (PDT) Original-Received: by 10.236.108.49 with HTTP; Wed, 16 Mar 2011 11:25:03 -0700 (PDT) In-Reply-To: <278vwfexrg.fsf@news.eternal-september.org> X-Spam-Score: -1.4 (-) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:77849 Archived-At: > I've been browsing through the list for issues with gmail and "sent > mail". > > What solutions are others here using in the case where you do NOT use > the gmail smtp server but rather your own local domain smtp server (ie > gmail is not auto archiving your sent mail in its Sent Mail folder). > Are you somehow configuring gnus to copy to the "from" gmail Sent folder > or just keeping a local archive? Suggestions? I GCC messages into the group I'm in / the group of the message I'm replying to, with this code: (defvar ted-default-gcc-group "INBOX") (defun ted-gnus-message-archive-group (group) (setq group (or group ted-default-gcc-group "INBOX")) (let ((method (gnus-find-method-for-group group))) (format "%s+%s:%s" (car method) (cadr method) group))) (setq gnus-message-archive-group 'ted-gnus-message-archive-group) Ted