1INNXMIT(8) InterNetNews Documentation INNXMIT(8)
2
3
4
6 innxmit - Send Usenet articles to a remote NNTP server
7
9 innxmit [-acdHlprsv] [-P portnum] [-T seconds] [-t seconds] host file
10
12 innxmit connects to the NNTP server at the specified host (validating
13 itself via passwd.nntp if possible) and sends it the articles specified
14 in the batch file named file. It is normally invoked by a script run
15 out of cron(8) that uses shlock to lock the host name, followed by a
16 ctlinnd command to flush the batch file. If file is not an absolute
17 path name, it is taken relative to the directory specified by the
18 pathoutgoing parameter in inn.conf. It is normally written by
19 specifying the "Wnm" flags in the newsfeeds file. Each line in the
20 batch file should be in one of the following formats:
21
22 article Message-ID
23 article
24
25 The first field is either the storage API token of an article or the
26 name of a file holding an article. If it is not an absolute pathname
27 or a storage API token, it is taken to be a file name relative to
28 patharticles in inn.conf. If the second field is not specified, the
29 message-ID will be obtained by scanning the article. The two fields,
30 if present, are separated by a space. If a communication error such as
31 a write(2) failure occurs, innxmit will stop sending and rewrite the
32 batch file to contain the current article and any other unsent
33 articles.
34
36 -a If all articles were sent successfully, innxmit will remove the
37 batch file; otherwise it will rewrite it to contain the list of
38 unsent articles. If no articles were sent or rejected, the file is
39 left untouched. This can cause the batch file to grow excessively
40 large if many articles have been expired and there are
41 communication problems. To always rewrite the batch file, use the
42 -a flag.
43
44 -c In streaming mode, a check of each message-ID is still made to
45 avoid sending articles already on the server. The -c flag will, if
46 streaming mode is supported, result in sending articles without
47 checking. This results in slightly greater throughput and may be
48 appropriate when it is known that the site could not already have
49 the articles such as in the case of a "leaf" site.
50
51 -d Use the -d flag to print debugging information on standard error.
52 This will show the protocol transactions between innxmit and the
53 NNTP server on the remote host.
54
55 -H If the -H flag is given, then only headers are sent to host for all
56 articles except control messages. And the Bytes: header is also
57 included even if it does not exist in the original article. The -H
58 flag is useful for Diablo reader.
59
60 -l The -l flag is used to turn on logging of reasons the remote gives
61 for rejecting an article.
62
63 -P portnum
64 To specify a port number other than the default, use the -P flag.
65
66 -p If the -p flag is given, then no connection is made and the
67 batchfile is purged of entries that refer to files that no longer
68 exist. This implies the -a flag.
69
70 -r If the remote server sends an unexpected reply code, innxmit will
71 requeue the article and proceed. Use the -r flag if the article
72 should not be requeued.
73
74 -s innxmit will attempt to negotiate a streaming mode extension of the
75 NNTP protocol with the server at connect time. If successful, it
76 will use a slightly different protocol that enhances throughput.
77 If the server does not recognize the streaming mode negotiation,
78 innxmit will revert to normal NNTP transfer mode. Use the -s flag
79 to disable the attempt to negotiate the streaming mode extension.
80
81 -T seconds
82 To specify the total amount of time that should be allowed for
83 article transfers, use the -T flag. The default is to wait until
84 an I/O error occurs, or all the articles have been transferred. If
85 the -T flag is used, the time is checked just before each article
86 is started; it will not abort a transfer that is in progress.
87
88 -t seconds
89 innxmit normally blocks until the connection is made. To specify a
90 timeout on how long to try to make the connection, use the -t
91 flag.
92
93 -v Upon exit, innxmit reports transfer and CPU usage statistics via
94 syslog. If the -v flag is used, they will also be printed on the
95 standard output.
96
98 Written by Rich $alz <rsalz@uunet.uu.net> for InterNetNews. Converted
99 to POD by Julien Elie.
100
101 $Id: innxmit.pod 8796 2009-11-15 09:28:39Z iulius $
102
104 ctlinnd(8), inn.conf(5), innd(8), newsfeeds(5), passwd.nntp(5),
105 shlock(1).
106
107
108
109INN 2.5.2 2010-08-11 INNXMIT(8)