This introduces a background account synchronizer into Geary that prefetches email folder-by-folder to a user-configurable epoch. The current default is 15 days. Additional work to make this user-visible is coming, in particular with The primary purpose for this feature is to allow "full" conversations (#4293), which needs more of the mailbox stored locally to do searching.
16 lines
488 B
Vala
16 lines
488 B
Vala
/* Copyright 2011-2012 Yorba Foundation
|
|
*
|
|
* This software is licensed under the GNU Lesser General Public License
|
|
* (version 2.1 or later). See the COPYING file in this distribution.
|
|
*/
|
|
|
|
private class Geary.SmtpOutboxEmailProperties : Geary.EmailProperties {
|
|
public SmtpOutboxEmailProperties(DateTime date_received, long total_bytes) {
|
|
base(date_received, total_bytes);
|
|
}
|
|
|
|
public override string to_string() {
|
|
return "SmtpOutboxProperties";
|
|
}
|
|
}
|
|
|