package MIME::Field::ContDisp; =head1 NAME MIME::Field::ContDisp - a "Content-disposition" field =head1 DESCRIPTION A subclass of Mail::Field. I Instead, ask Mail::Field for new instances based on the field name! =head1 SYNOPSIS use Mail::Field; use MIME::Head; # Create an instance from some text: $field = Mail::Field->new('Content-disposition', $text); # Inline or attachment? $type = $field->type; # Recommended filename? $filename = $field->filename; =head1 AUTHOR Eryq (F), ZeeGee Software Inc (F). David F. Skoll (dfs@roaringpenguin.com) http://www.roaringpenguin.com =cut require 5.001; use strict; use MIME::Field::ParamVal; use vars qw($VERSION @ISA); @ISA = qw(MIME::Field::ParamVal); # The package version, both in 1.23 style *and* usable by MakeMaker: $VERSION = "5.425"; # Install it: bless([])->register('Content-disposition'); #------------------------------ sub filename { shift->paramstr('filename', @_); } sub type { shift->paramstr('_', @_); } #------------------------------ 1;