From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/16271 Path: news.gmane.org!not-for-mail From: Alexander Baier Newsgroups: gmane.emacs.gnus.user Subject: Gcc is ignored when sending mail from emacs lisp Date: Fri, 10 May 2013 15:40:52 +0200 Message-ID: <87fvxvvtp7.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1368193514 24330 80.91.229.3 (10 May 2013 13:45:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 10 May 2013 13:45:14 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Fri May 10 15:45:14 2013 Return-path: Envelope-to: gegu-info-gnus-english@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 1UandH-0003hc-GI for gegu-info-gnus-english@m.gmane.org; Fri, 10 May 2013 15:45:11 +0200 Original-Received: from localhost ([::1]:59292 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UandH-0002Oz-5s for gegu-info-gnus-english@m.gmane.org; Fri, 10 May 2013 09:45:11 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:39882) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UandE-0002Lx-6m for info-gnus-english@gnu.org; Fri, 10 May 2013 09:45:09 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UandC-0006It-NA for info-gnus-english@gnu.org; Fri, 10 May 2013 09:45:08 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:53407) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UandC-0006HI-Gd for info-gnus-english@gnu.org; Fri, 10 May 2013 09:45:06 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Uand9-0003XC-AP for info-gnus-english@gnu.org; Fri, 10 May 2013 15:45:03 +0200 Original-Received: from nat-wh-wh36.rz.uni-karlsruhe.de ([141.70.81.154]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 May 2013 15:45:03 +0200 Original-Received: from lexi.baier by nat-wh-wh36.rz.uni-karlsruhe.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 May 2013 15:45:03 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 28 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: nat-wh-wh36.rz.uni-karlsruhe.de User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:rdshxivc3349kZRQ6Ur+TrJMwLo= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:16271 Archived-At: Hello, I want to sent mail from emacs lisp code, but the given Gcc-field is not considered by the send function and thus no mail is put into my "Sent Items" Group/Folder. When I send a mail from within gnus, everything works out fine. This is the relevant code: Sending mail from outside gnus: --8<---------------cut here---------------start------------->8--- (defun org-tut-send-mail () (message-mail "my.email@foo.com" "[ELISP-TEST] Test" '(("From" . "my.email@foo.com") ("Gcc" . "nnimap+imap.server.com:\"Sent Items\""))) (insert "SOME TEXT") (message-send-and-exit)) --8<---------------cut here---------------end--------------->8--- The above snippet sends the Email just fine, but nothing gets stored in my Sent Items group. Can anybody give me some pointers on this? PS: If you need further information, name it and I will gladly provide it. Regards, Alex