Email Snooze
Temporarily hide emails from your inbox. They return automatically when you're ready to deal with them.
Overview
Sometimes an email needs attention, but not right now. Maybe you're waiting for information, or it's a task for next week, or you just need to focus on something else first. Snoozing hides the email temporarily and brings it back to your inbox when you're ready.
Snoozing Emails
Use the snooze command with an email UID and a duration:
$ pontius snooze 37801 tomorrowSnoozed email 37801 until tomorrow at 9:00 AM$ pontius snooze 37802 4hSnoozed email 37802 until 2:30 PM today$ pontius snooze 37803 mondaySnoozed email 37803 until Monday at 9:00 AMDuration Formats
Pontius understands natural language durations:
| Duration | Meaning |
|---|---|
1h, 2h, 4h | Hours from now |
1d, 2d, 3d | Days from now (at 9 AM) |
1w, 2w | Weeks from now (at 9 AM) |
tomorrow | Tomorrow at 9 AM |
monday, tuesday, etc. | Next occurrence of that weekday at 9 AM |
next week | Next Monday at 9 AM |
next month | First of next month at 9 AM |
Viewing Snoozed Emails
See all currently snoozed emails with the snoozed command:
$ pontius snoozed UID RETURNS FROM SUBJECT 37801 Tomorrow 9:00 AM [email protected] Re: Project timeline 37802 Today 2:30 PM [email protected] Weekly sync notes 37803 Monday 9:00 AM [email protected] Invoice #1234How It Works
When you snooze an email:
- The email is moved to a
Snoozedfolder (created automatically if needed) - Pontius records when it should return
- When the time comes, the email is moved back to your inbox
- The snooze record is cleared
Unsnoozing Early
If you need an email back before its scheduled return, you can:
# Move it back manually$ pontius move 37801 INBOX --folder SnoozedMoved email 37801 to "INBOX"# Or read it directly from the Snoozed folder$ pontius read 37801 --folder SnoozedCommon Use Cases
Defer Non-Urgent Items
During inbox triage, snooze emails that need attention but aren't urgent:
# Client wants feedback on a draft - deal with it Monday$ pontius snooze 37801 monday# Newsletter you want to read later$ pontius snooze 37802 tomorrowFollow-Up Reminders
Snooze an email to remind yourself to follow up if you don't hear back:
# Send a proposal, snooze for follow-up in 3 days$ pontius send [email protected] "Proposal" "Here's our proposal..."$ pontius snooze 37801 3dBatch Processing
Snooze similar emails to process them together later:
# Snooze all vendor emails until Friday afternoon$ pontius snooze 37801,37802,37803 fridayAI Workflow
During blitz sessions, tell your AI:
- "Snooze this until tomorrow"
- "I'll deal with this Monday, snooze it"
- "Snooze anything from newsletters until the weekend"
- "What emails do I have snoozed?"
The AI will use the appropriate snooze commands and track your snoozed emails.
Command Reference
| Command | Description |
|---|---|
pontius snooze <uid> <duration> | Snooze an email until the specified time |
pontius snoozed | List all snoozed emails with return times |