Email-MIME

 view release on metacpan or  search on metacpan

lib/Email/MIME.pm  view on Meta::CPAN

7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
use Carp ();
use Email::MIME::ContentType 1.023; # build_content_type
use Encode 1.9801 ();
use Scalar::Util qw(reftype weaken);
 
our @CARP_NOT = qw(Email::MIME::ContentType);
 
our $MAX_DEPTH = 10;
 
our $CUR_PARTS = 0;
our $MAX_PARTS = 100;
 
#pod =head1 SYNOPSIS
#pod

lib/Email/MIME.pm  view on Meta::CPAN

877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
      if ($differ) {
        $part->parts_set(\@subparts);
        $changed{ 0+$part }++;
      }
    }
 
    return $part;
  };
 
  $walk_weak = $walk;
  weaken $walk_weak;
 
  my $rv = $walk->($self);
 
  undef $walk;
 
  return $rv;
}
 
sub _compose_content_type {
  my ($self, $ct_header) = @_;



( run in 0.277 second using v1.01-cache-2.11-cpan-fd5d4e115d8 )