pkgs: mailnix: Include password hash in system-users' passwd to enable sending mails
This commit is contained in:
parent
6052072c3f
commit
2db35aed07
1 changed files with 2 additions and 2 deletions
|
|
@ -17,8 +17,8 @@ pub fn generate_static_passdb(cfg: Config) {
|
|||
.accounts
|
||||
.into_iter()
|
||||
.filter(|(_, acc)| acc.is_system_user);
|
||||
for (name, _) in system_accounts {
|
||||
println!("{}:::::::", name);
|
||||
for (name, acc) in system_accounts {
|
||||
println!("{}:{}::::::", name, acc.hashed_password);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue