changeset 15890:c3d3d3360425

mail_shared_explicit_inbox: Switched the default from "yes" to "no".
author Timo Sirainen <tss@iki.fi>
date Fri, 22 Feb 2013 13:21:09 +0200
parents 68c9d01ae5d2
children 4eea2224e16b
files NEWS doc/example-config/conf.d/10-mail.conf src/lib-storage/mail-storage-settings.c
diffstat 3 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS	Fri Feb 22 13:05:21 2013 +0200
+++ b/NEWS	Fri Feb 22 13:21:09 2013 +0200
@@ -14,6 +14,7 @@
 	* pop3_lock_session=yes now uses a POP3-only dovecot-pop3-session.lock
 	  file instead of actually locking the mailbox (and causing
 	  IMAP/LDA/LMTP to wait for the POP3 session to close).
+	* mail_shared_explicit_inbox setting's default switched to "no".
 
 	+ Implemented IMAP MOVE and BINARY extensions
 	+ Implemented IMAP CATENATE, URLAUTH and URLAUTH=BINARY extensions
--- a/doc/example-config/conf.d/10-mail.conf	Fri Feb 22 13:05:21 2013 +0200
+++ b/doc/example-config/conf.d/10-mail.conf	Fri Feb 22 13:21:09 2013 +0200
@@ -98,7 +98,7 @@
   #list = children
 #}
 # Should shared INBOX be visible as "shared/user" or "shared/user/INBOX"?
-#mail_shared_explicit_inbox = yes
+#mail_shared_explicit_inbox = no
 
 # System user and group used to access mails. If you use multiple, userdb
 # can override these by returning uid or gid fields. You can use either numbers
--- a/src/lib-storage/mail-storage-settings.c	Fri Feb 22 13:05:21 2013 +0200
+++ b/src/lib-storage/mail-storage-settings.c	Fri Feb 22 13:21:09 2013 +0200
@@ -81,7 +81,7 @@
 	.mail_debug = FALSE,
 	.mail_full_filesystem_access = FALSE,
 	.maildir_stat_dirs = FALSE,
-	.mail_shared_explicit_inbox = TRUE,
+	.mail_shared_explicit_inbox = FALSE,
 	.lock_method = "fcntl:flock:dotlock",
 	.pop3_uidl_format = "%08Xu%08Xv"
 };