Server IP : 85.214.239.14 / Your IP : 18.223.203.153 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/share/perl5/MIME/Field/ |
Upload File : |
package MIME::Field::ConTraEnc; =head1 NAME MIME::Field::ConTraEnc - a "Content-transfer-encoding" field =head1 DESCRIPTION A subclass of Mail::Field. I<Don't use this class directly... its name may change in the future!> 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-transfer-encoding', '7bit'); # Get the encoding. # Possible values: 'binary', '7bit', '8bit', 'quoted-printable', # 'base64' and '' (unspecified). Note that there can't be a # single default for this, since it depends on the content type! $encoding = $field->encoding; =head1 SEE ALSO L<MIME::Field::ParamVal>, L<Mail::Field> =head1 AUTHOR Eryq (F<eryq@zeegee.com>), ZeeGee Software Inc (F<http://www.zeegee.com>). Dianne Skoll (dianne@skoll.ca) =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.510"; # Install it: bless([])->register('Content-transfer-encoding'); #------------------------------ sub encoding { shift->paramstr('_', @_); } #------------------------------ 1;