diff options
author | Joris | 2021-01-03 19:49:00 +0100 |
---|---|---|
committer | Joris | 2021-01-03 19:49:00 +0100 |
commit | 6a03a75674c4f11b56f46161dfb44a5ce8e51341 (patch) | |
tree | adc716e5dc3002e2f25bfd15567025535f35e74b /src/model | |
parent | 406767e9eed613b5a1513ada772e4bfb78e46290 (diff) |
Fuse sendmail_path and mock mail config keys
Diffstat (limited to 'src/model')
-rw-r--r-- | src/model/config.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/model/config.rs b/src/model/config.rs index 8d304e5..2c5455e 100644 --- a/src/model/config.rs +++ b/src/model/config.rs @@ -3,6 +3,5 @@ use serde::Deserialize; #[derive(Clone, Deserialize)] pub struct Config { pub secure_cookies: bool, - pub mock_mails: bool, - pub sendmail_path: String, + pub sendmail_path: Option<String>, } |