1NEWSX(8)                    System Manager's Manual                   NEWSX(8)
2
3
4

NAME

6       newsx - news server exchange; post and fetch news articles
7
8

SYNOPSIS

10       newsx [ options ] [ spoolname [ [ hostname ] port ] ]
11
12

DESCRIPTION

14       newsx  is a client connecting to an NNTP server, posting outgoing arti‐
15       cles batched by the news system, while also fetching new incoming arti‐
16       cles from the same newsserver.
17
18       It  provides  the  NNTP capabilities required for serving a small local
19       news spool such as those that may be found on installations  with  NNTP
20       access through limited ISP accounts only, as well as being suitable for
21       exchanging news with supplemental news  sources  for  full  scale  news
22       servers.
23
24

OPERATION

26       The program would normally be run by user news.
27
28       When started, newsx will go through the spoolname outgoing spool queue,
29       and attempt to post all articles therein to the NNTP server hostname.
30
31       If a username and password for use with the simple authorization proto‐
32       col  have  been supplied, they will be sent to the server first. If the
33       -r option is specified, a MODE READER command will be sent.
34
35       When the outgoing transfer is finished, articles will be  removed  from
36       the  outgoing  spool queue if successful transfer has been acknowledged
37       by the NNTP host, if the article was specified by the host as a  dupli‐
38       cate (already posted), or if a spooled article can no longer be found.
39
40       The  fetch  phase  is  then  initiated.   Articles  available  from the
41       newsserver will be fetched and placed in the incoming spool,  ready  to
42       be injected into the news system by newsrun (C News) or rnews -U (INN).
43
44       The  groups  are  visited  in the sequence that they appear in the host
45       incoming state file, see in.hosts(5).  This may  be  used  actively  to
46       prioritize  between  newsgroups.   A tag mechanism controlled by the -e
47       option is available to limit the number of groups that will be fetched.
48
49       Group names not present in the active file will not be fetched.   Every
50       group name is checked against the spoolname entries in the sys (C News)
51       or newsfeeds (INN) file, as well  as  any  --groups  option,  and  only
52       groups  allowed  there will actually be fetched.  For C News, the group
53       name is also checked against the ME entry, whereas in INN the ME  entry
54       is just prepended to the spoolname entry.
55
56       In  this way, the sys/newsfeed file is used to control which newsgroups
57       are actually received from the remote site, in the same manner that the
58       local server determines which outgoing article will go where.
59
60       If  an  -e  option hasn't been specified, the local active file is then
61       traversed to see if there are groups not mentioned in the current  host
62       newsrc  file.   Again, only groups allowed by sys or newsfeeds is actu‐
63       ally fetched. Since these groups don't have a starting point specified,
64       all available articles will be fetched.
65
66       To  avoid  transferring  cross-posted articles more than once, articles
67       with messags IDs already fetched  in  the  same  session  will  not  be
68       fetched again.
69
70       To  make multiple news sources to be used in an efficient manner, arti‐
71       cles present in the history database will be skipped.
72
73       The pull phase can be omitted entirely by using the -g option.
74
75       Statistics on the connection will be logged to syslog (or  stderr  with
76       -d).  The posted article count is the total number of articles actually
77       posted.  The duplicate count is how many message IDs from  posted  mes‐
78       sages that were found to already exist on the remote system.  The miss‐
79       ing count is those posted  articles  that  could  no  longer  be  found
80       locally,  usually  because they were canceled locally, or perhaps since
81       they were expired already.
82
83       The connection time and the total number of characters transferred  via
84       the  NNTP  layer is logged, in addition to the average speed of article
85       transfer.  The speed given is the net rate, the calculation being based
86       on  the  actual number of characters belonging to news article head and
87       body parts.
88
89       A log file may be specified with the -l option, and a folder of  posted
90       messages maintained with the -f option.
91
92

ARGUMENTS

94       options
95              As detailed below.
96
97       spoolname
98              The  name  of  the  outgoing spool queue.  If not specified, the
99              value of the NNTPSERVER environment variable will be used.
100
101       hostname
102              The hostname of the remote NNTP server to  connect  to.  If  not
103              specified, the name of the spool will be used.
104
105       port   The port used for connecting to hostname.  Will usually not need
106              to be specified, and port "nntp" will be assumed.  The port name
107              "telnet" will receive special treatment.
108
109

