| Crates.io | imbak |
| lib.rs | imbak |
| version | 0.1.1 |
| created_at | 2023-07-08 23:23:32.746989+00 |
| updated_at | 2023-07-08 23:28:05.067229+00 |
| description | A command line tool for backing up IMAP mailboxes |
| homepage | https://github.com/bcheidemann/imbak |
| repository | https://github.com/bcheidemann/imbak |
| max_upload_size | |
| id | 911714 |
| size | 132,651 |
A command line tool for backing up IMAP mailboxes written in Rust
On running the command you will be prompted to input a username (email) and password. In non-interactive environments you can set the IMAP_USERNAME and IMAP_PASSWORD environment variables.
Download all emails from the default mailbox (INBOX) to the current working directory using the default batch size (5).
imbak backup \
--domain imap.example.com \
--port 993 \
--from 0 \
--count 100
All options.
imbak backup \
--domain imap.example.com \
--port 993 \
--mailbox INBOX \
--batch-size 5 \
--output-directory . \
--from 0 \
--count 100