-
Notifications
You must be signed in to change notification settings - Fork 1k
Mailboxes
JocelynDelalande edited this page Oct 28, 2015
·
7 revisions
Note: The primary way to do this, is to use the Browse tool from the Accounts (Home) page in the app. If you would rather do it by hand on the CLI, see below.
- Add mailbox
mailpile> add [email protected] /path/to/your/something.mbox
This will add the mailbox to your Pile, associating it with the specified account (which should already exist).
Once that is done importing the new mailbox you just added, you may want to apply some tags. Do that by the following commands
- Add the tag "Custom Tag"
mailpile> tags/add "Custom Tag"
- Search for that mailbox
mailpile> search mailbox:something.mbox
- Tag that search with "Custom Tag"
mailpile> tag +custom-tag all
There you go, now that mail will show up in your Mailpile under the new tag.
Currently to make entire mailboxes disappear is a bit of a hack:
- Search for that mailbox
mailpile> search mailbox:something.mbox
- Tag that search as Trash
mailpile> tag -inbox +trash all
- Find the ID of the mailbox
mailpile> print sys.mailbox
- Replace the mailbox path:
mailpile> set sys.mailbox.1234 = /dev/null
(Replace 1234 in step 4, with the ID found in step 3.)