OPTIONS FOR LOGGING

111       -f folder, --posted folder
112              Posted  articles  will  be  appended to the standard mail folder
113              indicated.  Note that the article will be added  to  the  folder
114              the  first  time posting of an article is attempted.  The actual
115              status of the posting will appear in the log file.
116
117       -l logfile, --log logfile
118              Log information about successfully posted articles to  the  file
119              indicated.
120
121       --stat statfile
122              A  summary  of article exchange statistics will be logged to the
123              file indicated.
124
125       --scanlogs
126              Obey locks set by the INN scanlogs utility.  This  is  currently
127              only  meaningfull  for  use with a modified scanlogs that under‐
128              stands newsx logs.
129
130

OPTIONS FOR NEWS ACCESS

132       -a authfile, --auth authfile
133              If specified, the username and  password  combination  found  in
134              authfile will be sent to the server as part of the simple autho‐
135              rization protocol when the connection is first  made.  The  file
136              should  consist  of  a  line with two blank-separated words, the
137              first being the username, the second  the  password.  Do  ensure
138              that  this  file  only has read access only for those users that
139              need to know.
140
141       --authgeneric
142              Authentication with  the  server  is  performed  using  AUTHINFO
143              GENERIC.   This  works  by  spawning a child process via /bin/sh
144              string, where string is set in  the  environment  variable  NNT‐
145              PAUTH.   This  process  is expected to handle the authentication
146              portion of the connection.
147
148       -r, --reader
149              A MODE READER command is sent to the remote server. This is used
150              when  connecting  to  remote INN hosts that needs it, and is the
151              default state when using --ihave. With  ihave,  the  command  is
152              issued  between the ihave and fetch phase, otherwise the command
153              is issued initially.
154
155       --no-reader
156              No MODE READER command is sent to the remote server. This is the
157              default state when not using --ihave.
158
159       --readbeforeauth
160              Send  the  MODE READER command before attempting to authenticate
161              via an AUTHINFO command. Otherwise, it is sent after the authen‐
162              tication.   This option will obviously have no effect unless you
163              also specify both --reader and one of  --authgeneric  or  --auth
164              authfile.
165
166       -w chatfile, --chat chatfile
167              Use chatfile to control any special connect sequence that may be
168              required before the NNTP protocol is connected. Only implemented
169              for the "telnet" protocol.
170
171       -x command, --exec command
172              If  specified,  the command will be executed after the host port
173              has been opened. This option is used in rare cases when  special
174              tricks has to be employed to get an NNTP connection activated.
175
176       -y program, --connect program
177              If  specified,  connect  via  a  bidirectional  pipe  to program
178              instead of to a socket. The hostname and port arguments will  be
179              ignored.
180
181

OPTIONS FOR POSTING

183       -p, --no-post
184              Do not attempt to do any posting.
185
186       --ihave
187              Use  NNTP  IHAVE mechanism for submitting news messages, instead
188              of the default POST. If this is for forwarding news in  general,
189              and  not  necessarily news generated locally, the setting of the
190              --fail and --bounce option should be carefully reviewed.
191
192       -m, --no-msgid
193              Remove any message-ID header field from the posted message. This
194              should  cause  the receiving end to generate a fresh message-ID.
195              It should never been used together with --ihave.
196
197       -k, ----keep-path
198              Keep the Path when posting. In posting  mode,  the  Path  is  by
199              default  stripped  together  with the NNTP-Posting-Host and Xref
200              header items, so that the path of the  news  article  as  posted
201              will  appear  to start at the actual posting host. With --ihave,
202              the path is always included.
203
204       --continue
205              Ignore (but report) errors about non-existing  outgoing  spools,
206              and continue with news fetching instead.
207
208       --max-path len
209
210       All outgoing articles are checked to see if the length of
211              their  paths  are  not  too  long.   This is an extra precaution
212              against inadvertently submitting foreign articles  for  posting.
213              This  option  sets the maximum path length allowed.  The default
214              value is 1, consistent with a simple, local, newsspool.  To dis‐
215              able  this  feature,  set  it to an impossibly large value, like
216              999.
217
218

OPTIONS FOR FETCHING

