all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* gnus
@ 2006-12-29 15:49 Sean Sieger
  0 siblings, 0 replies; 7+ messages in thread
From: Sean Sieger @ 2006-12-29 15:49 UTC (permalink / raw)


My four year-old daughter and I were watching "Ice Age" when I asked
her, "do you think those are supposed to be wildebeests or gnus?"

"Guh-noos," she answered, just as I had mis-pronounced it, "do you
want to hear the bad news, daddy?"

True story.

Maybe it would be less off-topic on the Gnus newsreader list.

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

* gnus
@ 2014-12-18 17:35 igor denisov
  2014-12-19  0:59 ` gnus Christopher Reichert
       [not found] ` <mailman.16461.1418950771.1147.help-gnu-emacs@gnu.org>
  0 siblings, 2 replies; 7+ messages in thread
From: igor denisov @ 2014-12-18 17:35 UTC (permalink / raw)
  To: help-gnu-emacs

Hi there,
I have this error after issuing M-x gnus:
nntp (news) open error >>>(error Unknown host "news")
native gnus.el is used.

I tried example from FAQ with the same result.
gnus folder in PATH.

And I do not have paths.el may it be the case?

May you help me?

Regards,
Igor



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

* Re: gnus
  2014-12-18 17:35 gnus igor denisov
@ 2014-12-19  0:59 ` Christopher Reichert
       [not found] ` <mailman.16461.1418950771.1147.help-gnu-emacs@gnu.org>
  1 sibling, 0 replies; 7+ messages in thread
From: Christopher Reichert @ 2014-12-19  0:59 UTC (permalink / raw)
  To: help-gnu-emacs


On Thu, Dec 18 2014, igor denisov <saufesma@gmail.com> wrote:
> Hi there,
> I have this error after issuing M-x gnus:
> nntp (news) open error >>>(error Unknown host "news")
> native gnus.el is used.
>

Is the news source a valid nntp source? Can you paste the relevant
contents of your ~/.gnus?

For example, I use:


    (setq gnus-select-method '(nntp "news.gmane.org"))

or
    (setq gnus-secondary-select-methods
        (nntp "news.gmane.org"
              (nntp-stream ssl)
              (nntp-server-port 563))))


> I tried example from FAQ with the same result.
> gnus folder in PATH.
>
> And I do not have paths.el may it be the case?
>
> May you help me?
>
> Regards,
> Igor
>

-- 
Christopher Reichert
irc: creichert
gpg: C81D 18C8 862A 3618 1376  FFA5 6BFC A992 9955 929B



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

* Re: gnus
       [not found] ` <mailman.16461.1418950771.1147.help-gnu-emacs@gnu.org>
@ 2014-12-19  9:04   ` Felix Dietrich
  2014-12-29  3:56     ` gnus Emanuel Berg
  0 siblings, 1 reply; 7+ messages in thread
From: Felix Dietrich @ 2014-12-19  9:04 UTC (permalink / raw)
  To: help-gnu-emacs

Christopher Reichert <creichert07@gmail.com> writes:

> On Thu, Dec 18 2014, igor denisov <saufesma@gmail.com> wrote:
>> Hi there,
>> I have this error after issuing M-x gnus:
>> nntp (news) open error >>>(error Unknown host "news")
>> native gnus.el is used.
>>
>
> Is the news source a valid nntp source? Can you paste the relevant
> contents of your ~/.gnus?

That would indeed be useful.

> For example, I use:

>     (setq gnus-secondary-select-methods
>         (nntp "news.gmane.org"
>               (nntp-stream ssl)
>               (nntp-server-port 563))))

The example is missing a quote and is closing one more bracket than it
should.  Also I could not find `nntp-stream' and `nntp-server-port' in
(info "gnus"); and in my configuration I actually use `nntp-port-number'
and `nntp-open-connection-function' set to `nntp-open-ssl-stream'.

     (setq gnus-secondary-select-methods
         '(nntp "news.gmane.org"
                (nntp-open-connection-function nntp-open-ssl-stream)
                (nntp-port-number 563)))

