feat: add device message about legacy mvbox_move#7777
Conversation
b2886e8 to
9e5d86d
Compare
|
i drafted a page with more details at deltachat/deltachat-pages#1254 |
|
The test fails because the default for MvboxMove is still Edit: Actually, even though the default is "1" here for compatibility reasons, is disabled in new profiles during configure already. So, we only need to fix the failing Rust test, which should be pretty easy. |
src/sql.rs
Outdated
|
|
||
| /// Adds device message about `mvbox_move` config deprecation | ||
| /// if the user has it enabled. | ||
| async fn add_mvbox_move_deprecation_message(context: &Context) -> Result<()> { |
There was a problem hiding this comment.
Should be called maybe_add_mvbox_move_deprecation_message(), because this is how we usually call functions with a condition inside
|
i went forward and changed then device message, after discussing with @Hocuri |
the failing test is EDIT: if you change the last lines of the test to ... ... the test fails at XXX. so, MvboxMove is actually not set to "0" for that test. |
b81bae3 to
0e7efa1
Compare
0e7efa1 to
fb4c56f
Compare
src/stock_str.rs
Outdated
| ChatUnencryptedExplanation = 230, | ||
|
|
||
| #[strum(props( | ||
| fallback = "You are using the legacy option \"Settings → Advanced → Move automatically to DeltaChat Folder\".\n\nThis option will be removed in a few weeks and you should disable it already today.\n\nIf having chat messages mixed into your inbox is a problem, see https://delta.chat/legacy-move how to move to a dedicated chat profile" |
There was a problem hiding this comment.
"move to a dedicated chat profile" sounds wrong, the profile stays the same but you move to a different relay.
There was a problem hiding this comment.
the outcome by adding a relay and removing the existing one, however, is a dedicated chat profile. which is needed as a shared chat profile is no longer supported
here, however, maybe we can just strike the suffix, so If having chat messages mixed into your inbox is a problem, see https://delta.chat/legacy-move
fb4c56f to
1113e0d
Compare
1113e0d to
1459ba2
Compare

Closes #7774