220       -g, --no-fetch
221              Do not attempt to fetch any news articles.
222
223       -e end_tag, --end end_tag
224              Specify a tag in the incoming host state file, see  in.hosts(5).
225              News  fetching  will  end when a corresponding tag line has been
226              reached. The tag line consists of a colon followed  by  the  tag
227              itself.   This is a useful tool for dividing the newsgroups into
228              several categories. Only a few newsgroups may be fetched  during
229              prime  time,  whereas  the  full  list can be fetched once every
230              night, for instance.
231
232       -W winsize, --window winsize
233              Specify the window size with respect  to  how  many  outstanding
234              NNTP  requests will be allowed at any one time. The default set‐
235              ting is 10.  A value of 0 will disable windowing  (aka.  stream‐
236              ing) completely, making debugging easier.  Increasing the window
237              can significantly  improve  the  article  transfer  speed.   The
238              effect  is  particulary pronounced over slow links and when many
239              of the articles are already present in the local spool, where an
240              improvement in speed of over 10 times has been observed compared
241              to running with windowing disabled.  All this at the penalty  of
242              an increased host newsserver load, obviously.
243
244       -b minspool, --size minspool
245              Specify  the minimum incoming spool size. After every new group,
246              if the spool file has reached the byte  size  specified,  a  new
247              spool  batch  will  be  made. Setting this value to 1 will cause
248              every newsgroup to be placed in a separate spool.
249
250       --rnews
251              Pipe incoming messages directly to rnews instead of placing them
252              into the in-coming spool.
253
254       --pipe-to program
255              Pipe  incoming  messages to program instead of placing them into
256              the in-coming spool.  A separate program and pipe  is  initiated
257              for each incoming message.
258
259       --rnews-to program
260              Like  --pipe-to,  but  the  pipe is continuous for each session,
261              with article seperation is in rnews style.
262
263       -z, --sync
264              Omit actual pulling of news articles. Instead, simply update the
265              host incoming state file to synchronize with the currently high‐
266              est available article numbers from the server in question.  This
267              option  can  be useful when a fresh local spool is initiated. No
268              article posting will be attempted.  See also in.hosts(5).
269
270       -Z, --syncnew
271              Omit actual pulling of news articles in previously unseen groups
272              only.   The  net  effect  is  that newly added groups will start
273              fetching from now on, instead of from the first  article  avail‐
274              able at the host server.
275
276       --reset
277              Ignore the latest article information in the host incoming state
278              file and  attempt  fetching  all  articles  available  from  the
279              server,  subject to the normal history lookup constraints.  This
280              option is useful if the remote spool has been reconfigured.  See
281              also in.hosts(5).
282
283       --filter filterprog
284              Enable  message  filtering via the program filterprog.  Uses the
285              highwind interface model, where each article  is  given  to  the
286              filter  in  NNTP-fashion,  and the filter responds with a 335 to
287              accept, and a 435 to reject a message.
288
289       --mfilter filterprog
290              Enable filtering by message ID. The filterprog will  be  invoked
291              once  for  each unseen message, with the message ID as a command
292              line argument.  A non-zero return status will prevent  the  mes‐
293              sage  from  being  transferred.   This function is obsolete, and
294              will probably be removed in later versions.
295
296       -X num, --maxnew num
297              Fetch at most num articles from each new and  previously  unseen
298              newsgroup.
299
300       --maxart num
301              Fetch  at  most num articles from each newsgroup. Note that this
302              might cause articles to be silently lost.
303
304       --no-path
305              Unless the exclusion pattern is set to newsx, all incoming arti‐
306              cles  are  checked  to  see if their path is consistent with the
307              exclusions given in /etc/news/newsfeeds.  This option omits this
308              check.
309
310       --forget-inactive
311              Remove  information in the incoming hosts state file about news‐
312              groups that are removed from the /var/lib/news/active file.  See
313              also in.hosts(5).
314
315       --minfree N
316              Don't  fetch  news if there are less than N kbytes free space in
317              the news spool.
318
319       --group list
320              Specify pattern for groups to be  fetched  that  will  apply  in
321              addition  to  the  ones  in  /etc/news/newsfeeds.  The syntax is
322              basically the same as for INN newsfeeds(5).  It  is  recommended
323              to  put  list in single quotes, since shells may otherwise treat
324              the ! character in strange ways.  For a list that specifies only
325              negations, an initial '*' clause will be assumed.
326
327       This  options is particularily useful to specify unsymmetric behaviour,
328       i.e.
329              groups where there will be outgoing  traffic,  but  no  incoming
330              articles.  For instance, to explicitly avoid fetching of control
331              groups, use:
332                     --groups '!control.*'
333
334       It can also be useful to specify that only a subset of groups should be
335       fetched for the occasion, e.g:
336              --groups 'comp.*,!*.advocacy'
337
338       It is recommended to put the argument for --groups in single quotes.
339
340

