Added
- Added command
folders expunge
that deletes all emails marked for
deletion.
Changed
- Changed the location of the
documentation.
Fixed
- Fixed broken links in README.md.
Removed
- Removed the
maildir-backend
cargo feature, it is now included by
default. - Removed issues section on GitHub, now issues need to be opened by
sending an email at
~soywod/pimalaya@todo.sr.ht.
himalaya-lib v0.6.0
Added
- Added ability to synchronize specific folders only [#37].
- Added
Backend::expunge
function that definitely removes emails
with theDeleted
flag. - Added
Backend::mark_emails_as_deleted
function with a default
implementation that adds theDeleted
flag.
Changed
- Changed the way emails are deleted.
Backend::delete_emails
now
moves the email to theTrash
folder (or to the corresponding alias
from the config file). If the target folder is theTrash
folder,
it will instead add theDeleted
flag. Emails are removed with the
Backend::expunge
function.
Fixed
- Fixed
ImapBackend::list_envelopes
pagination. - Fixed synchronization issues for emails without
Message-ID
header
by using theDate
header instead. - Fixed maildir backend perfs issues by enabling the
mmap
feature of
themaildir
crate.
Removed
- Removed the
maildir-backend
cargo feature, it is now included by
default.