any idea why I am getting this storage.conf error and it throttles news.

Christoph Biedl cbiedl at gmx.de
Thu Jun 3 00:38:57 UTC 2004


Wilson, Sue LCC wrote...

> Jun  2 20:45:53 nntp innd: [ID 297438 news.crit] SERVER throttle no matching
> entry in storage.conf storing article - throttling
> Jun  2 20:45:53 nntp innd: [ID 492761 news.error] SERVER cant store article:
> no matching entry in storage.conf

Yes:

> method tradspool {
>         newsgroups: *
>         class: 0
>         size: 0,100000
> }

This file file all articles with a wire size of less than 100000 Bytes
into that storage class. Including those in usace.* which is what you
proably do not want. First match wins and I guess the second declaration
should be in the first place.

> method tradspool {
>         newsgroups: usace.*
>         class: 1 
>         size: 0,2000000
> }

Consequently this will take care of articles in usace.* with a size
between 100k and 2M.

> (END)

It's a very good idea to add an catch-all at the end here, even if
simply discards articles, like:

method trash {
	newsgroups: *
	class: 99
}

At the moment, articles for !usace.* larger than 100k have no place to
go - and you've probably got feeded such a beast. The same would happen
with a 2M article for usace.* although maxartsize in inn.conf would
block such articles entirely.

	Christoph


More information about the inn-workers mailing list