2012-09-15 13:15:22 +00:00
|
|
|
f{,data}sync() usage could be optimized by batching the calls.
|
|
|
|
|
2010-02-06 09:48:11 +00:00
|
|
|
add some marker about message being already [remotely] trashed.
|
|
|
|
real transactions would be certainly not particularly useful ...
|
|
|
|
|
2012-08-26 13:17:38 +00:00
|
|
|
make sync_chans() aware of servers, so a bad server (e.g., wrong password)
|
|
|
|
won't cause the same error message for every attached store.
|
2010-02-06 09:48:11 +00:00
|
|
|
|
2013-12-08 21:29:15 +00:00
|
|
|
add support for more authentication methods: oauth, ntlm, ... use SASL?
|
|
|
|
possibly by calling an external command. that might be overkill, and
|
|
|
|
wouldn't be very user-friendly, though.
|
|
|
|
|
2012-08-26 13:17:38 +00:00
|
|
|
make SSL (connect) timeouts produce a bit more than "Unidentified socket error".
|
2010-02-06 09:48:11 +00:00
|
|
|
|
2012-08-26 13:17:38 +00:00
|
|
|
network timeout handling in general would be a good idea.
|
2013-12-08 21:29:15 +00:00
|
|
|
lock timeout handling, too.
|
|
|
|
|
|
|
|
add message expiration based on arrival date (message date would be too
|
|
|
|
unreliable). MaxAge; probably mutually exclusive to MaxMessages.
|
|
|
|
|
|
|
|
add alternative treatments of expired messages. ExpiredMessageMode: Prune
|
|
|
|
(delete messages like now), Keep (just don't sync) and Archive (move to
|
|
|
|
separate folder - ArchiveSuffix, default .archive).
|
2010-02-06 09:48:11 +00:00
|
|
|
|
2012-08-26 13:17:38 +00:00
|
|
|
unify maildir locking between the two UID storage schemes.
|
|
|
|
re-opening the db may be expensive, so keep it open.
|
|
|
|
but keeping lock for too long (e.g., big message downloads) may block other
|
|
|
|
clients. auto-release lock after 500 ms?
|
2010-02-06 09:48:11 +00:00
|
|
|
|
2012-08-26 13:17:38 +00:00
|
|
|
kill the concept of an INBOX, it is a relic from single-channel operation.
|
|
|
|
if somebody needs it, he can have two stores with different Paths. the path
|
|
|
|
can name a single (in-)box (curr. broken with maildir). an empty box name
|
|
|
|
actually means empty, so the IMAP mailbox should use INBOX for Path (can't
|
|
|
|
make that the default, as it would mess up the NAMESPACE).
|
2010-02-06 09:48:11 +00:00
|
|
|
|
2013-12-08 21:29:15 +00:00
|
|
|
add regexp-based mailbox path rewriting to the drivers. user would provide
|
|
|
|
expressions for both directions. every transformation would be immediately
|
|
|
|
verified with the inverse transform. PathDelimiter and Flatten would become
|
|
|
|
special cases of this.
|
|
|
|
|
2010-02-06 09:48:11 +00:00
|
|
|
add daemon mode. primary goal: keep imap password in memory.
|
|
|
|
also: idling mode.
|
2004-09-08 16:37:36 +00:00
|
|
|
|
2010-02-06 09:48:11 +00:00
|
|
|
parallel fetching of multiple mailboxes.
|
|
|
|
|
2013-12-08 21:29:15 +00:00
|
|
|
imap_set_flags(): group commands for efficiency, don't call back until
|
|
|
|
imap_commit().
|
2010-02-06 09:48:11 +00:00
|
|
|
|
|
|
|
add streaming from fetching to storing.
|
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
handle custom flags (keywords).
|
2003-02-27 18:41:54 +00:00
|
|
|
|
2013-12-08 21:29:15 +00:00
|
|
|
make use of IMAP CONDSTORE extension (rfc4551; CHANGEDSINCE FETCH Modifier);
|
|
|
|
make use of IMAP QRESYNC extension (rfc5162) to avoid SEARCH to find vanished
|
|
|
|
messages.
|
2003-02-27 18:41:54 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
use MULTIAPPEND and FETCH with multiple messages.
|
2001-01-16 19:45:08 +00:00
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
create dummies describing MIME structure of messages bigger than MaxSize.
|
|
|
|
flagging the dummy would fetch the real message. possibly remove --renew.
|
2010-02-06 09:48:11 +00:00
|
|
|
note that all interaction needs to happen on the slave side probably.
|
2002-01-16 19:47:28 +00:00
|
|
|
|
2013-12-08 21:29:15 +00:00
|
|
|
propagate folder deletions. for safety, the target must be empty.
|
|
|
|
|
2004-03-27 16:07:20 +00:00
|
|
|
don't SELECT boxes unless really needed; in particular not for appending,
|
|
|
|
and in write-only mode not before changes are made.
|
2010-02-06 09:48:11 +00:00
|
|
|
problem: UIDVALIDITY change detection is delayed, significantly complicating
|
|
|
|
matters.
|
2002-01-28 19:34:22 +00:00
|
|
|
|
2003-02-27 18:41:54 +00:00
|
|
|
possibly use ^[[1m to highlight error messages.
|
2004-03-27 16:07:20 +00:00
|
|
|
|
2013-12-08 21:29:15 +00:00
|
|
|
consider alternative approach to trashing: instead of the current trash-before-
|
|
|
|
expunge done by mbsync, let MUAs do the trashing (as modern ones typically do).
|
|
|
|
mbsync wouldn't do any trashing by itself, but should track the moves for
|
|
|
|
optimization. additionally, there should be a mode to move trashed messages to
|
|
|
|
the remote store. TrashMode Internal|External, AbsorbRemoteTrash.
|
|
|
|
a yet different approach to trashing is treating the trash like a normal mailbox.
|
|
|
|
however, this implies a huge working set.
|
|
|
|
|
|
|
|
consider optional use of messages-id (and X-GM-MSGID):
|
|
|
|
- detection of message moves between folders
|
|
|
|
- recovery from unmotivated UIDVALIDITY change, or total loss of sync state
|