From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/11183 Path: news.gmane.org!not-for-mail From: Memnon Anon Newsgroups: gmane.emacs.gnus.user Subject: Re: FAQ 5.2 still correct? [solved] Date: Tue, 8 Jul 2008 18:51:20 -0700 (PDT) Organization: http://groups.google.com Message-ID: <1ead6e92-5591-4519-94fe-99d236e67a15@x35g2000hsb.googlegroups.com> References: <27db581e-f08c-4e9e-989e-0b6391a9f387@a70g2000hsh.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1215571237 6100 80.91.229.12 (9 Jul 2008 02:40:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 9 Jul 2008 02:40:37 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Wed Jul 09 04:41:24 2008 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KGPcN-0001PA-0w for gegu-info-gnus-english@m.gmane.org; Wed, 09 Jul 2008 04:41:19 +0200 Original-Received: from localhost ([127.0.0.1]:46444 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KGPbV-00068L-Ic for gegu-info-gnus-english@m.gmane.org; Tue, 08 Jul 2008 22:40:25 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!x35g2000hsb.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 27 Original-NNTP-Posting-Host: 85.178.197.65 Original-X-Trace: posting.google.com 1215568280 6263 127.0.0.1 (9 Jul 2008 01:51:20 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Wed, 9 Jul 2008 01:51:20 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: x35g2000hsb.googlegroups.com; posting-host=85.178.197.65; posting-account=OEfGLAoAAABFkVsXQs45k2Sa4YfQxyZe User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; de; rv:1.8.1.14) Gecko/20080404 Iceweasel/2.0.0.14 (Debian-2.0.0.14-2), gzip(gfe), gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.gnus:81402 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 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: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:11183 Archived-At: Solved! As I said, gnus per se did not add the message-id. I confirmed this again by using (setq message-generate-headers-first t). No Message-Id was generated, but mail in ~/Mail/queued-mail/ had a Message-Id. So I had a look at smtpmail.el. This file contains these lines: ;; Insert a `Message-Id:' field if there isn't one yet. (goto-char (point-min)) (unless (re-search-forward "^Message-Id:" delimline t) (insert "Message-Id: " (message-make-message-id) "\n")) I just - copied the file to smtpmail-changed.el - added ;; in front of each of those three lines - changed the last line to (provide 'smtpmail-changed) - changed my .gnus to (require 'smtpmail-changed) Now, my Message-Id is set by the google smtp-server ;) Great! Thanks to the author of smtpmail.el for extensively documenting each single step in there!