[server] Fix publink kdf

This commit is contained in:
Abhishek Shroff
2025-07-29 09:52:43 +05:30
parent bb8c0e078e
commit 841b240b80
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -140,7 +140,7 @@ func SetupCommand() {
}
if err := core.Initialize(db.Get(ctx), cfg.Core); err != nil {
logger.Fatal().Err(err)
logger.Fatal().Err(err).Msg("failed to initialize core")
}
if err := mail.Initialize(cfg.Mail, logger); err != nil {
if errors.Is(err, mail.ErrEmailNotConfigured) {
+1 -1
View File
@@ -18,7 +18,7 @@ core:
publinks:
password:
# hash is either argon2 or pbkdf2
hash: pbkdf2
kdf: pbkdf2
pbkdf2:
function: sha-256
iterations: 100000