From 85115197962c27c9ebcb40e20696e0be28726caa Mon Sep 17 00:00:00 2001 From: tkikuchi <> Date: Fri, 3 Feb 2006 07:04:32 +0000 Subject: add OverflowError in exceptions. (CVE-2005-4153 related but not DoS) --- Mailman/Queue/ArchRunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mailman/Queue/ArchRunner.py b/Mailman/Queue/ArchRunner.py index 0abb1d1b..62714537 100644 --- a/Mailman/Queue/ArchRunner.py +++ b/Mailman/Queue/ArchRunner.py @@ -49,7 +49,7 @@ class ArchRunner(Runner): elif abs(now - mktime_tz(tup)) > \ mm_cfg.ARCHIVER_ALLOWABLE_SANE_DATE_SKEW: clobber = 1 - except ValueError: + except (ValueError, OverflowError): # The likely cause of this is that the year in the Date: field # is horribly incorrect, e.g. (from SF bug # 571634): # Date: Tue, 18 Jun 0102 05:12:09 +0500 -- cgit v1.2.3