Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

news::scan::article(3pm) [debian man page]

News::Scan::Article(3pm)				User Contributed Perl Documentation				  News::Scan::Article(3pm)

NAME
News::Scan::Article - collect information about news articles SYNOPSIS
use News::Scan::Article; my $art = News::Scan::Article->new( ARG, [ OPTIONS, ] SCAN ); DESCRIPTION
This module provides a derived class of "Mail::Internet" whose objects are suitable for digesting Usenet news articles. CONSTRUCTOR
new ( ARG, [ OPTIONS, ] SCAN-OBJ ) The "ARG" and "OPTIONS" parameters are identical to those required by "Mail::Internet", except "ARG" is required. See Mail::Internet. The "SCAN" parameter should be a "News::Scan" object. See News::Scan. If the article falls into the period of interest for "SCAN", the object is returned, else "undef". METHODS
group ( [ SCAN-OBJ ] ) Sets or returns an object's group depending on whether "SCAN-OBJ" is present. author Returns the article's author represented as a "Mail::Address" object. message_id Returns the article's Message-ID. subject Returns the article's subject. newsgroups Returns the list of newsgroups this article was posted to. size Returns the size of this article in bytes. header_size Returns the size of this article's header in bytes. header_lines Returns the number of lines consumed in this article by headers. body_size Returns the size of this article's body in bytes. body_lines Returns the number of lines consumed in this article by the body. orig_size Returns the size of this article's original content in bytes. See "QuoteRE" in News::Scan. orig_lines Returns the number of lines consumed in this article by original content. Keep in mind that original content is a subset of the body. sig_size Returns the size of this article'ss signature in bytes. sig_lines Returns the number of lines consumed in this article by the signature. SEE ALSO
News::Scan, Mail::Internet, Mail::Address AUTHOR
Greg Bacon <gbacon@cs.uah.edu> COPYRIGHT
Copyright (c) 1997 Greg Bacon. All Rights Reserved. This library is free software. You may distribute and/or modify it under the same terms as Perl itself. perl v5.10.1 2000-08-09 News::Scan::Article(3pm)

Check Out this Related Man Page

NoCeM(3pm)						User Contributed Perl Documentation						NoCeM(3pm)

NAME
News::Article::NoCeM - a module to generate accurate nocem notices SYNOPSIS
use News::Article::NoCeM; my $nocem = new News::Article::NoCeM(); $nocem->hide($type, $spam); $nocem->make_notice($type, $name, $issuer, $group, $prefix); $nocem->sign($keyid, $passphrase); $nocem->issue($conn, $ihave); DESCRIPTION
Creates a nocem notice on the Usenet articles, which may be posted normally to hide the messages. USAGE
use News::Article::NoCeM; News::Article::NoCeM is class that inherits News::Article and adds four new functions: hide(), make_notice(), sign() and issue(), redefine to disable two functions: post() and ihave(). Article Methods hide ( TYPE, ARTICLE, [ARTICLE, ...] ) Hide one or more articles in the given "TYPE". "ARTICLE" is an News::Article object that going to be hid. hide() will skip the articles without Newsgroup or Message-ID and skip the ones already hid. hide() returns the number of the articles hid. post ihave post() and ihave() is disabled in News::Article::NoCeM. Please use issue() instead. make_notice ( TYPE, NAME, GROUP, ISSUER, [ PREFIX ] ) Retrive articles marked by hide with "TYPE", and make a notice fot them. If there's only one type within a container, then the container itself can be a notice. "NAME" is the identifier of the issuer. "GROUP" is the newsgroup the you will post nocem notice to. "ISSUER" is the email address of the issuer. "PREFIX" is the announcement before the nocem notice, which may explain the criteria of this notice, or where to find your public key for PGP verification. make_notice() returns a News::Article::NoCeM object if success, and return undef if no article is hid. sign ( KEYID, PASSPHRASE ) Sign the content of the nocem notice with "KEYID" and "PASSPHRASE". Please make sure that the issuer's public/secret keyring is ready. sign() returns a News::Article::NoCeM object if success, and return undef if no article is hid, or pgp_sign failed. issue ( [ CONN, IHAVE ] ) Take optional "CONN" as a Net::NNTP object and issue the nocem notice. "IHAVE" indicates that call Net::NNTP::ihave() for submitting the notice, otherwise issue() will call News::Article::post() by default. issue() return the result of News::Article::post() or issue(). NOTES
Standard article manipulation information can be read in the News::Article manpages. NoCeM FAQ is available on the web at <URL:http://www.cm.org/faq.html>. AUTHOR
Written by Yen-Ming Lee <leeym@leeym.com>, based on a module by Tim Skirvin <tskirvin@killfile.org>. COPYRIGHT
Copyright 2004-2005 by Yen-Ming Lee <leeym@leeym.com>. This code may be redistributed under the same terms as Perl itself. perl v5.12.4 2006-06-23 NoCeM(3pm)
Man Page