GENERAL OPTIONS

342       -c, --cnews
343              Set to C News mode as opposed to INN. Controls details regarding
344              handling of spool and lock files.
345
346       -i, --inn
347              Set to INN mode as opposed to C News. Controls details regarding
348              handling of spool and lock files.
349
350       --newline
351              Uses  single newline character as line terminator instead of the
352              carriage return, line feed sequence.
353
354       -v, --version
355              Display program version. Include this  when  reporting  bugs  to
356              http://www.kvaleberg.com/bug/
357
358       --help Give a very brief usage summary.
359
360       --no-ps
361              Do not update the process status display.
362
363

OPTIONS FOR NEWSGROUPS

365       Note:  Unless otherwise specified, these options are in addition to the
366       usual actions and do not imply --no-post or --no-fetch.  Specify  those
367       switches if desired.
368
369       --list listname
370              Obtain  a  list  of  newsgroups from the newsserver to listname.
371              The list consists of one  line  per  newsgroup,  containing  the
372              newsgroup  name,  a blank, and a letter showing the group status
373              (usually 'y' for an active group, 'm' for a moderated group).
374
375       If the first character is a '|',
376              listname is assumed to be a program path which will receive  the
377              list as standard input (you will need to put the entire argument
378              in quotes to escape the usual shell interpretation of '|').   If
379              it is a single '-', the list will appear on the standard output.
380              Otherwise it will be assumed to be a filename.
381
382       --newlist listname
383              Obtain a list of newsgroups not currently present on  the  local
384              server  from  the newsserver to listname.  The list is also sub‐
385              ject to the limitations of the sys or newsfeeds file.  The oper‐
386              ation is otherwise as for the --list option.
387
388       --desc descname
389              Obtain  a list of newsgroups descriptions from the newsserver to
390              descname.  Only descriptions for locally active newsgroups rele‐
391              vant to the newsfeed in question will be fetched.
392
393       The  list  consists of one line per newsgroup, containing the newsgroup
394       name,
395              a tab, and a short textual description.  A pipe may be specified
396              in descname kist as for the --list option.
397
398       --alldesc descname
399              Obtain  a list of all newsgroups descriptions available from the
400              newsserver to descname.  The operation is otherwise as  for  the
401              --desc option.
402
403

OPTIONS FOR ERROR HANDLING

405       -t timeout, --timeout timeout
406              Specify  timeout for TCP/IP and lockfile operations, in seconds.
407              The default value is 600.
408
409       --fail time
410              Specify the maximum age of an article. Whenever  an  attempt  of
411              posting  an  article  fails,  and  the  specified  time limit is
412              exceeded, the article will be declared as failed, and  a  bounce
413              message  will be generated.  The default unit is hours; the suf‐
414              fixes s for seconds, m for minutes, h for hours, d for days  and
415              w  for  weeks would change this. They can also be combined, e.g.
416              "4h30m".  In absence of this option, no fail by age will be per‐
417              formed.  Setting the time to zero will bounce messages after the
418              first failed attempt.
419
420       --bounce addr
421              Specify the destination address for messages bounced due to  the
422              fail  time  being  exceeded.   If  addr is specified as none, no
423              bounce will be generated.  The  default  value,  poster,  causes
424              messages to be returned to the sender. This setting should defi‐
425              nitely only be used in situations where newsx  is  utilized  for
426              posting locally generated news.
427
428       --attach how
429              Specifies  the  way  the original message is handled for bounced
430              messages:
431
432         mime Send the original as a Mime attachement. This is the default be‐
433              haviour.
434
435         yes  Append the original to the mail message itself.
436
437         no   Do not attach the original message.
438
439

OPTIONS MOSTLY FOR NEWS GATEWAYS

