예제 #1
0
#!/usr/bin/env python

import sys

sys.path.append('.')  # noqa: E402

from kanmail.server.mail.folder_cache import (  # noqa: E402
    remove_stale_folders,
    remove_stale_headers,
    vacuum_folder_cache,
)


print('--> Removing stale folders...')
remove_stale_folders()

print('--> Removing stale headers...')
remove_stale_headers()

print('--> Vacuuming!')
vacuum_folder_cache()
예제 #2
0
def run_cache_cleanup_later():
    sleep(120)  # TODO: make this more intelligent?
    remove_stale_folders()
    remove_stale_headers()
    vacuum_folder_cache()