v0.8.11
This is mostly a fixups release.
Update cargo installations with:
cargo install meli
Contributors in alphabetical order:
- Guillaume Ranquet
- Manos Pitsidianakis
- n4n5
Highlights:
-
2870624d contacts: add notmuch address book support in PR #551 "contacts: add notmuch address book support
The new notmuch_address_book_query account setting defines a query passed to "notmuch address" command to import contacts into meli.
Contacts are parsed and imported read-only.
Example query to import all contacts in the past 6 Months:
notmuch_address_book_query = "--output=recipients --deduplicate=address date:6M.."
-
IMAP connections now use connection pools to prevent an on-going operation blocking other operations. This is because IMAP connections are stateful and we cannot re-use a single TCP connection for parallel operations. The use_connection_pool account setting can be used to disable this behavior.
-
Add setting for UI notifications (as opposed to system notifications).