You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by he...@apache.org on 2023/03/15 17:28:07 UTC

svn commit: r1908422 - /spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DCC.pm

Author: hege
Date: Wed Mar 15 17:28:07 2023
New Revision: 1908422

URL: http://svn.apache.org/viewvc?rev=1908422&view=rev
Log:
Comment out useless empty if-clause

Modified:
    spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DCC.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DCC.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DCC.pm?rev=1908422&r1=1908421&r2=1908422&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DCC.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/DCC.pm Wed Mar 15 17:28:07 2023
@@ -799,7 +799,7 @@ sub _launch_dcc {
     return;
   }
 
-  if ($pms->get('ALL-TRUSTED') =~ /^(X-DCC-[^:]*?-Metrics: .*)$/m) {
+  #if ($pms->get('ALL-TRUSTED') =~ /^(X-DCC-[^:]*?-Metrics: .*)$/m) {
     # short-circuit if there is already a X-DCC header with value of
     # "bulk" from an upstream DCC check
     # require "bulk" because then at least one body checksum will be "many"
@@ -807,7 +807,7 @@ sub _launch_dcc {
     #if ($1 =~ / bulk /) {
     #  return $self->check_dcc_result($pms, $1);
     #}
-  }
+  #}
 
   my $envelope = $pms->{relays_external}->[0];