441       The following options are not for ordinary use: They would only be used
442       for special configurations where newsx is used as a sort of gateway  to
443       inject news messages from other sources.
444
445       --inews
446              Pipe  incoming  messages directly to inews, inject them into the
447              local spool via the same interface as is used for local new mes‐
448              sages.
449
450       --inews-options options
451              Specify  command  line options for --inews. The leading '-' must
452              be included. The default inews options are "-hOS".
453
454       --add-header header
455              Add a specific header to incoming messages. The header  will  be
456              added exactly as specified, adding a trailing newline.
457
458       The exception is for the special 4 letter string "Path".
459              This  will  be  replaced by a header line that says "Path: HOST‐
460              NAME!not-for-mail" if the incoming message  contains  no  Path:.
461              This  can  be  quite  essential  for  news  gateways  to prevent
462              injected messages to be retured back to the source.
463
464

OPTIONS FOR PROFILE FILES

466       --profile file
467              Read a newsx profile from file .  This file can contain  command
468              line   options   to   specify   default  newsx  behaviour.   See
469              newsx.conf(5) for an overview of the format.
470
471       Any option may be used in profile files. Some options are  really  only
472       meaningfull in profile files:
473
474       --spoolname spoolname
475              Specify a default spoolname.
476
477       --hostname hostname
478              Specify a default hostname.
479
480       --port port
481              Specify a default port for connecting to hostname.
482
483

OPTIONS FOR CONFIGURATION

485       Configuration  to  the local news system peculiarities is traditionally
486       done at build-time, but it is possible to specify at runtime in various
487       ways.
488
489       --config
490              Read   and   obey   the  standard  news  configuration  file  in
491              /usr/lib/news/lib/innshellvars.  This allows newsx to  adapt  to
492              changes in the local newsserver configuration dynamically.
493
494       --config-is configfile
495              Like  --config, except that the configuration filename is speci‐
496              fied. A list of  files  may  also  be  specified,  seperated  by
497              colons.  In  this  case, the first file on this list that exists
498              will be used.
499
500       --home newshome
501              Use newshome as the news home directory instead of  the  default
502              /usr/lib/news.  A full path must be specified.
503
504       -s spooldir, --spool spooldir
505              Use  spooldir as the news article spool directory instead of the
506              default /var/spool/news/articles.  A full path  must  be  speci‐
507              fied.
508
509       --togo togofile
510              Specify  the  name of the C News togo file for outgoing news. No
511              effect in INN mode.  Required only if different from the default
512              value  /var/spool/news/outgoing/spoolname/togo.   A  leading '/'
513              specifices a full path, a leading '.' is relative from the  cur‐
514              rent    directory,   otherwise   the   name   is   relative   to
515              /var/spool/news/outgoing/spoolname.
516
517       --batch batchdir
518              Use batchdir  as  the  outgoing  news  article  spool  directory
519              instead  of the default /usr/lib/news/bin.  A leading '/' speci‐
520              fices a full path, a leading '.' is relative  from  the  current
521              directory,     otherwise     the    name    is    relative    to
522              /var/spool/news/articles.
523
524       -h historydb, --history historydb
525              Specify the name of the history database file, used for checking
526              if  news  articles  are  already present in the spool.  Required
527              only  when   using   a   name   different   from   the   default
528              /var/lib/news/history.   An  empty  argument "" will prevent any
529              referrence to the news history database.
530
531       --active activefile
532              Specify the name of the active newsgroup file for incoming news.
533              Required    only   if   different   from   the   default   value
534              /var/lib/news/active.  A leading '/' specifices a full  path,  a
535              leading  '.' specifies a path relative to the current directory,
536              otherwise the name is relative to /usr/lib/news.
537
538       --newsfeeds newsfeedsfile
539              Specify the name of the newsfeed specification file.  This  will
540              override  the  default  both in C News (sys) and INN (newsfeeds)
541              modes.  File name conventions as for --active.
542
543       --incoming incomingdir
544              Use incomingdir as the incoming  news  article  spool  directory
545              instead of the default /var/spool/news/incoming.  Fine name con‐
546              ventions as for --active, except that the default  directory  is
547              /var/spool/news/articles.
548
549       --inhosts inhostsdir
550              Use inhostsdir as the news host active file directory instead of
551              the default /var/spool/news/inhosts.  Name  conventions  as  for
552              --incoming.  See also in.hosts(5).
553
554       --hostconfig hostconfigdir
555              Use  hostconfigdir  as  the directory for the host specific pro‐
556              file.  instead of the default /var/spool/news/articles/in.hosts.
557              Name conventions as for --incoming.  See also newin.hosts(5) and
558              newsx.conf(5).
559
560

