From 1a727119990803c506b8cc070e56a3dc99e3508e Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Thu, 24 Apr 2025 19:31:23 +0200 Subject: [PATCH] chore: adapt some top-level-mentions of delta --- README.md | 23 ++++++++--------------- deltachat-repl/src/main.rs | 2 +- 2 files changed, 9 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 5e0d68fd1..2d6a53698 100644 --- a/README.md +++ b/README.md @@ -49,12 +49,12 @@ $ curl https://sh.rustup.rs -sSf | sh ## Using the CLI client -Compile and run Delta Chat Core command line utility, using `cargo`: +Compile and run the command line utility, using `cargo`: ``` -$ cargo run --locked -p deltachat-repl -- ~/deltachat-db +$ cargo run --locked -p deltachat-repl -- ~/profile-db ``` -where ~/deltachat-db is the database file. Delta Chat will create it if it does not exist. +where ~/profile-db is the database file. The utility will create it if it does not exist. Optionally, install `deltachat-repl` binary with ``` @@ -62,13 +62,13 @@ $ cargo install --locked --path deltachat-repl/ ``` and run as ``` -$ deltachat-repl ~/deltachat-db +$ deltachat-repl ~/profile-db ``` Configure your account (if not already configured): ``` -Delta Chat Core is awaiting your commands. +Chatmail is awaiting your commands. > set addr your@email.org > set mail_pw yourpassword > configure @@ -106,11 +106,6 @@ Single#10: yourfriends@email.org [yourfriends@email.org] Message sent. ``` -If `yourfriend@email.org` uses DeltaChat, but does not receive message just -sent, it is advisable to check `Spam` folder. It is known that at least -`gmx.com` treat such test messages as spam, unless told otherwise with web -interface. - List messages when inside a chat: ``` @@ -187,11 +182,9 @@ $ cargo bolero test fuzz_format_flowed --release=false -e afl -s NONE ## Update Provider Data To add the updates from the -[provider-db](https://github.com/deltachat/provider-db) to the core, run: - -``` -./src/provider/update.py ../provider-db/_providers/ > src/provider/data.rs -``` +[provider-db](https://github.com/chatmail/provider-db) to the core, +check line `REV=` inside `./scripts/update-provider-database.sh` +and then run the script. ## Language bindings and frontend projects diff --git a/deltachat-repl/src/main.rs b/deltachat-repl/src/main.rs index 52a7a8754..8d3dfc3eb 100644 --- a/deltachat-repl/src/main.rs +++ b/deltachat-repl/src/main.rs @@ -323,7 +323,7 @@ async fn start(args: Vec) -> Result<(), Error> { } }); - println!("Delta Chat Core is awaiting your commands."); + println!("Chatmail is awaiting your commands."); let config = Config::builder() .history_ignore_space(true)