We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae60c48 commit 0cea99fCopy full SHA for 0cea99f
mmuxer/cli/run.py
@@ -23,7 +23,9 @@ def _tidy(
23
total_emails = len(box.numbers())
24
with progress_when_tty() as progress:
25
task = progress.add_task("[bold blue]Preparing to tidy emails...", total=total_emails)
26
- for msg in box.fetch(bulk=100, mark_seen=False, headers_only=True):
+ for msg in box.fetch(bulk=100, mark_seen=False):
27
+ # TODO: use headers_only=True for perf gains - however needs
28
+ # to handle case where filter depends on body, and somehow fix tests
29
msg.associated_folder = folder
30
apply_list(state.rules, box, msg, dry_run)
31
for script in state.scripts:
0 commit comments