OPTIONS FOR TESTING AND DEBUGGING

562       --debug level
563              Set debug level. Any level different from zero diverts reporting
564              to  stderr  instead of syslog, and turns on extra debugging out‐
565              put.  Level 2 will output a '.' for every new article.  Level  3
566              will log all NNTP commands.  Level 4 will produce the same state
567              information that is available via the  process  status  display.
568              Going  to  level  5  will  produce additional debug information,
569              level 6 will include history database debug, while level 7  also
570              will  show all communications over the NNTP socket, article con‐
571              tent included.
572
573       -d, --verbose
574              Enable debugging, and sets the debug level according to the num‐
575              ber of times it is specified.
576
577       -n, --dry-run
578              No-action  flag,  will  "fake" an NNTP connection, and leave the
579              outgoing batch untouched.  Probably useful only with --debug for
580              debugging and dry-testing.
581
582       --verify
583              Used together with --configor --config-is, causes the configura‐
584              tion to be verified, but not adapted to.
585
586       -o, --keepold
587              Keep the previous outgoing spool in an ".old" file.  This  might
588              seem  like  a useful option for ordinary use, but the problem is
589              that a non-empty file  might  cause  a  news  watch  program  to
590              believe there is a stale outgoing spool.
591
592       -u, --no-force
593              After  the  timeout  of lockfile operations, just give up and do
594              not attempt  to  unlock  the  lockfiles  and  remove  the  stale
595              process.
596
597       --no-queue
598              Do  not  queue  up  for access to a news host. If a lock already
599              exists for the specified host, just give up and don't  queue  up
600              for it.
601
602       --locks locksdir
603              Use  locksdir  as the lock file directory instead of the default
604              /var/run/news.  Fine name conventions as  for  --active,  except
605              that the default directory is /usr/lib/news.  If the string none
606              is supplied, no locking will occur.  All this should  of  course
607              be used only if you really, really know what you are doing.
608
609       -q "msgid", --enquire "msgid"
610              Enquires whether the msgid is present in the local history data‐
611              base. The msgid should include the angle brackets. Implies --no-
612              post and --no-fetch.
613
614       --no-hostlock
615              Do not implement the newsx host access lock. Should only be used
616              if you really know what you are doing.
617
618       --no-next
619              Do not use the NNTP NEXT  command.  This  causes  newsx  not  to
620              attempt  to  use  NEXT  for  filling  out  gaps  in  the article
621              sequence.
622
623       --missing "num"
624              Tunes the number of missing articles in a row before a NEXT com‐
625              mand  is  issued, instead of a sequential STAT.  A value of zero
626              will cause NEXT to be used extensively. The default value  is  0
627              if no window, 2 if a window is specified.
628
629       --keep-fake
630              Some remote news servers generate faked news articles. Normally,
631              you would want newsx to skip them, but with this option you  can
632              actually fetch them.
633
634

SPECIAL CONNECT SEQUENCE

636       The  -w  option  specifies that a special connect sequence is required,
637       and that a script for this sequence can be found in the chatfile.  This
638       file  consists  of  lines that contains pattern receive and send pairs,
639       separated by blanks. The patterns  may  be  enclosed  in  quotes.   The
640       script is currently only available for the "telnet" protocol.
641
642       A typical invocation line would be:
643                   newsx -w chat.acme acme login.acme.net telnet
644
645       The file chat.acme could look like this:
646                   # login for acme.net NNTP
647                   login: myusername
648                   Password: mypassword
649                   $ "exec telnet news.acme.net nntp"
650                   ECHO
651
652       The script will have to be adapted for local conditions, of course.
653
654       The  special  tag  ECHO  specifies that line echo should be suppressed,
655       required since the host telnet operates in line mode.
656
657       Since this file usually contains passwords and other sensitive informa‐
658       tion, ensure that read access to it is limited.
659
660

PROCESS STATUS

662       The  ps  process status will also show the current newsx status. During
663       the actual news transfer phase, it will show which  group  and  article
664       number that is being fetched. A continuous status can be obtained by;
665                     newsq -c
666
667       This feature can be disabled via the --no-ps option.
668
669

CONFIGURATION FORMAT

