diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-12-29 13:15:33 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-12-29 13:15:33 +0100 |
commit | 94b72c17294ebb09ad9635129cdf4d0237dd7377 (patch) | |
tree | 7b0298c6a3cdcc6b752d5ab4120e91881bedc499 | |
parent | 93250cfa247e223ea37f5ede29615b5a2969d8b0 (diff) | |
download | sink-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.
-rw-r--r-- | common/domain/mail.fbs | 2 |
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 | ||
28 | root_type Mail; | 28 | root_type Mail; |