Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* Mail posting in newsgroups
@ 2016-05-13  6:59 N. Raghavendra
  2016-05-16 18:52 ` Adam Sjøgren
  0 siblings, 1 reply; 5+ messages in thread
From: N. Raghavendra @ 2016-05-13  6:59 UTC (permalink / raw)
  To: info-gnus-english

I read the mailing lists I am subscribed to as newsgroups through Gmane.
Lately, I've been having problems with posting through Gmane --- posts
don't reach the mailing list for several hours, first postings to a list
don't trigger an auto-authorization message from Gmane, etc.

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 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.

Thanks,
Raghu.

-- 
N. Raghavendra <raghu@hri.res.in>, http://www.retrotexts.net/
Harish-Chandra Research Institute, http://www.hri.res.in/



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Mail posting in newsgroups
  2016-05-13  6:59 Mail posting in newsgroups N. Raghavendra
@ 2016-05-16 18:52 ` Adam Sjøgren
  0 siblings, 0 replies; 5+ messages in thread
From: Adam Sjøgren @ 2016-05-16 18:52 UTC (permalink / raw)
  To: info-gnus-english

N. writes:

> 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?

Some combination should, yes.

> Unfortunately, I can't test it without spamming the mailing list with
> test messages.

Sure you can, just don't send the email! (Instead, inspect the
Newsgroups: and To: headers).


  Best regards,

    Adam

-- 
 "Set out on a laughless day                                  Adam Sjøgren
  Like a troupe of clowns"                               asjo@koldfront.dk


_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Mail posting in newsgroups
  2016-05-13 19:31 ` Emanuel Berg
@ 2016-05-16 18:52   ` Adam Sjøgren
  0 siblings, 0 replies; 5+ messages in thread
From: Adam Sjøgren @ 2016-05-16 18:52 UTC (permalink / raw)
  To: info-gnus-english

Emanuel writes:

> Probably there is a test newsgroup on Gmane as well. If it is, then
> there is a test mailing list as well!

Indeed, and it is called gmane.test:

 · http://dir.gmane.org/gmane.test


  Best regards,

    Adam

-- 
 "Gravity is arbitrary!"                                      Adam Sjøgren
                                                         asjo@koldfront.dk


_______________________________________________
info-gnus-english mailing list
info-gnus-english@gnu.org
https://lists.gnu.org/mailman/listinfo/info-gnus-english

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Mail posting in newsgroups
  2016-05-13  7:10 N. Raghavendra
@ 2016-05-13 19:31 ` Emanuel Berg
  2016-05-16 18:52   ` Adam Sjøgren
  0 siblings, 1 reply; 5+ messages in thread
From: Emanuel Berg @ 2016-05-13 19:31 UTC (permalink / raw)
  To: info-gnus-english

"N. Raghavendra" <raghu@hri.res.in> 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 -                   



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Mail posting in newsgroups
@ 2016-05-13  7:10 N. Raghavendra
  2016-05-13 19:31 ` Emanuel Berg
  0 siblings, 1 reply; 5+ messages in thread
From: N. Raghavendra @ 2016-05-13  7:10 UTC (permalink / raw)
  To: info-gnus-english

I read the mailing lists I am subscribed to as newsgroups through Gmane.
Lately, I've been having problems with posting through Gmane --- posts
don't reach the mailing list for several hours, first postings to a list
don't trigger an auto-authorization message from Gmane, etc.

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 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.

Thanks,
Raghu.

-- 
N. Raghavendra <raghu@hri.res.in>, http://www.retrotexts.net/
Harish-Chandra Research Institute, http://www.hri.res.in/


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-05-16 18:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-13  6:59 Mail posting in newsgroups N. Raghavendra
2016-05-16 18:52 ` Adam Sjøgren
2016-05-13  7:10 N. Raghavendra
2016-05-13 19:31 ` Emanuel Berg
2016-05-16 18:52   ` Adam Sjøgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).