671       For INN, the following configuration items will be used:
672
673       $INND  Signals an INN configuration.
674
675       $NEWSBIN
676              Directory for INN binaries.
677
678       $NEWSHOME
679              News home directory.
680
681       $PATHETC
682              Directory for news configuration files. Defaults to $NEWSHOME if
683              not available.
684
685       $SPOOL If $SPOOL contains the string  "/articles",  the  incoming  host
686              directory   $INHOSTS   will  be  formed  by  replacing  it  with
687              "/inhosts". Otherwise, "$SPOOL/in.hosts" will be used.
688
689       $BATCH Outgoing spool.
690
691       $INCOMING
692              Incoming spool.
693
694       $ACTIVE
695              Active file.
696
697       $HISTORY
698              History database.
699
700       $LOCKS DIrectory for lockfiles.
701
702       $NEWSFEEDS
703              Newsfeeds file.
704
705       $EXTENDEDDBZ
706              True is history database in extended format.  Only relevant  for
707              early INN 2.x where there is no libinn, otherwise ignored.
708
709       For C News:
710
711       $NEWSBIN
712
713       $NEWSCTL
714              Equivalent to INN $NEWSHOME.  $ACTIVE will be "$NEWSCTL/active".
715              $HISTORY  will  be  "$NEWSCTL/history".   $NEWSFEEDS   will   be
716              "$NEWSCTL/sys".  $LOCKS and $PATHETC will be "$NEWSCTL".
717
718       $NEWSARTS
719              Equivalent to INN $SPOOL.  $BATCH will be "$NEWSARTS/out.going".
720              $INCOMING  will  be  "$NEWSARTS/in.coming".   $INHOSTS  will  be
721              "$NEWSARTS/in.hosts".
722
723

LOG FILE FORMAT

725       The -l log file of posted articles will contain one line for each arti‐
726       cle.  To be compatible with the INN format, each field is separated  by
727       a tabstop:
728
729       Month  Standard 3 letter abbreviation.
730
731       Date   2 digits
732
733       HH:MM:SS
734              Local time.
735
736       Year   4 digits.
737
738       Spool  Name of outgoing spool.
739
740       <Msgid>
741              Within angle brackets.
742
743       Filename
744              As it appears in the spool file.
745
746       Sender The  value  of  the  Sender-field, or From-field if no Sender is
747              available.
748
749       Status "OK"  for  successfully  posted  items,  "Duplicate"  for  items
750              already posted.
751
752       Lines  Number of lines in the posting.
753
754       Status Message status. "OK" if everything went well, otherwise an error
755              message appears.
756
757

INCOMING SPOOL FORMAT

759       The incoming spool consists of files with the file name ending by ".t".
760       Each  file  can  contain many articles. Each article is prefixed by the
761       following header:
762                   #! rnews N
763
764       The number N is the number of bytes of the article proper, not counting
765       the header line. The article follows after the header line.  It appears
766       exactly as received from the news server except  that  CR/LF  sequences
767       are  replaced  by proper newlines, and the terminating full stop is not
768       included.
769
770

MESSAGE HEADER HANDLING

772       Incoming message headers will pass through without  modification,  with
773       the  exception that the text "newsx" will be added if not there already
774       when the exclusion pattern for the newshost is set to "newsx".
775
776       Most outgoing message header items will also pass through, altough some
777       header items are handled specially:
778
779       From:  Will  be  used  for  indentifying  the sender if everything else
780              fails.
781
782       Message-ID:
783              Will be used for logging purposes. The  --no-msgid  will  remove
784              this item for messages being posted.
785
786       NNTP-Posting-Date:
787
788       NNTP-Posting-Host:
789              Will always be removed for messages being posted.
790
791       Path:  Will  be removed for messages being posted, unless the ----keep-
792              path option is given.
793
794       Reply-to:
795              Will be used for indentifying the sender.
796
797       Sender:
798              Will be used for indentifying the sender.
799
800       Xref:  Will always be removed from outgoing messages.
801
802       X-Server-Date:
803
804       X-Trace:
805
806       X-Complaints-To:
807              Will always be removed for messages being posted.
808
809

DIAGNOSTICS

811       newsx returns error codes as follows:
812              0 - Successful completion
813              1 - General system error
814              2 - Incorrect arguments supplied.
815              3 - Error connecting to remote host
816              4 - NNTP Protocol error
817              5 - Errors accessing outgoing spool file.
818              6 - Errors accessing host newsrc file.
819              7 - Errors accessing incoming spool file.
820              8 - Errors accessing local active and sys files.
821              9 - Socket access error (e.g. connection timeout)
822              10 - Errors accessing authinfo file.
823              11 - Connect script failure.
824              12 - Option -q did not find the message ID.
825              13 - Wait for lock timed out.
826
827

