summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-12-29 13:15:33 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-12-29 13:15:33 +0100
commit94b72c17294ebb09ad9635129cdf4d0237dd7377 (patch)
tree7b0298c6a3cdcc6b752d5ab4120e91881bedc499 /common
parent93250cfa247e223ea37f5ede29615b5a2969d8b0 (diff)
downloadsink-94b72c17294ebb09ad9635129cdf4d0237dd7377.tar.gz
sink-94b72c17294ebb09ad9635129cdf4d0237dd7377.zip
Change the default for fullPayloadAvailable
When creating new messages the default should be that the full payload is available. Not having the payload available is a specialcase used by the imap resource.
Diffstat (limited to 'common')
-rw-r--r--common/domain/mail.fbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/domain/mail.fbs b/common/domain/mail.fbs
index 2099692..d1205df 100644
--- a/common/domain/mail.fbs
+++ b/common/domain/mail.fbs
@@ -22,7 +22,7 @@ table Mail {
22 sent:bool = false; 22 sent:bool = false;
23 messageId:string; 23 messageId:string;
24 parentMessageId:string; 24 parentMessageId:string;
25 fullPayloadAvailable:bool = false; 25 fullPayloadAvailable:bool = true;
26} 26}
27 27
28root_type Mail; 28root_type Mail;