This file is indexed.

/etc/news/innfeed.conf is in inn2 2.5.2+20110413-1build1.

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
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
# $Revision: 8243 $
#
# Sample innfeed config file. See the comment block at the
# end for a fuller description of the format, and innfeed.conf(5) for a
# description of the entries.
#

##
## Global values. Not specific to any peer. These are optional, but if
## used will override the compiled in values.
##

pid-file:			innfeed.pid		# relative to pathrun
debug-level:			0
use-mmap:			false
log-file:			innfeed.log		# relative to pathlog
stdio-fdmax:			0
log-time-format:                "%a %b %d %H:%M:%S %Y"

## Uncomment the next line to include the contents
## of ``testfile'' at this point.

#$INCLUDE testfile

backlog-directory:		innfeed			# relative to pathspool
backlog-rotate-period:		60
backlog-ckpt-period:		30
backlog-newfile-period:		600

dns-retry:			900
dns-expire:			86400
close-period:			86400
gen-html:			false			# if true, status-file is relative to pathhttp
status-file:			innfeed.status		# otherwise, it is relative to pathlog
connection-stats:		false
host-queue-highwater:		200
stats-period:			600
stats-reset:			43200

max-reconnect-time:		3600
initial-reconnect-time:		30


##
## Defaults for all peers. These must all exist at
## global scope. Any of them can be redefined
## inside a peer or group definition.
##

article-timeout:		600
response-timeout:		300
initial-connections:		1
max-connections:		5
max-queue-size:			5
streaming:			true
no-check-high:			95.0
no-check-low:			90.0
no-check-filter:		50.0
port-number:			119
force-ipv4:			false
drop-deferred:			false
min-queue-connection:		false
backlog-limit:			0
backlog-factor:			1.10
backlog-limit-highwater:	0
dynamic-method:			3
dynamic-backlog-filter:		0.7
dynamic-backlog-low:		25.0
dynamic-backlog-high:		50.0
no-backlog:			false
backlog-feed-first:             false

##
## Peers. 
##
#peer decwrl {
#        ip-name:                news1.pa.dec.com
#}

#peer uunet {
#        ip-name:                news.uunet.uu.net
#        max-connections:        10
#}


##
## Group peers together to give second level defaults.
## 
#group fast-sites {
#	max-connections: 7
#
#	peer data.ramona.vix.com {
#		# ip-name defaults to data.ramona.vix.com
#	        streaming:              false
#	}
#
#	peer bb.home.vix.com {
#	        ip-name:        192.5.5.33
#	}
#}



# Blank lines are ignored. Exerything after a '#'
# is ignored too.
#
# Format is:
#               key : value
#
# See innfeed.conf(5) for a description of
# necessary & useful keys. Unknown keys and their
# values are ignored.
#
# Values may be a integer, floating-point, c-style
# single-quoted characters, boolean, and strings.
#
# If a string value contains whitespace, or
# embedded quotes, or the comment character
# (``#''), then the whole string must be quoted
# with double quotes.  Inside the quotes, you may
# use the standard c-escape sequence
# (\t,\n,\r,\f,\v,\",\').
#
# Examples:
#       eg-string:      "New\tConfig\tfile\n"
#       eg-long-string: "A long string that goes
#                       over multiple lines. The
#                       newline is kept in the
#                       string except when quoted 
#                       with a backslash \
#                       as here."
#       eg-simple-string: A-no-quote-string
#       eg-integer:     10
#       eg-boolean:     true
#       eg-char:        'a'
#       eg-ctrl-g:      '\007'