.TH INNXBATCH 8 .SH NAME innxbatch \- send xbatched Usenet articles to a remote NNTP server .SH SYNOPSIS .I innxbatch [ .B \-D ] [ .BI \-t " timeout" ] [ .BI \-T " timeout" ] [ .B \-v ] .I host .I file ... .SH DESCRIPTION .I Innxbatch connects to the NNTP server at the specified .I host and sends it the specified xbatch files, using the XBATCH extension to the NNTP protocol. It is normally invoked by a script run out of .IR cron (8) that uses .IR shlock (1) to lock the host name, followed by a .IR ctlinnd (8) command to flush the batchfile. .PP .I Innxbatch normally blocks until the connection is made. To specify a timeout on how long to try to make the connection, use the ``\-t'' flag. .br To specify the total amount of time that should be allowed for article transfers, use the ``\-T'' flag. .br The default is to wait until an I/O error occurs, or all the articles have been transferred. If the ``\-T'' flag is used, the time is checked just before an article is started; it will not abort a transfer that is in progress. Both values are measured in seconds. .PP Each fileis removed after it has been successfully transferred. .PP If a communication error such as a .IR write (2) failure, or an unexpected reply from the remote server occurs, .I innxbatch will stop sending and leave all remaining files untouched for later retry. .PP .PP Upon exit, .I innxbatch reports transfer and CPU usage statistics via .IR syslog (3). If the ``\-v'' flag is used, they will also be printed on the standard output. .PP Use the ``\-D'' flag to print debugging information on standard error. This will show the protocol transactions between .I innxbatch and the NNTP server on the remote host. .PP A sample .I newsfeeds(5) entry to produce appropriate xbatch files (thanks to Karsten Leipold ): .nf nase\e :*\e :Tc,Wnb\e .\" =()<.ds R$ @<_PATH_NEWSBIN>@>()= .ds R$ /usr/lib/news/bin :\*(R$/batcher \e .\" =()<.ds R$ @<_PATH_COMPRESS>@>()= .ds R$ /bin/gzip .\" =()<.ds P$ @<_PATH_BATCHDIR>@>()= .ds P$ /var/spool/news/out.going -p "(\*(R$ > \*(P$/nase.\e$\e$)" \e nase.do.main .fi A sample script to invoke .I innxbatch(8) is: .nf #!/bin/sh ## SH script to send xbatches for a site, wrapped around innxbatch ## Invocation: ## sendxbatches.sh ... if [ $# -le 3 ] then echo "usage: $0 " exit 1 fi ## =()< . @<_PATH_SHELLVARS>@>()= . /usr/lib/news/innshellvars site="$1"; host="$2"; shift; shift ctlinnd flush "$site" \e && sleep 5 \e && exec $NEWSBIN/innxbatch -v -D "$host" $* .fi .SH HISTORY Written by Stefan Petri , modelled after .I innxmit(8) and the XBATCH patch for the nntp reference implementation. .SH "SEE ALSO" innxmit(8), nntpsend(8), ctlinnd(8), innd(8), newsfeeds(5), shlock(1).