https://github.com/arkadiusjonczek/imapdump
📩 Backup and restore your imap mailboxes.
https://github.com/arkadiusjonczek/imapdump
backup command console imap mailbox php restore
Last synced: 5 months ago
JSON representation
📩 Backup and restore your imap mailboxes.
- Host: GitHub
- URL: https://github.com/arkadiusjonczek/imapdump
- Owner: arkadiusjonczek
- Created: 2018-01-18T12:04:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-04-02T00:27:15.000Z (about 5 years ago)
- Last Synced: 2025-11-18T08:34:22.786Z (7 months ago)
- Topics: backup, command, console, imap, mailbox, php, restore
- Language: PHP
- Homepage:
- Size: 25.4 KB
- Stars: 7
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# imapdump
Backup and restore your imap mailboxes.
## Installation
```bash
clone https://github.com/arkadiusjonczek/imapdump.git
cd imapdump
composer install
chmod u+x imapdump
./imapdump
```
## Usage
Info about your mailbox usage and limit quota:
```bash
./imapdump info
```
List all your mailboxes with number of messages:
```bash
./imapdump ls
```
Backup your mailboxes to your filesystem:
```bash
./imapdump backup
```
Restore your mailboxes from filesystem backup:
```bash
./imapdump restore
```
Add email passwords in a configuration file:
```bash
cp config.sample.ini config.ini
```
```bash
[accounts]
user@mail.com=password
user2@mail.com=password
```