aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2024-01-22 13:59:58 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2024-01-22 13:59:58 +0100
commit1f449dc7e97db34c4aa4cf08eb7cc6269905709f (patch)
tree26eb2571a70587e8fe8acacb17a97ac1d377314b
parent4eebc2cb7d08570d33251934ae40425dd855aa21 (diff)
downloadaerogramme-1f449dc7e97db34c4aa4cf08eb7cc6269905709f.tar.gz
aerogramme-1f449dc7e97db34c4aa4cf08eb7cc6269905709f.zip
Rework some details (env var, cargo desc)
-rw-r--r--Cargo.toml2
-rw-r--r--src/main.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 06eef6f..a865170 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,7 @@ version = "0.2.0"
authors = ["Alex Auvolat <alex@adnab.me>", "Quentin Dufour <quentin@dufour.io>"]
edition = "2021"
license = "EUPL-1.2"
-description = "Encrypted mail storage over Garage"
+description = "A robust email server"
[dependencies]
# async runtime
diff --git a/src/main.rs b/src/main.rs
index 3baa8e2..a7462bc 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -33,7 +33,7 @@ struct Args {
#[clap(long)]
dev: bool,
- #[clap(short, long, env = "CONFIG_FILE", default_value = "aerogramme.toml")]
+ #[clap(short, long, env = "AEROGRAMME_CONFIG", default_value = "aerogramme.toml")]
/// Path to the main Aerogramme configuration file
config_file: PathBuf,
}