home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _1a5fcbdc50a7cbfa9d1980162d1baff3 < prev    next >
Text File  |  2000-03-23  |  28KB  |  706 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>News::NNTPClient - Perl 5 module to talk to NNTP server</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> News::NNTPClient - Perl 5 module to talk to NNTP server</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#nntpclient commands">NNTPClient Commands</A></LI>
  28.         <LI><A HREF="#nntp commands">NNTP Commands</A></LI>
  29.         <LI><A HREF="#extended nntp commands">Extended NNTP Commands</A></LI>
  30.     </UL>
  31.  
  32.     <LI><A HREF="#author">AUTHOR</A></LI>
  33.     <LI><A HREF="#copyright">COPYRIGHT</A></LI>
  34. </UL>
  35. <!-- INDEX END -->
  36.  
  37. <HR>
  38. <P>
  39. <H1><A NAME="name">NAME</A></H1>
  40. <P>News::NNTPClient - Perl 5 module to talk to NNTP (RFC977) server</P>
  41. <P>
  42. <HR>
  43. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  44. <UL>
  45. <LI>Linux</LI>
  46. <LI>Solaris</LI>
  47. <LI>Windows</LI>
  48. </UL>
  49. <HR>
  50. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  51. <PRE>
  52.     use News::NNTPClient;</PRE>
  53. <PRE>
  54.     $c = new News::NNTPClient;
  55.     $c = new News::NNTPClient($server);
  56.     $c = new News::NNTPClient($server, $port);
  57.     $c = new News::NNTPClient($server, $port, $debug);</PRE>
  58. <P>
  59. <HR>
  60. <H1><A NAME="description">DESCRIPTION</A></H1>
  61. <P>This module implements a client interface to NNTP, enabling a Perl 5
  62. application to talk to NNTP servers.  It uses the OOP (Object Oriented
  63. Programming) interface introduced with Perl 5.</P>
  64. <P>NNTPClient exports nothing.</P>
  65. <P>A new NNTPClient object must be created with the <EM>new</EM> method.  Once
  66. this has been done, all NNTP commands are accessed through this object.</P>
  67. <P>Here are a couple of short examples.  The first prints all articles in
  68. the ``test'' newsgroup:</P>
  69. <PRE>
  70.   #!/usr/local/bin/perl -w
  71. </PRE>
  72. <PRE>
  73.  
  74.   use News::NNTPClient;</PRE>
  75. <PRE>
  76.  
  77.   $c = new News::NNTPClient;</PRE>
  78. <PRE>
  79.  
  80.   ($first, $last) = ($c->group("test"));</PRE>
  81. <PRE>
  82.  
  83.   for (; $first <= $last; $first++) {
  84.       print $c->article($first);
  85.   }</PRE>
  86. <PRE>
  87.  
  88.   __END__</PRE>
  89. <P>This example prints the body of all articles in the ``test'' newsgroup
  90. newer than one hour:</P>
  91. <PRE>
  92.   #!/usr/local/bin/perl -w
  93. </PRE>
  94. <PRE>
  95.  
  96.   require News::NNTPClient;</PRE>
  97. <PRE>
  98.  
  99.   $c = new News::NNTPClient;</PRE>
  100. <PRE>
  101.  
  102.   foreach ($c->newnews("test", time - 3600)) {
  103.       print $c->body($_);
  104.   }</PRE>
  105. <PRE>
  106.  
  107.   __END__</PRE>
  108. <P>
  109. <H2><A NAME="nntpclient commands">NNTPClient Commands</A></H2>
  110. <P>These commands are used to manipulate the NNTPClient object, and
  111. aren't directly related to commands available on any NNTP server.</P>
  112. <DL>
  113. <DT><STRONG><A NAME="item_new"><EM>new</EM></A></STRONG><BR>
  114. <DD>
  115. Use this to create a new NNTP connection. It takes three arguments, a
  116. hostname, a port and a debug flag.  It calls <EM>initialize</EM>.  Use an
  117. empty argument to specify defaults.
  118. <P>If port is omitted or blank (``''), looks for environment variable
  119. NNTPPORT, service ``nntp'', or uses 119.</P>
  120. <P>If host is omitted or empty (``''), looks for environment variable
  121. NNTPSERVER or uses ``news''.</P>
  122. <P>Examples:</P>
  123. <PRE>
  124.   $c = new News::NNTPClient;
  125. or
  126.   $c = new News::NNTPClient("newsserver.some.where");
  127. or
  128.   $c = new News::NNTPClient("experimental", 9999);
  129. or
  130.   # Specify debug but use defaults.
  131.   $c = new News::NNTPClient("", "", 2);</PRE>
  132. <P>Returns a blessed reference, representing a new NNTP connection.</P>
  133. <P></P>
  134. <DT><STRONG><A NAME="item_initialize"><EM>initialize</EM></A></STRONG><BR>
  135. <DD>
  136. Calls <EM>port</EM>, <EM>host</EM>, <EM>connect</EM>, and <EM>response</EM>, in that order.
  137. If any of these fail, initialization is aborted.
  138. <P></P>
  139. <DT><STRONG><A NAME="item_connect"><EM>connect</EM></A></STRONG><BR>
  140. <DD>
  141. Connects to current host/port.
  142. Not normally needed, as the <EM>new</EM> method does this for you.
  143. Closes any existing connection.
  144. Sets the posting status.  See the <EM>postok</EM> method.
  145. <P></P>
  146. <DT><STRONG><A NAME="item_host"><EM>host</EM></A></STRONG><BR>
  147. <DD>
  148. Sets the host that will be used on the next connect.
  149. Not normally needed, as the <EM>new</EM> method does this for you.
  150. <P>Without an argument, returns current host.</P>
  151. <P>Argument can be hostname or dotted quad, for example, ``15.2.174.218''.</P>
  152. <P>Returns fully qualified host name.</P>
  153. <P></P>
  154. <DT><STRONG><A NAME="item_port"><EM>port</EM></A></STRONG><BR>
  155. <DD>
  156. Sets the port that will be used on the next connect.
  157. Not normally needed, as the <EM>new</EM> method does this for you.
  158. <P>Without an argument, returns current port.</P>
  159. <P>Argument can be port number or name.  If it is a name, it must be a
  160. valid service.</P>
  161. <P>Returns port number.</P>
  162. <P></P>
  163. <DT><STRONG><A NAME="item_debug"><EM>debug</EM></A></STRONG><BR>
  164. <DD>
  165. Sets the debug level.
  166. <P>Without an argument, returns current debug level.</P>
  167. <P>There are currently three debug levels.  Level 0, level 1, and level
  168. 2.</P>
  169. <P>At level 0 the messages described for level 1 are not produced.  Debug
  170. level 0 is a way of turning off messages produced by the default debug
  171. level 1.  Serious error messages, such as EOF (End Of File) on the
  172. file handle, are still produced.</P>
  173. <P>At level 1, any NNTP command that results in a result code of 400 or
  174. greater prints a warning message.  This is the default.</P>
  175. <P>At level 2, in addition to level 1 messages, status messages are
  176. printed to indicate actions taking place.</P>
  177. <P>Returns old debug value.</P>
  178. <P></P>
  179. <DT><STRONG><A NAME="item_ok"><EM>ok</EM></A></STRONG><BR>
  180. <DD>
  181. Returns boolean status of most recent command.  NNTP return codes less
  182. than 400 are considered OK.  Not often needed as most commands return
  183. false upon failure anyway.
  184. <P></P>
  185. <DT><STRONG><A NAME="item_okprint"><EM>okprint</EM></A></STRONG><BR>
  186. <DD>
  187. Returns boolean status of most recent command.  NNTP return codes less
  188. than 400 are considered OK.  Prints an error message for return codes
  189. of 400 or greater unless debug level is set to zero (0).
  190. <P>This method is used internally by most commands, and could be
  191. considered to be ``for internal use only''.  You should use the return
  192. status of commands directly to determine pass-fail, or if needed the
  193. <EM>ok</EM> method can be used to check status later.</P>
  194. <P></P>
  195. <DT><STRONG><A NAME="item_message"><EM>message</EM></A></STRONG><BR>
  196. <DD>
  197. Returns the NNTP response message of the most recent command.
  198. <P>Example, as returned by NNTP server version 1.5.11t:</P>
  199. <PRE>
  200.   $c->slave;
  201.   print $c->message;</PRE>
  202. <PRE>
  203.   Kinky, kinky.  I don't support such perversions.</PRE>
  204. <P></P>
  205. <DT><STRONG><A NAME="item_code"><EM>code</EM></A></STRONG><BR>
  206. <DD>
  207. Returns the NNTP response code of the most recent command.
  208. <P>Example:</P>
  209. <PRE>
  210.   $c->article(1);
  211.   print $c->code, "\n";</PRE>
  212. <PRE>
  213.   412</PRE>
  214. <P></P>
  215. <DT><STRONG><A NAME="item_postok"><EM>postok</EM></A></STRONG><BR>
  216. <DD>
  217. Returns the post-ability status that was reported upon connection or
  218. after the mode_reader command.
  219. <P></P>
  220. <DT><STRONG><A NAME="item_eol"><EM>eol</EM></A></STRONG><BR>
  221. <DD>
  222. Sets the End-Of-Line termination for text returned from the server.
  223. <P>Returns the old EOL value.</P>
  224. <P>Default is \n.</P>
  225. <P>To set EOL to nothing, pass it the empty string.</P>
  226. <P>To query current EOL without setting it, call with no arguments.</P>
  227. <P>Example:</P>
  228. <PRE>
  229.   $old_eol = $c->eol();     # Get original.
  230.   $c->eol("");              # Set EOL to nothing.
  231.   @article = $c->article(); # Fetch an article.
  232.   $c->eol($old_eol);        # Restore value.</PRE>
  233. <P></P>
  234. <DT><STRONG><A NAME="item_gmt"><EM>gmt</EM></A></STRONG><BR>
  235. <DD>
  236. Sets GMT mode.  Returns old value.  To query GMT mode without setting
  237. it, call with no arguments.
  238. <P>A true value means that GMT mode is used in the <EM>newgroups</EM> and
  239. <EM>newnews</EM> functions.  A false value means that local time is used.</P>
  240. <P></P>
  241. <DT><STRONG><A NAME="item_fourdigityear"><EM>fourdigityear</EM></A></STRONG><BR>
  242. <DD>
  243. Sets four digit year mode.  Returns old value.  To query four digit
  244. year mode without setting it, call with no arguments.
  245. <P>A true value means that four digit years are used in the <EM>newgroups</EM>
  246. and <EM>newnews</EM> functions.  A false value means that an RFC977
  247. compliant two digit year is used.</P>
  248. <P>This function is available for news servers that implemented four
  249. digit years rather than deal with non-y2k compliment two digit years.
  250. RFC977 does not allow four digit years, and instead chooses the
  251. century closest.  I quote:</P>
  252. <PRE>
  253.     The closest century is assumed as part of the year (i.e., 86
  254.     specifies 1986, 30 specifies 2030, 99 is 1999, 00 is 2000).</PRE>
  255. <P></P>
  256. <DT><STRONG><A NAME="item_version"><EM>version</EM></A></STRONG><BR>
  257. <DD>
  258. Returns version number.
  259. <P>This document represents @(#) $Revision: 0.36 $.</P>
  260. <P></P></DL>
  261. <P>
  262. <H2><A NAME="nntp commands">NNTP Commands</A></H2>
  263. <P>These commands directly correlate to NNTP server commands.  They
  264. return a false value upon failure, true upon success.  The truth value
  265. is usually some bit of useful information.  For example, the <EM>stat</EM>
  266. command returns Message-ID if it is successful.</P>
  267. <P>Some commands return multiple lines.  These lines are returned as an
  268. array in array context, and as a reference to an array in scalar
  269. context.  For example, if you do this:</P>
  270. <PRE>
  271.   @lines = $c->article(14);</PRE>
  272. <P>then @lines will contain the article, one line per array element.
  273. However, if you do this:</P>
  274. <PRE>
  275.   $lines = $c->article(14);</PRE>
  276. <P>then $lines will contain a <EM>reference</EM> to an array.  This feature is
  277. for those that don't like passing arrays from routine to routine.</P>
  278. <DL>
  279. <DT><STRONG><A NAME="item_mode_reader"><EM>mode_reader</EM></A></STRONG><BR>
  280. <DD>
  281. Some servers require this command to process NNTP client commands.
  282. Sets postok status.  See <EM>postok</EM>.
  283. <P>Returns OK status.</P>
  284. <P></P>
  285. <DT><STRONG><A NAME="item_article"><EM>article</EM></A></STRONG><BR>
  286. <DD>
  287. Retrieves an article from the server.  This is the main command for
  288. fetching articles.  Expects a single argument, an article number or
  289. Message-ID.  If you use an article number, you must be in a news
  290. group.  See <EM>group</EM>.
  291. <P>Returns the header, a separating blank line, and the body of the
  292. article as an array of lines terminated by the current EOL.</P>
  293. <P>In scalar context a reference to the array is returned instead of the
  294. array itself.</P>
  295. <P>Examples:</P>
  296. <PRE>
  297.   print $c->article('<art1234@soom.oom>');</PRE>
  298. <PRE>
  299.   $c->group("test");</PRE>
  300. <PRE>
  301.   print $c->article(99);</PRE>
  302. <P></P>
  303. <DT><STRONG><A NAME="item_body"><EM>body</EM></A></STRONG><BR>
  304. <DD>
  305. Expects a single argument, an article number or Message-ID.
  306. <P>Returns the body of an article as an array of lines terminated by the
  307. current EOL.</P>
  308. <P>In scalar context a reference to the array is returned instead of the
  309. array itself.</P>
  310. <P>See <EM>article</EM>.</P>
  311. <P></P>
  312. <DT><STRONG><A NAME="item_head"><EM>head</EM></A></STRONG><BR>
  313. <DD>
  314. Expects a single argument, an article number or Message-ID.
  315. <P>Returns the head of the article as an array of lines terminated by the
  316. current EOL.</P>
  317. <P>In scalar context a reference to the array is returned instead of the
  318. array itself.</P>
  319. <P>See <EM>article</EM>.</P>
  320. <P></P>
  321. <DT><STRONG><A NAME="item_stat"><EM>stat</EM></A></STRONG><BR>
  322. <DD>
  323. Expects a single argument, an article number or Message-ID.
  324. <P>The STAT command is like the ARTICLE command except that it does not
  325. return any text.  It can be used to set the ``current article pointer''
  326. if passed an article number, or to validate a Message-ID if passed a
  327. Message-ID.</P>
  328. <P>Returns Message-ID if successful, otherwise returns false.</P>
  329. <P></P>
  330. <DT><STRONG><A NAME="item_last"><EM>last</EM></A></STRONG><BR>
  331. <DD>
  332. The ``current article pointer'' maintained by the server is moved to the
  333. previous article in the current news group.
  334. <P>Returns Message-ID if successful, otherwise returns false.</P>
  335. <P></P>
  336. <DT><STRONG><A NAME="item_next"><EM>next</EM></A></STRONG><BR>
  337. <DD>
  338. The ``current article pointer'' maintained by the server is moved to the
  339. next article in the current news group.
  340. <P>Returns Message-ID if successful, otherwise returns false.</P>
  341. <P></P>
  342. <DT><STRONG><A NAME="item_group"><EM>group</EM></A></STRONG><BR>
  343. <DD>
  344. Expects a single argument, the name of a valid news group.
  345. <P>This command sets the current news group as maintained by the server.
  346. It also sets the server maintained ``current article pointer'' to the
  347. first article in the group.  This enables the use of certain other
  348. server commands, such as <EM>article</EM>, <EM>head</EM>, <EM>body</EM>, <EM>stat</EM>,
  349. <EM>last</EM>, and <EM>next</EM>.  Also sets the current group in the NNTPClient
  350. object, which is used by the <EM>newnews</EM> and <EM>xindex</EM> commands.</P>
  351. <P>Returns (first, last) in list context, or ``first-last'' in scalar
  352. context, where first and last are the first and last article numbers
  353. as reported by the group command.  Returns false if there is an error.</P>
  354. <P>It is an error to attempt to select a non-existent news group.</P>
  355. <P>If the estimated article count is needed, it can be extracted from the
  356. message.  See <EM>message</EM>.</P>
  357. <P></P>
  358. <DT><STRONG><A NAME="item_list"><EM>list</EM></A></STRONG><BR>
  359. <DD>
  360. Accepts one optional argument that can be used indicate the type of
  361. list desired.  List type depends on server.
  362. <P>With an argument of ``active'' or with no arguments, this command
  363. returns a list of valid newsgroups and associated information.  The
  364. format is:</P>
  365. <PRE>
  366.   group last first p</PRE>
  367. <P>where group is the news group name, last is the article number of the
  368. last article, first is the article number of the first article, and p
  369. is flag indicating if posting is allowed.  A 'y' flag is an indication
  370. that posting is allowed.</P>
  371. <P>Other possible arguments are: newsgroups, distributions, subscriptions
  372. for B-News, and active.times, distributions, distrib.pats, newsgroups,
  373. overview.fmt for INN.</P>
  374. <P>Returns an array of lines terminated by the current EOL.</P>
  375. <P>In scalar context a reference to the array is returned instead of the
  376. array itself.</P>
  377. <P></P>
  378. <DT><STRONG><A NAME="item_newgroups"><EM>newgroups</EM></A></STRONG><BR>
  379. <DD>
  380. Expects at least one argument representing the date/time in seconds,
  381. or in ``YYYYMMDD HHMMSS [GMT]'' format.  The GMT part is optional.  If
  382. you wish to use GMT with the seconds format, first call <EM>gmt</EM>.
  383. Remaining arguments are used as distributions.
  384. <P>Example, print all new groups in the ``comp'' and/or ``news'' hierarchy as
  385. of one hour ago:</P>
  386. <PRE>
  387.   print $c->newgroups(time() - 3600, "comp", "news");</PRE>
  388. <P>Returns list of new news group names as an array of lines terminated
  389. by the current EOL.</P>
  390. <P>In scalar context a reference to the array is returned instead of the
  391. array itself.</P>
  392. <P></P>
  393. <DT><STRONG><A NAME="item_newnews"><EM>newnews</EM></A></STRONG><BR>
  394. <DD>
  395. Expects one, two, or more arguments.
  396. <P>If the first argument is a group name, it looks for new news in that
  397. group, and the date/time is the second argument.  If the first
  398. argument represents the date/time in seconds or in ``YYYYMMDD HHMMSS
  399. [GMT]'' format, then the group is is last group set via the <EM>group</EM>
  400. command. If no <EM>group</EM> command has been issued then the group is ``*'',
  401. representing all groups.  If you wish to use GMT in seconds format for
  402. the time, first call <EM>gmt</EM>.  Remaining arguments are use to restrict
  403. search to certain distribution(s).</P>
  404. <P>Returns a list of Message-IDs of articles that have been posted or
  405. received since the specified time.</P>
  406. <P>Examples:</P>
  407. <PRE>
  408.   # Hour old news in news group "test".
  409.   $c->newnews("test", time() - 3600);
  410. or
  411.   # Hour old in all groups.
  412.   $c->newnews(time() - 3600);
  413. or
  414.   $c->newnews("*", time() - 3600);
  415. or
  416.   # Hour old news in news group "test".
  417.   $c->group("test");
  418.   $c->newnews(time() - 3600);</PRE>
  419. <P>The group argument can include an asterisk ``*'' to specify a range news
  420. groups.  It can also include multiple news groups, separated by a
  421. comma ``,''.</P>
  422. <P>Example:</P>
  423. <PRE>
  424.   $c->newnews("comp.*.sources,alt.sources", time() - 3600);</PRE>
  425. <P>An exclamation point ``!'' may be used to negate the selection of
  426. certain groups.</P>
  427. <P>Example:</P>
  428. <PRE>
  429.   $c->newnews("*sources*,!*.d,!*.wanted", time() - 3600);</PRE>
  430. <P>Any additional distribution arguments will be concatenated together
  431. and send as a distribution list.  The distribution list will limit
  432. articles to those that have a Distribution: header containing one of
  433. the distributions passed.</P>
  434. <P>Example:</P>
  435. <PRE>
  436.   $c->newnews("*", time() - 3600, "local", "na");</PRE>
  437. <P>Returns Message-IDs of new articles as an array of lines terminated by
  438. the current EOL.</P>
  439. <P>In scalar context a reference to the array is returned instead of the
  440. array itself.</P>
  441. <P></P>
  442. <DT><STRONG><A NAME="item_help"><EM>help</EM></A></STRONG><BR>
  443. <DD>
  444. Returns any server help information.  The format of the information is
  445. highly dependent on the server, but usually contains a list of NNTP
  446. commands recognized by the server.
  447. <P>Returns an array of lines terminated by the current EOL.</P>
  448. <P>In scalar context a reference to the array is returned instead of the
  449. array itself.</P>
  450. <P></P>
  451. <DT><STRONG><A NAME="item_post"><EM>post</EM></A></STRONG><BR>
  452. <DD>
  453. Post an article.  Expects data to be posted as an array of lines.  Most
  454. servers expect, at a minimum, Newsgroups and Subject headers.  Be sure
  455. to separate the header from the body with a neck, er blank line.
  456. <P>Example:</P>
  457. <PRE>
  458.   @header = ("Newsgroups: test", "Subject: test", "From: tester");
  459.   @body   = ("This is the body of the article");</PRE>
  460. <PRE>
  461.   $c->post(@header, "", @body);</PRE>
  462. <P>There aren't really three arguments.  Perl folds all arguments into a
  463. single list.  You could also do this:</P>
  464. <PRE>
  465.   @article = ("Newsgroups: test", "Subject: test", "From: tester", "", "Body");
  466.   $c->post(@article);</PRE>
  467. <P>or even this:</P>
  468. <PRE>
  469.   $c->post("Newsgroups: test", "Subject: test", "From: tester", "", "Body");</PRE>
  470. <P>Any ``\n'' characters at the end of a line will be trimmed.</P>
  471. <P>Returns status.</P>
  472. <P></P>
  473. <DT><STRONG><A NAME="item_ihave"><EM>ihave</EM></A></STRONG><BR>
  474. <DD>
  475. Transfer an article.  Expects an article Message-ID and the article to
  476. be sent as an array of lines.
  477. <P>Example:</P>
  478. <PRE>
  479.   # Fetch article from server on $c
  480.   @article = $c->article($artid);
  481. </PRE>
  482. <PRE>
  483.  
  484.   # Send to server on $d
  485.   if ($d->ihave($artid, @article)) {
  486.       print "Article transfered\n";
  487.   } else {
  488.       print "Article rejected: ", $d->message, "\n";
  489.   }</PRE>
  490. <P></P>
  491. <DT><STRONG><A NAME="item_slave"><EM>slave</EM></A></STRONG><BR>
  492. <DD>
  493. Doesn't do anything on most servers.  Included for completeness.
  494. <P></P>
  495. <DT><STRONG><A NAME="item_DESTROY"><EM>DESTROY</EM></A></STRONG><BR>
  496. <DD>
  497. This method is called whenever the the object created by
  498. News::NNTPClient::new is destroyed.  It calls <EM>quit</EM> to close the
  499. connection.
  500. <P></P>
  501. <DT><STRONG><A NAME="item_quit"><EM>quit</EM></A></STRONG><BR>
  502. <DD>
  503. Send the NNTP quit command and close the connection.  The connection
  504. can be then be re-opened with the connect method.  Quit will
  505. automatically be called when the object is destroyed, so there is no
  506. need to explicitly call <EM>quit</EM> before exiting your program.
  507. <P></P></DL>
  508. <P>
  509. <H2><A NAME="extended nntp commands">Extended NNTP Commands</A></H2>
  510. <P>These commands also directly correlate NNTP server commands, but are
  511. not mentioned in RFC977, and are not part of the standard.  However,
  512. many servers implement them, so they are included as part of this
  513. package for your convenience.  If a command is not recognized by a
  514. server, the server usually returns code 500, command unrecognized.</P>
  515. <DL>
  516. <DT><STRONG><A NAME="item_authinfo"><EM>authinfo</EM></A></STRONG><BR>
  517. <DD>
  518. Expects two arguments, user and password.
  519. <P></P>
  520. <DT><STRONG><A NAME="item_date"><EM>date</EM></A></STRONG><BR>
  521. <DD>
  522. Returns server date in ``YYYYMMDDhhmmss'' format.
  523. <P></P>
  524. <DT><STRONG><A NAME="item_listgroup"><EM>listgroup</EM></A></STRONG><BR>
  525. <DD>
  526. Expects one argument, a group name.  Default is current group.
  527. <P>Returns article numbers as an array of lines terminated by the current
  528. EOL.</P>
  529. <P>In scalar context a reference to the array is returned instead of the
  530. array itself.</P>
  531. <P></P>
  532. <DT><STRONG><A NAME="item_xmotd"><EM>xmotd</EM></A></STRONG><BR>
  533. <DD>
  534. Expects one argument of unix time in seconds or as a string in the
  535. form ``YYYYMMDD HHMMSS''.
  536. <P>Returns the news servers ``Message Of The Day'' as an array of lines
  537. terminated by the current EOL.</P>
  538. <P>In scalar context a reference to the array is returned instead of the
  539. array itself.</P>
  540. <P>For example, the following will always print the message of the day,
  541. if there is any:</P>
  542. <PRE>
  543.   print $c->xmotd(1);
  544.   NNTP Server News2</PRE>
  545. <PRE>
  546.   News administrator is Joseph Blough <joeblo@news.foo.com></PRE>
  547. <P></P>
  548. <DT><STRONG><A NAME="item_xgtitle"><EM>xgtitle</EM></A></STRONG><BR>
  549. <DD>
  550. Expects one argument of a group pattern.  Default is current group.
  551. <P>Returns group titles an array of lines terminated by the current EOL.</P>
  552. <P>In scalar context a reference to the array is returned instead of the
  553. array itself.</P>
  554. <P>Example:</P>
  555. <PRE>
  556.   print $c->xgtitle("bit.listserv.v*");</PRE>
  557. <PRE>
  558.   bit.listserv.valert-l   Virus Alert List. (Moderated)
  559.   bit.listserv.vfort-l    VS-Fortran Discussion List.
  560.   bit.listserv.vm-util    VM Utilities Discussion List.
  561.   bit.listserv.vmesa-l    VM/ESA Mailing List.
  562.   bit.listserv.vmslsv-l   VAX/VMS LISTSERV Discussion List.
  563.   bit.listserv.vmxa-l     VM/XA Discussion List.
  564.   bit.listserv.vnews-l    VNEWS Discussion List.
  565.   bit.listserv.vpiej-l    Electronic Publishing Discussion</PRE>
  566. <P></P>
  567. <DT><STRONG><A NAME="item_xpath"><EM>xpath</EM></A></STRONG><BR>
  568. <DD>
  569. Expects one argument of an article Message-ID.  Returns the path name
  570. of the file on the server.
  571. <P>Example:</P>
  572. <PRE>
  573.   print print $c->xpath(q(<43bq5l$7b5@news.dtc.hp.com>))'
  574.   hp/test/4469</PRE>
  575. <P></P>
  576. <DT><STRONG><A NAME="item_xhdr"><EM>xhdr</EM></A></STRONG><BR>
  577. <DD>
  578. Fetch header for a range of articles.  First argument is name of
  579. header to fetch.  If omitted or blank, default to Message-ID.  Second
  580. argument is start of article range.  If omitted, defaults to 1.  Third
  581. argument is end of range.  If omitted, defaults to ``''.  The second
  582. argument can also be a Message-ID.
  583. <P>Returns headers as an array of lines terminated by the current EOL.</P>
  584. <P>In scalar context a reference to the array is returned instead of the
  585. array itself.</P>
  586. <P>Examples:</P>
  587. <PRE>
  588.   # Fetch Message-ID of article 1.
  589.   $c->xhdr();</PRE>
  590. <PRE>
  591.   # Fetch Subject of article 1.
  592.   $c->xhdr("Subject");</PRE>
  593. <PRE>
  594.   # Fetch Subject of article 3345.
  595.   $c->xhdr("Subject", 3345);</PRE>
  596. <PRE>
  597.   # Fetch Subjects of articles 3345-9873
  598.   $c->xhdr("Subject", 3345, 9873);</PRE>
  599. <PRE>
  600.   # Fetch Message-ID of articles 3345-9873
  601.   $c->xhdr("", 3345,9873);</PRE>
  602. <PRE>
  603.   # Fetch Subject for article with Message-ID
  604.   $c->xhdr("Subject", '<797t0g$25f10@foo.com>');</PRE>
  605. <P></P>
  606. <DT><STRONG><A NAME="item_xpat"><EM>xpat</EM></A></STRONG><BR>
  607. <DD>
  608. Fetch header for a range of articles matching one or more patterns.
  609. First argument is name of header to fetch.  If omitted or blank,
  610. default to Subject.  Second argument is start of article range.  If
  611. omitted, defaults to 1.  Next argument is end of range.  Remaining
  612. arguments are patterns to match.  Some servers use ``*'' for wildcard.
  613. <P>Returns headers as an array of lines terminated by the current EOL.</P>
  614. <P>In scalar context a reference to the array is returned instead of the
  615. array itself.</P>
  616. <P>Examples:</P>
  617. <PRE>
  618.   # Fetch Subject header of article 1.
  619.   $c->xpat();</PRE>
  620. <PRE>
  621.   # Fetch "From" header of article 1.
  622.   $c->xpat("From");</PRE>
  623. <PRE>
  624.   # Fetch "From" of article 3345.
  625.   $c->xpat("From", 3345);</PRE>
  626. <PRE>
  627.   # Fetch "From" of articles 3345-9873 matching *foo*
  628.   $c->xpat("From", 3345, 9873, "*foo*");</PRE>
  629. <PRE>
  630.   # Fetch "Subject" of articles 3345-9873 matching
  631.   # *foo*, *bar*, *and*, *stuff*
  632.   $c->xpat("", 3345,9873, qw(*foo* *bar* *and* *stuff*));</PRE>
  633. <P></P>
  634. <DT><STRONG><A NAME="item_xover"><EM>xover</EM></A></STRONG><BR>
  635. <DD>
  636. Expects an article number or a starting and ending article number
  637. representing a range of articles.
  638. <P>Returns overview information for each article as an array of lines
  639. terminated by the current EOL.</P>
  640. <P>In scalar context a reference to the array is returned instead of the
  641. array itself.</P>
  642. <P>Xover generally returns items separated by tabs.  Here is an example
  643. that prints out the xover fields from all messages in the ``test'' news
  644. group.</P>
  645. <PRE>
  646.   #!/usr/local/bin/perl</PRE>
  647. <PRE>
  648.   require News::NNTPClient;</PRE>
  649. <PRE>
  650.   $c = new News::NNTPClient;</PRE>
  651. <PRE>
  652.   @fields = qw(numb subj from date mesg refr char line xref);</PRE>
  653. <PRE>
  654.   foreach $xover ($c->xover($c->group("test"))) {
  655.       %fields = ();
  656.       @fields{@fields} = split /\t/, $xover;
  657.       print map { "$_: $fields{$_}\n" } @fields;
  658.       print "\n";
  659.   }</PRE>
  660. <PRE>
  661.   __END__
  662.                                 # 
  663. =item I<xthread></PRE>
  664. <P>Expects zero or one argument.  Value of argument doesn't matter.  If
  665. present, <EM>dbinit</EM> command is sent.  If absent, <EM>thread</EM> command is
  666. sent.</P>
  667. <P>Returns binary data as a scalar value.</P>
  668. <P>Format of data returned is unknown at this time.</P>
  669. <P></P>
  670. <DT><STRONG><A NAME="item_xindex"><EM>xindex</EM></A></STRONG><BR>
  671. <DD>
  672. Expects one argument, a group name.  If omitted, defaults to the group
  673. set by last <EM>group</EM> command.  If there hasn't been a group command,
  674. it returns an error;
  675. <P>Returns index information for group as an array of lines terminated by
  676. the current EOL.</P>
  677. <P>In scalar context a reference to the array is returned instead of the
  678. array itself.</P>
  679. <P></P>
  680. <DT><STRONG><A NAME="item_xsearch"><EM>xsearch</EM></A></STRONG><BR>
  681. <DD>
  682. Expects a query as an array of lines which are sent to the server,
  683. much like post.  Returns the result of the search as an array of lines
  684. or a reference to same.
  685. <P>Format of query is unknown at this time.</P>
  686. <P></P></DL>
  687. <P>
  688. <HR>
  689. <H1><A NAME="author">AUTHOR</A></H1>
  690. <P>Rodger Anderson  <<A HREF="mailto:rodger@boi.hp.com">rodger@boi.hp.com</A>></P>
  691. <P>
  692. <HR>
  693. <H1><A NAME="copyright">COPYRIGHT</A></H1>
  694. <P>Copyright 1995 Rodger Anderson. All rights reserved.
  695. This module is free software; you can redistribute it and/or
  696. modify it under the same terms as Perl itself.</P>
  697. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  698. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  699. <STRONG><P CLASS=block> News::NNTPClient - Perl 5 module to talk to NNTP server</P></STRONG>
  700. </TD></TR>
  701. </TABLE>
  702.  
  703. </BODY>
  704.  
  705. </HTML>
  706.