Skip to content

Commit 1a72711

Browse files
committed
chore: adapt some top-level-mentions of delta
1 parent 3fea829 commit 1a72711

File tree

2 files changed

+9
-16
lines changed

2 files changed

+9
-16
lines changed

README.md

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -49,26 +49,26 @@ $ curl https://sh.rustup.rs -sSf | sh
4949
5050
## Using the CLI client
5151

52-
Compile and run Delta Chat Core command line utility, using `cargo`:
52+
Compile and run the command line utility, using `cargo`:
5353

5454
```
55-
$ cargo run --locked -p deltachat-repl -- ~/deltachat-db
55+
$ cargo run --locked -p deltachat-repl -- ~/profile-db
5656
```
57-
where ~/deltachat-db is the database file. Delta Chat will create it if it does not exist.
57+
where ~/profile-db is the database file. The utility will create it if it does not exist.
5858

5959
Optionally, install `deltachat-repl` binary with
6060
```
6161
$ cargo install --locked --path deltachat-repl/
6262
```
6363
and run as
6464
```
65-
$ deltachat-repl ~/deltachat-db
65+
$ deltachat-repl ~/profile-db
6666
```
6767

6868
Configure your account (if not already configured):
6969

7070
```
71-
Delta Chat Core is awaiting your commands.
71+
Chatmail is awaiting your commands.
7272
> set addr your@email.org
7373
> set mail_pw yourpassword
7474
> configure
@@ -106,11 +106,6 @@ Single#10: yourfriends@email.org [yourfriends@email.org]
106106
Message sent.
107107
```
108108

109-
If `yourfriend@email.org` uses DeltaChat, but does not receive message just
110-
sent, it is advisable to check `Spam` folder. It is known that at least
111-
`gmx.com` treat such test messages as spam, unless told otherwise with web
112-
interface.
113-
114109
List messages when inside a chat:
115110

116111
```
@@ -187,11 +182,9 @@ $ cargo bolero test fuzz_format_flowed --release=false -e afl -s NONE
187182
## Update Provider Data
188183

189184
To add the updates from the
190-
[provider-db](https://github.com/deltachat/provider-db) to the core, run:
191-
192-
```
193-
./src/provider/update.py ../provider-db/_providers/ > src/provider/data.rs
194-
```
185+
[provider-db](https://github.com/chatmail/provider-db) to the core,
186+
check line `REV=` inside `./scripts/update-provider-database.sh`
187+
and then run the script.
195188

196189
## Language bindings and frontend projects
197190

deltachat-repl/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ async fn start(args: Vec<String>) -> Result<(), Error> {
323323
}
324324
});
325325

326-
println!("Delta Chat Core is awaiting your commands.");
326+
println!("Chatmail is awaiting your commands.");
327327

328328
let config = Config::builder()
329329
.history_ignore_space(true)

0 commit comments

Comments
 (0)