geary/src/engine/impl/outbox/smtp-outbox-email-properties.vala
Eric Gregory 6963063fd5 Send outgoing messages via Outbox folder: Closes #4569
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.
2012-06-13 11:54:20 -07:00

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";
}
}