This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 2f7bc3d2beb70dc557d0eb09158eda2d8527dfbc Author: LanKhuat <[email protected]> AuthorDate: Mon Apr 13 11:39:26 2020 +0700 JAMES-3143 Fix typo in Cassandra message inconsistency ADR --- src/adr/0022-cassandra-message-inconsistency.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adr/0022-cassandra-message-inconsistency.md b/src/adr/0022-cassandra-message-inconsistency.md index ac366a7..7a83d55 100644 --- a/src/adr/0022-cassandra-message-inconsistency.md +++ b/src/adr/0022-cassandra-message-inconsistency.md @@ -60,7 +60,7 @@ The message is UNSEEN in IMAP Adopt `imapUidTable` as a source of truth. Because `messageId` allows tracking changes to messages accross mailboxes upon copy and moves. Furthermore, that is the table on which conditional flags updates are performed. -All writes will be performed to `messageIdTable` then performed on `imapUidTable` if successful. +All writes will be performed to `imapUidTable` then performed on `messageIdTable` if successful. We thus need to modify CassandraMessageMapper 'add' + 'copy' to first write to the source of truth (`imapUidTable`) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
