]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: Default for auth_cache_negative_ttl was supposed to be 1 hour, not disabled.
authorTimo Sirainen <tss@iki.fi>
Mon, 18 Oct 2010 14:38:58 +0000 (15:38 +0100)
committerTimo Sirainen <tss@iki.fi>
Mon, 18 Oct 2010 14:38:58 +0000 (15:38 +0100)
src/auth/auth-settings.c

index 76ab76d7de4be73b9e749ef5bf17ccea915378e7..784a6aad39426b23b36f522690a1f41a88ab2f08 100644 (file)
@@ -216,7 +216,7 @@ static const struct auth_settings auth_default_settings = {
        .default_realm = "",
        .cache_size = 0,
        .cache_ttl = 60*60,
-       .cache_negative_ttl = 0,
+       .cache_negative_ttl = 60*60,
        .username_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@",
        .username_translation = "",
        .username_format = "",