An open API service indexing awesome lists of open source software.

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.

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
```