This file is indexed.

/etc/news/storage.conf is in inn2 2.5.3-3ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
##  $Id: storage.conf 7651 2007-08-20 10:28:34Z iulius $
##
##  Rules for where INN should store incoming articles.
##
##  This file is used to determine which storage method articles are sent
##  to be stored and which storage class they are stored as.  Each
##  method is described as follows:
##
##      method <methodname> {
##          newsgroups: <wildmat>
##          class: <storage class #>
##          size: <minsize>[,<maxsize>]
##          expires: <mintime>[,<maxtime>]
##          options: <options>
##          exactmatch: <bool>
##      }
##
##  See the storage.conf man page for more information.
##
##  Only newsgroups, class, and (for CNFS, to specify the metacycbuff)
##  options are required; the other keys are optional.  If any CNFS
##  methods are configured, you will also need to set up cycbuff.conf.

##  By default, store everything in tradspool.

method tradspool {
    newsgroups: *
    class: 0
}

##  Here are some samples for a CNFS configuration.  This assumes that you
##  have two metacycbuffs configured, one for text newsgroups and one for
##  binaries.  Cancel messages, which tend to be very high-volume, are
##  stored in the binary metacycbuff as well.  This assumes storeonxref is
##  set to true in inn.conf.

##  Pick off the binary newsgroups first.

#method cnfs {
#    newsgroups: *.bina*,control.cancel
#    class: 1
#    options: BINARY
#}

##  Put the remaining (text) groups in the other cycbuff.

#method cnfs {
#    newsgroups: *
#    class: 2
#    options: TEXT
#}