emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nick Dokos <ndokos@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: After Gmane shutdown: how can I read/write to the org-mode mailing list online
Date: Tue, 27 Jun 2017 12:06:21 -0400	[thread overview]
Message-ID: <87tw31qute.fsf@alphaville.usersys.redhat.com> (raw)
In-Reply-To: 871sq54iub.fsf@t3610

Eric S Fraga <e.fraga@ucl.ac.uk> writes:

> On Tuesday, 27 Jun 2017 at 12:56, Uwe Brauer wrote:
>> Ooh, what makes you say gmane was shut down? right now I am using gmane
>> to read this message and to reply.
>
> I think the OP means a web interface to gmane which I think no longer
> exists?  I assume you are using an MUA to access gmane lists?

The NNTP interface works and so you can use Gnus to read (and reply
to) the mailing list.  The setup is


--8<---------------cut here---------------start------------->8---
(setq gnus-select-method
	     '(nntp "news.gmane.org"
		     (nntp-open-connection-function nntp-open-tls-stream)
		     (nntp-port-number 563)
		     (nnir-search-engine gmane)
		     ))
--8<---------------cut here---------------end--------------->8---

[The following is completely optional, separate and unrelated - but it
is convenient.]

If you want to use Gnus for reading email as well, you can add your email
source(s) as secondary select methods:


--8<---------------cut here---------------start------------->8---
(require 'nnir)

(setq gnus-secondary-select-methods nil)
(add-to-list 'gnus-secondary-select-methods
             '(nnimap "GMail"
                      (nnimap-address "imap.gmail.com")
                      (nnimap-port 587)
                      (nnimap-stream ssl)
                      (nnimap-records-commands t)
                      (nnir-search-enging imap)))

(add-to-list 'gnus-secondary-select-methods
 	     '(nnimap "Ohter email service
 		      (nnimap-address "imap.some-mail-service.com")
                      (... other setup ...)
 		      (nnimap-stream ssl)
 		      (nnimap-record-commands t)))
--8<---------------cut here---------------end--------------->8---

This takes care of incoming mail.

There is also outgoing mail to worry about, but that's not a Gnus
problem: you have to set up a couple of things in the smtpmail
library (C-h i smtp RET): the sending method, the server, and the port.
I use my localhost at port 25 as my mail server and run postfix to
forward the mail to my "real" relay:

(setq send-mail-function (quote smtpmail-send-it))
(setq smtpmail-smtp-server "localhost")
(setq smtpmail-smtp-service 25)

The postfix set-up is left as an exercise, but there are plenty
of tutorials on the interwebs.
-- 
Nick

  reply	other threads:[~2017-06-27 16:54 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-27  8:26 After Gmane shutdown: how can I read/write to the org-mode mailing list online Elwood151
2017-06-27 12:56 ` Uwe Brauer
     [not found] ` <4b263e14098b4aa4b71cbbfcf4494d85@HE1PR01MB1898.eurprd01.prod.exchangelabs.com>
2017-06-27 14:15   ` Eric S Fraga
2017-06-27 16:06     ` Nick Dokos [this message]
2017-06-27 16:51     ` M
2017-06-27 17:24       ` Uwe Brauer
     [not found] <143f995d6db248e4aff5f3f1a07cd229@HE1PR01MB1898.eurprd01.prod.exchangelabs.com>
2017-06-27 19:23 ` Eric S Fraga

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87tw31qute.fsf@alphaville.usersys.redhat.com \
    --to=ndokos@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).