From: Timo Sirainen Date: Tue, 7 Jun 2011 13:17:25 +0000 (+0300) Subject: auth_username_format default changed to %Lu X-Git-Tag: 2.1.alpha1~247 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=062ea54b7775d0c92ed67b9b1f4d93fa8ec80c84;p=thirdparty%2Fdovecot%2Fcore.git auth_username_format default changed to %Lu --- diff --git a/NEWS b/NEWS index 11d9f1f583..4d733a159f 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,8 @@ v2.1.UNSTABLE 2011-xx-xx Timo Sirainen * Plugins now use UTF-8 mailbox names rather than mUTF-7: acl, autocreate, expire, trash, virtual + * auth_username_format default changed to %Lu. If you really want + case sensitive usernames, set it back to empty. + imapc (= IMAP client) storage allows using a remote IMAP server to be used as storage. This allows using Dovecot as a smart (caching) diff --git a/src/auth/auth-settings.c b/src/auth/auth-settings.c index d064c09f73..178db91ca7 100644 --- a/src/auth/auth-settings.c +++ b/src/auth/auth-settings.c @@ -221,7 +221,7 @@ static const struct auth_settings auth_default_settings = { .cache_negative_ttl = 60*60, .username_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@", .username_translation = "", - .username_format = "", + .username_format = "%Lu", .master_user_separator = "", .anonymous_username = "anonymous", .krb5_keytab = "",