From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/18244 Path: news.gmane.org!not-for-mail From: Emanuel Berg Newsgroups: gmane.emacs.gnus.user Subject: Re: Mail posting in newsgroups Date: Fri, 13 May 2016 21:31:19 +0200 Message-ID: <86inyh7o1k.fsf@student.uu.se> References: 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 1463420925 1579 80.91.229.3 (16 May 2016 17:48:45 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 16 May 2016 17:48:45 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Mon May 16 19:48:34 2016 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 1b2Md7-0005AK-LC for gegu-info-gnus-english@m.gmane.org; Mon, 16 May 2016 19:48:33 +0200 Original-Received: from localhost ([::1]:45567 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2Md7-0000Y9-2g for gegu-info-gnus-english@m.gmane.org; Mon, 16 May 2016 13:48:33 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33844) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2McR-0007Ie-MP for info-gnus-english@gnu.org; Mon, 16 May 2016 13:47:55 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b2McL-00075g-OA for info-gnus-english@gnu.org; Mon, 16 May 2016 13:47:50 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:36496) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2McL-00075P-H0 for info-gnus-english@gnu.org; Mon, 16 May 2016 13:47:45 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1b1Io7-0002zf-Cp for info-gnus-english@gnu.org; Fri, 13 May 2016 21:31:31 +0200 Original-Received: from c-9ce1e655.08-680-7570702.cust.bredbandsbolaget.se ([85.230.225.156]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 May 2016 21:31:31 +0200 Original-Received: from embe8573 by c-9ce1e655.08-680-7570702.cust.bredbandsbolaget.se with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 May 2016 21:31:31 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: info-gnus-english@gnu.org Original-Lines: 64 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: c-9ce1e655.08-680-7570702.cust.bredbandsbolaget.se User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) Mail-Copies-To: never Cancel-Lock: sha1:lI13dlhuZ9c6dFb/kf4JcC8KkKE= 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.21 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" Xref: news.gmane.org gmane.emacs.gnus.user:18244 Archived-At: "N. Raghavendra" writes: > I read the mailing lists I am subscribed to as > newsgroups through Gmane. Lately, I've been > having problems with posting through Gmane If so, hopefully people are working on that so you soon can use Gmane the way it is intended instead of half-brews workarounds... > So, I am wondering if it is possible to post > articles and followups in Gmane newsgroups by > email. For example, if I am in the summary > buffer of the gmane.emacs.orgmode group, and hit > `a', I'd like Gnus to start composing a mail > message to emacs-orgmode@gnu.org. Similarly, if > I am in the summary buffer of that group and hit > "F", I'd like Gnus to start composing a *mail* > reply to the selected article, with > emacs-orgmode@gnu.org as the "To" address. > Is there a way to do this? I don't know if there is a built-in way to do it, but you can certainly automatize it thus, by extracting the email address and then put together a message! You can get the header value with `gnus-article-header-value'. Here is some code that shows how to put together a message - by using the same functions somewhat differently, you should be able to solve your problem. (require 'cl-macs) (require 'gnus-msg) (require 'message) (defun mail-to-many (to subject body) (cl-dolist (this-to to) (gnus-post-news 'post "") (message-goto-to) (insert this-to) (message-goto-subject) (insert subject) (message-goto-body) (insert body) (message-send-and-exit) )) > I was reading about group parameters in the > manual. Will setting to-address and to-list > parameters of the gmane.emacs.orgmode group to > emacs-orgmode@gnu.org do what I've described > above? Unfortunately, I can't test it without > spamming the mailing list with test messages. On nntp.aioe.org, there is the Usenet newsgroup alt.test for this kind of situation. Probably there is a test newsgroup on Gmane as well. If it is, then there is a test mailing list as well! -- underground experts united .... http://user.it.uu.se/~embe8573 Emacs Gnus Blogomatic ......... http://user.it.uu.se/~embe8573/blogomatic - so far: 29 Blogomatic articles -