You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.3 KiB
Plaintext

9 years ago
#!/usr/bin/env python
"""
List maildirs in your Maildir++ with message counts.
"""
from __future__ import division, print_function
import os
import os.path
import re
def maildirs(startdir):
for dirpath, dirnames, _ in os.walk(startdir):
if set(['cur', 'new', 'tmp']).issubset(set(dirnames)):
yield dirpath
def maildir_count(maildir):
def dir_count(dir_):
return len(os.listdir(dir_))
cur = dir_count(os.path.join(maildir, 'cur'))
new = dir_count(os.path.join(maildir, 'new'))
all_ = cur + new
return (new, all_)
def mailbox_name(maildir, root):
name = re.sub(root + r'/?\.?', '', maildir)
if name == '':
return 'INBOX'
else:
return name
ignore_zero = True
ignore = [r'spam']
sort_by_count = True
9 years ago
root = os.path.expanduser('~/Maildir')
counts = {}
for maildir in maildirs(root):
name = mailbox_name(maildir, root)
_, all_ = maildir_count(maildir)
if all_ == 0 and ignore_zero:
continue
if any(re.match(i, name) for i in ignore):
continue
counts[name] = all_
if sort_by_count:
key = lambda i: i[1]
reverse = True
else:
key = lambda i: i[0]
reverse = False
for name, count in sorted(counts.items(), key=key, reverse=reverse):
print('{:30} {:5d}'.format(name, count))