From 01ca2a8b9194e46e669b5f3eb9e66f1a14645756 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Mon, 15 Sep 2025 13:15:15 +0200 Subject: [PATCH] more streamline --- chatmaild/src/chatmaild/expire.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/chatmaild/src/chatmaild/expire.py b/chatmaild/src/chatmaild/expire.py index f12b21b3..0bd9aa12 100644 --- a/chatmaild/src/chatmaild/expire.py +++ b/chatmaild/src/chatmaild/expire.py @@ -25,9 +25,6 @@ class FileEntry: def __repr__(self): return f"" - def get_path(self, basedir): - return joinpath(basedir, self.relpath) - def __eq__(self, other): return ( self.relpath == other.relpath @@ -118,7 +115,6 @@ class Expiry: pass # it's gone already, fine def process_mailbox_stat(self, mbox): - print_info(f"processing expiry for {mbox.basedir}") cutoff_without_login = ( self.now - int(self.config.delete_inactive_users_after) * 86400 )