mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-03-18 02:23:19 -05:00
only validate SMTP_FROM if necessary (#5442)
This commit is contained in:
parent
952992c85b
commit
2903a3a13a
1 changed files with 1 additions and 1 deletions
|
@ -942,7 +942,7 @@ fn validate_config(cfg: &ConfigItems) -> Result<(), Error> {
|
|||
}
|
||||
}
|
||||
|
||||
if !is_valid_email(&cfg.smtp_from) {
|
||||
if (cfg.smtp_host.is_some() || cfg.use_sendmail) && !is_valid_email(&cfg.smtp_from) {
|
||||
err!(format!("SMTP_FROM '{}' is not a valid email address", cfg.smtp_from))
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue