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
|
# DNNTPSPOOL.CTL
#
# FORMAT:
#
# label domainname maxqueue options
#
# label: specify the label to match the one in dnewsfeeds
# domainname: remote host to push the articles to (to connect to)
# maxqueue: maximum number of queue files to keep for this feed
# options: other options (see below)
#
# OPTIONS:
#
# xreplic - uses innxmit instead of dnewslink, and use
# the xreplic protocol. Not supported by DIABLO.
#
# ----->>> NOT SUPPORTED FOR DIABLO V1.08 OR GREATER DUE TO
# MULTI-ARTICLE SPOOL FILES, WHICH INNXMIT DOES NOT
# UNDERSTAND
#
# pNNNN - connect to specified port on destination
#
# qNNNN - specify that dspoolout not run dnewslink on the
# most recent N queue files, which effectively
# introduces a queueing delay of N x 5 or N x 10
# minutes depending on how often you run dspoolout
# from cron. This can be used to delay normal articles
# when you have a separate feed dealing with control
# messages and want to get the cancels out ahead
# of the normals.
#
# dNNNN - specify the startup delay for dnewslink, in seconds.
# This is useful when you are connecting to several
# extremely fast and extremely well connected sites.
# By specifying different startup delays for the fast
# sites, you reduce efficiency losses due to article
# collisions and you can favor one site over another.
#
# It should be noted that feeds generally synchronize
# pretty quickly, and anything under 4 seconds will not
# yield any useful results.
#
# Tnnnnn - specify size of TCP transmit buffer for socket.
# minimum suggested size: 4096
#
# nominal suggested size: 16384 to 65536 depending
# on how your kernel is configured.
#
# Rnnnnn - specify size of TCP receive buffer for socket.
# minimum suggested size: 4096
# suggeseted size: 8192
#
# n4 - run up to 4 dnewslink's in parallel (default is 2).
# You can specify any number up to 32, but we suggest
# that you never specify more then 3 to any external
# outbound feed, and no more then 4 to any internal
# newsreader machine if it is running INN.
#
# You should never have to specify more then 2 (the
# default) to any outbound feed that is running diablo
#
# nostream - (for dnewslink) - do not try to stream, use ihave
# instead.
#
# If not specified, dnewslink will attempt to
# negotiate streaming, and fall back to ihave
# if the remote does not support it.
#
# realtime - specify that this is a realtime feed. dspoolout
# will startup and maintain a dnewslink that sits
# on diablo's run-time outgoing feed file. This
# operates in parallel with standard queue file
# mechanisms.
#
# NOTE: having a queue-file delay (qNNNN) precludes
# making the feed realtime.
#
# nobatch - tell dspoolout NOT to run any batch dnewslink's
# for this feed. Nominally used for realtime-only
# feeds where the loss of an article here and there
# does not hurt anything. One also normally reduces
# the number of queue files to 1 when using this
# option. (do not use this option on critical feeds!,
# always make sure there is at least one guarenteed way
# out for an article).
#
# headfeed - dspoolout passes -H option to dnewslink to dump a
# header-only feed, used by caching diablo newsreader
# side. Server must support 'mode headfeed'.
#
# nocheck - disable the use of the NNTP "check" command when
# a streaming feed is negotiated. Instead, push
# articles out solely with "takethis". Useful for
# headfeed's.
#
# NNTPSPOOL.CTL
#
# Format:
# spoolfile machine maxfileq options
idiom gidiom.com 50
sgigate news.fsgi.com 250
aimnet2 newsfeed9.aimnet.com 250
nntp2a oldnntp.best.com 500 n4 q1
nntp2c nntp1x.ba.best.com 500 n4 realtime
hp xsdd.hp.com 250 d15
# If your news machine has multiple interfaces, you can bind to a particular
# one with bind=
#
xal fubar.xalxxx.com 50 bind=news1-eth0.best.com n2 nostream
# and so on
#
|