From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos 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 Message-ID: <87tw31qute.fsf@alphaville.usersys.redhat.com> References: <4b263e14098b4aa4b71cbbfcf4494d85@HE1PR01MB1898.eurprd01.prod.exchangelabs.com> <871sq54iub.fsf@t3610> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52366) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dPtlG-0006q3-Cp for emacs-orgmode@gnu.org; Tue, 27 Jun 2017 12:54:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dPt0g-0000wG-15 for emacs-orgmode@gnu.org; Tue, 27 Jun 2017 12:06:42 -0400 Received: from [195.159.176.226] (port=57998 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dPt0f-0000uN-Qb for emacs-orgmode@gnu.org; Tue, 27 Jun 2017 12:06:37 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1dPt0T-0001Wf-FT for emacs-orgmode@gnu.org; Tue, 27 Jun 2017 18:06:25 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org Eric S Fraga 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