vsync 0.3.1

Synchronization between IMAP and local maildir
# vsync IMAP to maildir synchronization

[![Crates.io](https://img.shields.io/crates/v/vsync.svg)](https://crates.io/crates/vsync)
[![builds.sr.ht status](https://builds.sr.ht/~bitfehler/vomit-sync/commits.svg)](https://builds.sr.ht/~bitfehler/vomit-sync/commits?)

Vsync is a small CLI wrapper around [vomit-sync][1]. It aims to provide access
to all functions that vomit-sync offers. At the moment, this is only
synchronizing from IMAP to a local maildir (not the other way). Vsync has to be
run periodically to keep the two synchronized.

[1]: https://crates.io/crates/vomit-sync "vomit-sync on crates.io"

# Configuration

Example configuration file:

```
[myaccount]
local = "~/.maildir"
remote = "imaps://imap.example.com:993"
user = "myusername"
pass-cmd = "pass show mail/myaccount"
# or use this:
#password = "s3cr34"
```