Squashed commit of many patches that merged Eric's outbox patch as well as additional changes to upgrade the database rather than require it be wiped and some refactoring suggested by the Outbox implementation. Also updated Outbox to be fully atomic via Transactions.
15 lines
394 B
Vala
15 lines
394 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.OutboxEmailProperties : Geary.EmailProperties {
|
|
public OutboxEmailProperties() {
|
|
}
|
|
|
|
public override string to_string() {
|
|
return "OutboxProperties";
|
|
}
|
|
}
|
|
|