--
Felix Dietrich



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

* Re: gnus
       [not found] <mailman.16434.1418925226.1147.help-gnu-emacs@gnu.org>
@ 2014-12-29  3:50 ` Emanuel Berg
  0 siblings, 0 replies; 7+ messages in thread
From: Emanuel Berg @ 2014-12-29  3:50 UTC (permalink / raw)
  To: help-gnu-emacs

igor denisov <saufesma@gmail.com> writes:

> Hi there, I have this error after issuing M-x gnus:
> nntp (news) open error >>>(error Unknown host
> "news") native gnus.el is used.

It sounds like `gnus-select-method' isn't set.

For example, I have:

    (setq gnus-select-method '(nntp "Aioe.org"))

See the documentation for `gnus-select-method' (it is
a variable) for how to use it and what to put there.

Then you can complement it by using
`gnus-secondary-select-methods' if you in addition to
news also would like to read mail and RSS with Gnus.

-- 
underground experts united


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

* Re: gnus
  2014-12-19  9:04   ` gnus Felix Dietrich
@ 2014-12-29  3:56     ` Emanuel Berg
  2015-01-25  2:17       ` gnus Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 7+ messages in thread
From: Emanuel Berg @ 2014-12-29  3:56 UTC (permalink / raw)
  To: help-gnu-emacs

Felix Dietrich <felix.dietrich@sperrhaken.name>
writes:

> The example is missing a quote and is closing one
> more bracket than it should. Also I could not find
> `nntp-stream' and `nntp-server-port' in (info
> "gnus"); and in my configuration I actually use
> `nntp-port-number' and
> `nntp-open-connection-function' set to
> `nntp-open-ssl-stream'.
>
> (setq gnus-secondary-select-methods '(nntp
> "news.gmane.org" (nntp-open-connection-function
> nntp-open-ssl-stream) (nntp-port-number 563)))

Yes, but why does it have to be so complicated? To be
secure (with SSL)?

    (setq gnus-select-method '(nntp "Aioe.org"))
    (setq gnus-secondary-select-methods '((nnml "")
                                          (nntp "news.gwene.org")))

The fun and easy way!

-- 
underground experts united


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

* Re: gnus
  2014-12-29  3:56     ` gnus Emanuel Berg
@ 2015-01-25  2:17       ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 7+ messages in thread
From: Lars Magne Ingebrigtsen @ 2015-01-25  2:17 UTC (permalink / raw)
  To: help-gnu-emacs

Emanuel Berg <embe8573@student.uu.se> writes:

>> (setq gnus-secondary-select-methods '(nntp
>> "news.gmane.org" (nntp-open-connection-function
>> nntp-open-ssl-stream) (nntp-port-number 563)))
>
> Yes, but why does it have to be so complicated? To be
> secure (with SSL)?

Yeah, you used to have to do stuff like that.  These days it's common
for NNTP servers to support STARTTLS, and Emacs will upgrade to an
encrypted connection automatically.

-- 
(domestic pets only, the antidote for overdose, milk.)
  bloggy blog http://lars.ingebrigtsen.no/


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

end of thread, other threads:[~2015-01-25  2:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-18 17:35 gnus igor denisov
2014-12-19  0:59 ` gnus Christopher Reichert
     [not found] ` <mailman.16461.1418950771.1147.help-gnu-emacs@gnu.org>
2014-12-19  9:04   ` gnus Felix Dietrich
2014-12-29  3:56     ` gnus Emanuel Berg
2015-01-25  2:17       ` gnus Lars Magne Ingebrigtsen
     [not found] <mailman.16434.1418925226.1147.help-gnu-emacs@gnu.org>
2014-12-29  3:50 ` gnus Emanuel Berg
  -- strict thread matches above, loose matches on Subject: below --
2006-12-29 15:49 gnus Sean Sieger

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.