Commit Graph

1155 Commits (5c204d3b69c674a5d412ce8b1d42a3e93ad6d14e)
 

Author SHA1 Message Date
Manos Pitsidianakis 5c204d3b69
rustfmt.toml: set edition = 2018 4 years ago
Manos Pitsidianakis b3876113aa
BackendOp: return future in as_bytes() 4 years ago
Manos Pitsidianakis 4721073bc3
Rename jobs1 to jobs 4 years ago
Manos Pitsidianakis 1ddde9ccba
BackendOp: change fetch_flags() retval to future 4 years ago
Manos Pitsidianakis ed3e66cedf
BackendOp: remove description() method 4 years ago
Manos Pitsidianakis e06308fed2
MailBackend: change more methods to Futures 4 years ago
Manos Pitsidianakis 03522c0298
melib: Fixup warnings in imap_async, maildir 4 years ago
Manos Pitsidianakis 6553d8ec44
imap_saync: fix max_uid invariant violation 4 years ago
Manos Pitsidianakis adb9061adc
imap_async: add force parameter to {examine,select}_mailbox() 4 years ago
Manos Pitsidianakis 21051fa862
JobRequest: add more variants 4 years ago
Manos Pitsidianakis 42419327f8
imap_async: add operations 4 years ago
Manos Pitsidianakis c82367e00d
BackendOp: Change set_{flag,tag} methods 4 years ago
Manos Pitsidianakis 8c1fc031e5
BackendOp: change fetch_flags retval to Result<Flag> 4 years ago
Manos Pitsidianakis ee10cdbcd5
Make get_async() return a Stream 4 years ago
Manos Pitsidianakis a38764f490
Add somewhat-working async IMAP backend 4 years ago
Manos Pitsidianakis b72a1ca6d8
WIP maildir async 4 years ago
Manos Pitsidianakis 4f3a98f90a
Add job executor 4 years ago
Manos Pitsidianakis de201b5d6c
imap: create message_sequence cache
Close #45 (hopefully)
4 years ago
Manos Pitsidianakis f8b84a192c
imap: add current_mailbox enum MailboxSelection
Add enum to track the currently selected Mailbox in the IMAP connection
4 years ago
Manos Pitsidianakis ca7bbd9de4
Fix pasted text not being registered immediately
Input thread reading from stdin should continue reading after receiving
the magic BRACKET START sequence until receiving the BRACKET END
sequence.
4 years ago
Manos Pitsidianakis 58aff83b95
Change "Draft saved" to "Message saved" 4 years ago
Manos Pitsidianakis c0c19268ee
Add ProgressSpinner widget 4 years ago
Manos Pitsidianakis 5e2576161a
meli.conf.5: update toml standard link 4 years ago
Manos Pitsidianakis def3997d6f
email/parser.rs: replace "FIXME" errors 4 years ago
Manos Pitsidianakis 91badc3960
imap: count message totals using HashSet
This way it's easy to know if a flag change in an envelope requires the
unseen total of a mailbox to change.
4 years ago
Manos Pitsidianakis c4bc7be5d1
Tabbed: correctly pass events to other children
When passing an event to the focused tab and it is not handled, the
other children weren't then each called to see if they handle the
event. That led to refresh events etc not being processed by the mail
list tab if it wasn't focused.
4 years ago
Manos Pitsidianakis 4ae7a57d45
Add save-draft command 4 years ago
Manos Pitsidianakis 64e5d4af4f
imap/untagged.rs: properly queue refresh events
RefreshEvents where added in self.uid_store.refresh_events queue though
ImapConnection has a method add_refresh_event() that drains the queue if
possible
4 years ago
Manos Pitsidianakis 2a0ad92374
imap: don't send CRLF twice when sending LITERAL
This results in BAD IMAP errors, as a CRLF results in an empty command.
4 years ago
Manos Pitsidianakis d7444a5b19
imap: recognize EXPUNGE events 4 years ago
Manos Pitsidianakis bfbaf3d617
Utilize EnvelopeRemove events
EnvelopeRemove events were not ever used in the UI
4 years ago
Manos Pitsidianakis efb06be09b
melib: return Result<_> from operation()
Envelope might have been deleted before main thread requests an
operation, which is a race condition.
4 years ago
Manos Pitsidianakis d827ea1001
imap/connection.rs: debug print NO/BAD responses 4 years ago
Manos Pitsidianakis fda947f8fb
imap.rs: fix two warnings 4 years ago
Manos Pitsidianakis b946b61cf1
terminal/cells.rs: remove unused variables 4 years ago
Manos Pitsidianakis 6f6f795fd5
imap: use uidnext for fetching all messages in get() 4 years ago
Manos Pitsidianakis c08ceae97c
imap: add status_response() parser 4 years ago
Manos Pitsidianakis c7835ccc13
imap: add mailbox_token() parser 4 years ago
Manos Pitsidianakis c2300e8ea0
imap: update is_online flag on successful read/write 4 years ago
Manos Pitsidianakis eca1921a8a
collection: add update_flags() method
On NewFlags events, the threads in Collection were not being updated, so
if an envelope's seen status was toggled the thread's unseen count was
  not updated, and thus not reflected in the UI even though the
  envelope's new flags event was registered properly.
4 years ago
Manos Pitsidianakis cac21a279b
melib: Remove dead dependencies 4 years ago
Manos Pitsidianakis a6a30f3adb
conf/accounts.rs return Result on init() 4 years ago
Manos Pitsidianakis 688a798fa2
XDGNotifications: increase rate limiting
3 notifications evenly spread per second did not make any sense.
Increase it to 1000 and see if it's ok
4 years ago
Manos Pitsidianakis 6bdd9b07bb
bin: remove unwrap from timer thread 4 years ago
Manos Pitsidianakis 01e1f4111c
imap: make hostname optional in ENVELOPE address parser 4 years ago
Manos Pitsidianakis 79b2e20557
imap: add message to Badcharset, Permanentflags responses 4 years ago
Manos Pitsidianakis 3703ae762e
imap: show reason for error on invalid uid fetch response 4 years ago
Manos Pitsidianakis 7d359624fe
imap: early return on empty mailbox in get() 4 years ago
Manos Pitsidianakis af4ad19169
imap: add chain_err_summary error descriptions 4 years ago
Manos Pitsidianakis ca11c8e474
Remove useless debug prints 4 years ago