When filling postmaster queue, include all messages, not just unsent. Bug 727679.

* src/engine/imap-db/outbox/smtp-outbox-folder.vala: Remove where clause
  from prefill query.
This commit is contained in:
Michael Gratton 2014-12-06 15:45:17 +11:00 committed by Michael James Gratton
parent d5277fea3b
commit f36d6804e0

View file

@ -146,7 +146,6 @@ private class Geary.SmtpOutboxFolder : Geary.AbstractLocalFolder, Geary.FolderSu
Db.Statement stmt = cx.prepare("""
SELECT id, ordering, message
FROM SmtpOutboxTable
WHERE sent = 0
ORDER BY ordering
""");