1INCOMING.CONF(5)          InterNetNews Documentation          INCOMING.CONF(5)
2
3
4

NAME

6       incoming.conf - Configuration of incoming news feeds
7

DESCRIPTION

9       The file pathetc/incoming.conf consists of three types of entries:
10       key/value, peer and group.  Comments are from the hash character "#" to
11       the end of the line.  Blank lines are ignored.  All key/value entries
12       within each type must not be duplicated.  Key/value entries are a
13       keyword immediately followed by a colon, at least one blank and a
14       value.  For example:
15
16           max-connections: 10
17
18       A legal key does not contains blanks, colons, nor "#". There are three
19       different types of values:  integers, booleans, and strings.  Integers
20       are as to be expected.  A boolean value is either "true" or "false"
21       (case is significant).  A string value is any other sequence of
22       characters.  If the string needs to contain whitespace, then it must be
23       quoted with double quotes.
24
25       Peer entries look like:
26
27           peer <name> {
28               # body
29           }
30
31       The word "peer" is required.  <name> is a label for this peer.  It is
32       any string valid as a key.  The body of a peer entry contains some
33       number of key/value entries.
34
35       Group entries look like:
36
37           group <name> {
38               # body
39           }
40
41       The word "group" is required.  <name> is any string valid as a key.
42       The body of a group entry contains any number of the three types of
43       entries.  So key/value pairs can be defined inside a group, and peers
44       can be nested inside a group, and other groups can be nested inside a
45       group.  Key/value entries that are defined outside of all peer and
46       group entries are said to be at global scope.  Global key/value entries
47       act as defaults for peers.  When innd looks for a specific value in a
48       peer entry (for example, the maximum number of connections to allow),
49       if the value is not defined in the peer entry, then the enclosing
50       groups are examined for the entry (starting at the closest enclosing
51       group).  If there are no enclosing groups, or the enclosing groups
52       don't define the key/value, then the value at global scope is used.  A
53       small example could be:
54
55           # Global value applied to all peers that have no value of their own.
56           max-connections: 5
57
58           # A peer definition.
59           peer uunet {
60               hostname: usenet1.uu.net
61           }
62
63           peer vixie {
64               hostname: gw.home.vix.com
65               max-connections: 10        # Override global value.
66           }
67
68           # A group of two peers which can open more connections than normal.
69           group fast-sites {
70               max-connections: 15
71
72               # Another peer.  The max-connections: value from the
73               # fast-sites group scope is used.
74               peer data.ramona.vix.com {
75                   hostname: data.ramona.vix.com
76               }
77
78               peer bb.home.vix.com {
79                   hostname: bb.home.vix.com
80                   max-connections: 20    # He can really cook.
81              }
82           }
83
84       Given the above configuration file, the defined peers would have the
85       following values for the max-connections key.
86
87           uunet                  5
88           vixie                 10
89           data.ramona.vix.com   15
90           bb.home.vix.com       20
91

PARAMETERS

93       The following keys are allowed:
94
95       comment
96           This key requires a string value.  Reserved for future use.  The
97           default is an empty string.
98
99       email
100           This key requires a string value.  Reserved for future use.  The
101           default is an empty string.
102
103       hold-time
104           This key requires a positive integer value.  It defines the hold
105           time before closing, if the connection is over max-connections.  A
106           value of zero specifies immediate close.  The default is 0.
107
108       hostname
109           This key requires a string value.  It is a list of hostnames
110           separated by a comma.  A hostname is the host's fully qualified
111           domain name, or the dotted-quad IP address of the peer for IPv4, or
112           the colon-separated IP address of the peer for IPv6.  If this key
113           is not present in a peer block, the hostname defaults to the label
114           of the peer.
115
116       identd
117           This key requires a string value.  It is used if you wish to
118           require a peer's user name retrieved through identd match the
119           specified string.  Note that currently innd does not implement any
120           timeout in identd callbacks, so enabling this option may cause innd
121           to hang if the remote peer does not respond to ident callbacks in a
122           reasonable timeframe.  The default is an empty string, that is to
123           say no identd.
124
125       ignore
126           This key requires a boolean value.  Setting this entry causes innd
127           to refuse every article sent via CHECK or IHAVE by this peer.  The
128           default is false.
129
130       max-connections
131           This key requires a positive integer value.  It defines the maximum
132           number of connections allowed.  A value of zero specifies an
133           unlimited number of maximum connections ("unlimited" or "none" can
134           be used as synonyms).  The default is 0.
135
136       nolist
137           This key requires a boolean value.  It defines whether a peer is
138           allowed to issue list command.  The default is false, that is to
139           say it can.
140
141       noresendid
142           This key requires a boolean value.  It defines whether innd should
143           send 431 (response to CHECK, in streaming mode) or 436 (response to
144           IHAVE in non-streaming mode) responses instead of 438 (response to
145           CHECK) or 435 (response to IHAVE) if a message is offered that is
146           already received from another peer.  This can be useful for peers
147           that resend messages right away, as innfeed does.  The default is
148           false:  the peer receives 431 and 436 codes so that it resends the
149           article later.
150
151       password
152           This key requires a string value.  It is used if you wish to
153           require a peer to supply a password via AUTHINFO USER/PASS.  The
154           default is an empty string, that it to say no password.
155
156       patterns
157           This key requires a string value.  It is a list of
158           newsfeeds(5)-style list of newsgroups which are to be accepted from
159           this host.  The default is the string "*", that is to say all
160           groups are accepted.
161
162       skip
163           This key requires a boolean value.  Setting this entry causes this
164           peer to be skipped.  The default is false.
165
166       streaming
167           This key requires a boolean value.  It defines whether streaming
168           commands (CHECK and TAKETHIS) are allowed from this peer.  The
169           default is true.
170

HISTORY

172       Written by Fabien Tassin <fta@sofaraway.org> for InterNetNews.
173       Converted to POD by Julien Elie.
174
175       $Id: incoming.conf.pod 8436 2009-05-01 09:00:21Z iulius $
176

SEE ALSO

178       inn.conf(5), innd(8), newsfeeds(5), uwildmat(3).
179
180
181
182INN 2.5.2                         2010-08-11                  INCOMING.CONF(5)
Impressum