https://bugzilla.redhat.com/show_bug.cgi?id=2316684

Petr Pisar <ppi...@redhat.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Request for packaging of    |Request for packaging of
                   |Perl module Mail::DMARC     |Perl module
                   |                            |Mail::DMARC::PurePerl
          Component|perl                        |spamassassin
           Assignee|jples...@redhat.com         |ke...@scrye.com
                 CC|                            |jskar...@redhat.com,
                   |                            |ke...@scrye.com,
                   |                            |n...@fedoraproject.org,
                   |                            |pa...@zhukoff.net
           Doc Type|---                         |If docs needed, set a value



--- Comment #1 from Petr Pisar <ppi...@redhat.com> ---
Mail::DMARC::PurePerl is a dependency for an optional feature:

sub _check_dmarc {
  my ($self, $pms, $name) = @_;

  return unless $pms->is_dns_available();

  # Load DMARC module
  if (!exists $self->{has_mail_dmarc}) {
    my $eval_stat;
    eval {
      require Mail::DMARC::PurePerl;
    } or do {
      $eval_stat = $@ ne '' ? $@ : "errno=$!";  chomp $eval_stat;
    };
    if (!defined($eval_stat)) {
      dbg("using Mail::DMARC::PurePerl for DMARC checks");
      $self->{has_mail_dmarc} = 1;
    } else {
      dbg("cannot load Mail::DMARC::PurePerl: module: $eval_stat");
      dbg("Mail::DMARC::PurePerl is required for DMARC checks, DMARC checks
disabled");
      $self->{has_mail_dmarc} = undef;
    }
  }


-- 
You are receiving this mail because:
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2316684

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla&format=report-spam&short_desc=Report%20of%20Bug%202316684%23c1

-- 
_______________________________________________
perl-devel mailing list -- perl-devel@lists.fedoraproject.org
To unsubscribe send an email to perl-devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/perl-devel@lists.fedoraproject.org
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to