all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* 154,128k download!
@ 2015-10-16 18:00 Sharon Kimble
  2015-10-16 18:18 ` Teemu Likonen
  0 siblings, 1 reply; 2+ messages in thread
From: Sharon Kimble @ 2015-10-16 18:00 UTC (permalink / raw)
  To: help-emacs

[-- Attachment #1: Type: text/plain, Size: 1416 bytes --]


I have for a long time had a problem with newsgroups, specifically the
large download when I request a number of postings. Today I monitored
it, I requested 50 postings from the debian mailing list on gmane, and
the download ran up to 154,128k! That seems a large amount just for 50
postings! And there is a pause whilst the counter is counting up to its
total. And the situation is the same with other newsgroups on the
various newsgroups servers that I'm using.

This is the part of my "init.org" that specifically relates to
newsgroups - 

--8<---------------cut here---------------start------------->8---
(add-to-list 'gnus-secondary-select-methods
                         '(nntp "news.gmane.org"
                                        '(nntp "news.gwene.org")
                                        '(nntp "nntp.aioe.org")
                                        '(nntp "news.eternal-september.org")
              (nntp-open-connection-function nntp-open-tls-stream)
              (nntp-port-number 563)))

(setq gnus-visible-headers "^From:\\|^Newsgroup:\\|^Subject:\\|^Date:\\|^Reply-to:\\|^To:")
--8<---------------cut here---------------end--------------->8---

How can I get a smaller download, and which is quicker too please?

Thanks
Sharon.
-- 
A taste of linux = http://www.sharons.org.uk
TGmeds = http://www.tgmeds.org.uk
Debian 8.0, fluxbox 1.3.7, emacs 24.5.50.3

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

* Re: 154,128k download!
  2015-10-16 18:00 154,128k download! Sharon Kimble
@ 2015-10-16 18:18 ` Teemu Likonen
  0 siblings, 0 replies; 2+ messages in thread
From: Teemu Likonen @ 2015-10-16 18:18 UTC (permalink / raw)
  To: Sharon Kimble; +Cc: help-emacs

[-- Attachment #1: Type: text/plain, Size: 1398 bytes --]

Sharon Kimble [2015-10-16 19:00:39+01] wrote:

> (add-to-list 'gnus-secondary-select-methods
>                          '(nntp "news.gmane.org"
>                                         '(nntp "news.gwene.org")
>                                         '(nntp "nntp.aioe.org")
>                                         '(nntp "news.eternal-september.org")
>               (nntp-open-connection-function nntp-open-tls-stream)
>               (nntp-port-number 563)))

That's so wrong. Here's the same thing indented correctly so you can
probably see what's wrong:


(add-to-list 'gnus-secondary-select-methods
             '(nntp "news.gmane.org"
                    '(nntp "news.gwene.org")
                    '(nntp "nntp.aioe.org")
                    '(nntp "news.eternal-september.org")
                    (nntp-open-connection-function nntp-open-tls-stream)
                    (nntp-port-number 563)))


I _guess_ you want this:


(add-to-list 'gnus-secondary-select-methods
             '(nntp "news.gmane.org"))
(add-to-list 'gnus-secondary-select-methods
             '(nntp "news.gwene.org"))
(add-to-list 'gnus-secondary-select-methods
             '(nntp "nntp.aioe.org"))
(add-to-list 'gnus-secondary-select-methods
             '(nntp "news.eternal-september.org"
                    (nntp-open-connection-function nntp-open-tls-stream)
                    (nntp-port-number 563)))

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 818 bytes --]

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

end of thread, other threads:[~2015-10-16 18:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-16 18:00 154,128k download! Sharon Kimble
2015-10-16 18:18 ` Teemu Likonen

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.