NOTES

829       Distribution fields are ignored by newsx, and the handling of them left
830       to the news server.
831
832

BUGS

834       Report any bugs to http://www.kvaleberg.com/bug/
835
836

FILES

838       See also in.hosts(5).
839
840       /etc/news/newsx.conf
841       Newsx  standard  profile.  If it exists, this profile file will be read
842       before the command line arguments are parsed.  See newsx.conf(5).
843
844       /usr/lib/news/lib/innshellvars
845       The standard news configuration file.
846
847       For C News:
848
849       /var/spool/news/outgoing/spoolname/togo
850              Spool file
851
852       /var/spool/news/outgoing/spoolname/togo.old
853              Previous spool file
854
855       /var/spool/news/outgoing/spoolname/LOCKb
856              Lock file
857
858       /var/spool/news/incoming/.tmp.$$
859              Incoming spool, temporary file.  $$ is the process ID.
860
861       /var/spool/news/incoming/T.$$.S.t
862              Incoming spool, when finished and ready for newsrun.  T  is  the
863              current  Unix  time,  $$ is the process ID, and, S is a sequence
864              number.
865
866       /var/lib/news/active
867              Local active file, contains a list  over  all  currently  active
868              newsgroups  in the local spool. This is used as a basis for con‐
869              structing  a  list  over  which  newsgroups  will  actually   be
870              requested.
871
872       /usr/lib/news/sys
873              Newsserver configuration file.  This is used as a filter against
874              the local active list,  deciding  which  newsgroups  which  will
875              actually be pulled.  The basic format of each specification is:
876                   site/exclusions:grouplist/distlist:flags:cmd
877
878              If  the  exclusions field is set to newsx, newsx will modify the
879              path of incoming news to include the "newsx" pattern.
880
881              The site field identifies the remote news source.
882
883              The grouplist is a comma separated list of group pattern  names.
884              A  !-prefix  signifies exclusions, and the name all matches any‐
885              thing.
886
887       /var/lib/news/history
888
889       /var/lib/news/history.pag
890
891       /var/lib/news/history.dir
892              Local news spool database.
893
894       For INN:
895
896       /var/spool/news/outgoing/spoolname
897              Spool file
898
899       /var/spool/news/outgoing/spoolname.old
900              Previous spool file
901
902       /var/run/news/LOCK.spoolname
903              Lock file
904
905       /var/lib/news/active
906              Local active file, contains a list  over  all  currently  active
907              newsgroups  in the local spool. This is used as a basis for con‐
908              structing  a  list  over  which  newsgroups  will  actually   be
909              requested.
910
911       /etc/news/newsfeeds
912              Newsserver configuration file.  This is used as a filter against
913              the local active list,  deciding  which  newsgroups  which  will
914              actually be pulled.  The basic format of each specification is:
915                   site/exclusions:grouplist/distlist:flags:param
916
917              If  the  exclusions field is set to newsx, newsx will modify the
918              path of incoming news to include the "newsx" pattern.
919
920              The site field identifies the remote news source.
921
922              The grouplist is a comma separated list of group pattern  names.
923              A  !-prefix  signifies  groups  not  exchanged,  and  the name *
924              matches anything.
925
926       /var/lib/news/history
927
928       /var/lib/news/history.pag
929
930       /var/lib/news/history.dir
931              Local news spool article database.
932
933

AUTHOR

935       Egil Kvaleberg <egil@kvaleberg.no>
936
937

SEE ALSO

939       newsq(1), in.hosts(5)
940
941       C News: news(5), newsdb(5), newssys(5), rnews(8)
942
943       INN:  rnews(1),  inews(1),  wildmat(3),  active(5),  history(5),  news‐
944       feeds(5), ctlinnd(8)
945
946       RFC-977 - Network News Transfer Protocol (NNTP)
947       RFC-1036 - Usenet Article Format
948
949       http://www.kvaleberg.com/ISP-Hookup-HOWTO.html
950       http://www.kvaleberg.com/newsx.html
951
952
953
954
955                                                                      NEWSX(8)
Impressum