aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
}