You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by gb...@apache.org on 2020/02/21 23:04:46 UTC

svn commit: r1874343 - in /spamassassin: branches/3.4/lib/Mail/SpamAssassin/Conf.pm trunk/lib/Mail/SpamAssassin/Conf.pm

Author: gbechis
Date: Fri Feb 21 23:04:46 2020
New Revision: 1874343

URL: http://svn.apache.org/viewvc?rev=1874343&view=rev
Log:
put [raw]body_part_scan_size documentation in the right
section of man page
fix bz 7796

Modified:
    spamassassin/branches/3.4/lib/Mail/SpamAssassin/Conf.pm
    spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm

Modified: spamassassin/branches/3.4/lib/Mail/SpamAssassin/Conf.pm
URL: http://svn.apache.org/viewvc/spamassassin/branches/3.4/lib/Mail/SpamAssassin/Conf.pm?rev=1874343&r1=1874342&r2=1874343&view=diff
==============================================================================
--- spamassassin/branches/3.4/lib/Mail/SpamAssassin/Conf.pm (original)
+++ spamassassin/branches/3.4/lib/Mail/SpamAssassin/Conf.pm Fri Feb 21 23:04:46 2020
@@ -1242,38 +1242,6 @@ it will be used if it is available.
     }
   });
 
-
-=item body_part_scan_size               (default: 50000)
-
-Per mime-part scan size limit in bytes for "body" type rules.
-The decoded/stripped mime-part is truncated approx to this size.
-Helps scanning large messages safely, so it's not necessary to
-skip them completely. Disabled with 0.
-
-=cut
-
-  push (@cmds, {
-    setting => 'body_part_scan_size',
-    is_admin => 1,
-    default => 50000,
-    type => $CONF_TYPE_NUMERIC,
-  });
-
-
-=item rawbody_part_scan_size               (default: 500000)
-
-Like body_part_scan_size, for "rawbody" type rules.
-
-=cut
-
-  push (@cmds, {
-    setting => 'rawbody_part_scan_size',
-    is_admin => 1,
-    default => 500000,
-    type => $CONF_TYPE_NUMERIC,
-  });
-
-
 =back
 
 =head2 NETWORK TEST OPTIONS
@@ -3582,6 +3550,36 @@ general running of SpamAssassin.
     }
   });
 
+=item body_part_scan_size               (default: 50000)
+
+Per mime-part scan size limit in bytes for "body" type rules.
+The decoded/stripped mime-part is truncated approx to this size.
+Helps scanning large messages safely, so it's not necessary to
+skip them completely. Disabled with 0.
+
+=cut
+
+  push (@cmds, {
+    setting => 'body_part_scan_size',
+    is_admin => 1,
+    default => 50000,
+    type => $CONF_TYPE_NUMERIC,
+  });
+
+
+=item rawbody_part_scan_size               (default: 500000)
+
+Like body_part_scan_size, for "rawbody" type rules.
+
+=cut
+
+  push (@cmds, {
+    setting => 'rawbody_part_scan_size',
+    is_admin => 1,
+    default => 500000,
+    type => $CONF_TYPE_NUMERIC,
+  });
+  
 =item rbl_timeout t [t_min] [zone]		(default: 15 3)
 
 All DNS queries are made at the beginning of a check and we try to read

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm
URL: http://svn.apache.org/viewvc/spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm?rev=1874343&r1=1874342&r2=1874343&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Conf.pm Fri Feb 21 23:04:46 2020
@@ -1236,38 +1236,6 @@ it will be used if it is available.
     }
   });
 
-
-=item body_part_scan_size               (default: 50000)
-
-Per mime-part scan size limit in bytes for "body" type rules.
-The decoded/stripped mime-part is truncated approx to this size.
-Helps scanning large messages safely, so it's not necessary to
-skip them completely. Disabled with 0.
-
-=cut
-
-  push (@cmds, {
-    setting => 'body_part_scan_size',
-    is_admin => 1,
-    default => 50000,
-    type => $CONF_TYPE_NUMERIC,
-  });
-
-
-=item rawbody_part_scan_size               (default: 500000)
-
-Like body_part_scan_size, for "rawbody" type rules.
-
-=cut
-
-  push (@cmds, {
-    setting => 'rawbody_part_scan_size',
-    is_admin => 1,
-    default => 500000,
-    type => $CONF_TYPE_NUMERIC,
-  });
-
-
 =back
 
 =head2 NETWORK TEST OPTIONS
@@ -3634,6 +3602,36 @@ general running of SpamAssassin.
     }
   });
 
+=item body_part_scan_size               (default: 50000)
+
+Per mime-part scan size limit in bytes for "body" type rules.
+The decoded/stripped mime-part is truncated approx to this size.
+Helps scanning large messages safely, so it's not necessary to
+skip them completely. Disabled with 0.
+
+=cut
+
+  push (@cmds, {
+    setting => 'body_part_scan_size',
+    is_admin => 1,
+    default => 50000,
+    type => $CONF_TYPE_NUMERIC,
+  });
+
+
+=item rawbody_part_scan_size               (default: 500000)
+
+Like body_part_scan_size, for "rawbody" type rules.
+
+=cut
+
+  push (@cmds, {
+    setting => 'rawbody_part_scan_size',
+    is_admin => 1,
+    default => 500000,
+    type => $CONF_TYPE_NUMERIC,
+  });
+  
 =item rbl_timeout t [t_min] [zone]		(default: 15 3)
 
 All DNS queries are made at the beginning of a check and we try to read