News::AutoReply - derivative of News::Article for generating autoreplies


News-Article documentation Contained in the News-Article distribution.

Index


Code Index:

NAME

Top

News::AutoReply - derivative of News::Article for generating autoreplies

SYNOPSIS

Top

  use News::AutoReply;

  $reply = News::AutoReply->new($message);

DESCRIPTION

Top

Like News::Article, but must be given a reference to another article at creation time - initialises To, In-Reply-To, References etc. correctly as an automatic reply.

USAGE

Top

  use News::AutoReply;

Exports nothing.

Constructor

Top

new ( ORIGINAL )

Construct an autoreply to a message, assuming that the Reply-To (if present, otherwise the From) header of ORIGINAL is valid.

Returns a new Article object with no body or envelope sender, but with suitable headers.

If an environment variable LOOP is defined, it is used as the contents of an X-Loop header added to the reply (this is useful when using this code in progs launched from a procmail recipe). Always preserves X-Loop headers in the original.

The reference-folding code could probably be improved.

AUTHOR

Top

Andrew Gierth <andrew@erlenstar.demon.co.uk>

SOURCE

Top

Contact the author.

COPYRIGHT

Top


News-Article documentation Contained in the News-Article distribution.
# -*- Perl -*-
###########################################################################
# Written and maintained by Andrew Gierth <andrew@erlenstar.demon.co.uk>
#
# Copyright 1997 Andrew Gierth. Redistribution terms at end of file.
#
# $Id: AutoReply.pm 1.10 2001/11/08 14:10:12 andrew Exp $
#
###########################################################################
#
# Address, n. 1. A formal discourse, usually delivered to a person who has
#             something by a person who wants something that he has.
#             2. The place at which one receives the delicate attentions
#             of creditors.
#                                                        -- Ambrose Bierce
#

package News::AutoReply;

use News::Article;
use strict;
use vars qw(@ISA);

@ISA = qw(News::Article);

sub new
{
    my $class = shift;
    my $src = shift;

    my $self = $class->SUPER::new(@_);
    return undef unless $self;

    $self->reply_init($src);
}

#--------------------------------------------------------------------------
# private. Factored out of new() so that FormReply etc. can inherit
# this.

sub reply_init
{
    my $self = shift;
    my $src = shift;

    my $to = $src->header('reply-to') || $src->header('from');
    return undef unless $to;

    $self->add_headers(to => $to);
    $self->set_headers("x-loop" => [ $src->header("x-loop") ]);
    $self->add_headers("x-loop" => $ENV{LOOP}) if defined($ENV{LOOP});

    if (!defined($self->header("subject")))
    {
	my $subj = $src->header("subject") || "(no subject)";
	$subj =~ s/^(\s*[Rr][Ee]:\s+)?/Re: /;
	$self->set_headers(subject => $subj);
    }
    
    my $srcid = $src->header("message-id");
    $self->set_headers("in-reply-to" => $srcid) if $srcid;

    my $refs = $src->header("references") || '';
    my @refs = split(' ',$refs);
    push @refs,$srcid if $srcid;
    if ($refs = $self->fold_references(@refs))
    {
        $self->set_headers(references => $refs);
    }

    return $self;
}

#----------------------------------------------------------------------------
# private; called as a method to allow overriding if necessary.

sub fold_references
{
    my $self = shift;
    my $refs = shift || '';
    my $length = 4 + length($refs);

    while (@_)
    {
	my $ref = shift;
	$length += 1 + length($ref);
	$refs .= ($length < 72) ? ' ' : "\n\t";
	$refs .= $ref;
	$length = length($ref) unless $length < 72;
    }

    $refs;
}

1;

__END__

###########################################################################
#
# $Log: AutoReply.pm $
# Revision 1.10  2001/11/08 14:10:12  andrew
# don't include References header if there are no references.
#
# Revision 1.9  1998/10/18 06:03:21  andrew
# Added SYNOPSIS
#
# Revision 1.8  1998/02/26 01:43:43  andrew
# another minor tweak to reference-folding
#
# Revision 1.7  1998/02/26 01:38:46  andrew
# minor tweak to reference-folding
#
# Revision 1.6  1998/02/26 01:21:23  andrew
# Fixed the references-folding code a bit.
#
# Revision 1.5  1997/10/22 21:00:10  andrew
# Cleanup terms for public release
#
# Revision 1.4  1997/08/31 02:10:46  andrew
# Added an ObQuote.
#
# Revision 1.3  1997/08/29 00:36:29  andrew
# No longer overrides Subject: if set in the source headers.
#
#
###########################################################################

###########################################################################