sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit cd5921ba503f0860b11b68d6d9a9e97a652437e1
parent c9279ba46a8be7772f05bf7c9af72c96429d8ac3
Author: Rich Lane <rlane@club.cc.cmu.edu>
Date:   Mon, 27 Jul 2009 20:19:29 -0700

xapian: fix MAX_DATE

Diffstat:
M lib/sup/xapian_index.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/sup/xapian_index.rb b/lib/sup/xapian_index.rb
@@ -14,7 +14,7 @@ class XapianIndex < BaseIndex
   ## so we must ensure they're reasonably valid. this typically only affect
   ## spam.
   MIN_DATE = Time.at 0
-  MAX_DATE = Time.at(2**31)
+  MAX_DATE = Time.at(2**31-1)
 
   def initialize dir=BASE_DIR
     super