From: Timo Sirainen Date: Fri, 1 Oct 2010 14:01:09 +0000 (+0100) Subject: acl: Reverted last change. It still allows reading the default ACL from .DEFAULT... X-Git-Tag: 2.0.5~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=360e3e43d296945b60e53348b61d2aa95a0a3dd4;p=thirdparty%2Fdovecot%2Fcore.git acl: Reverted last change. It still allows reading the default ACL from .DEFAULT file. --- diff --git a/src/plugins/acl/acl-backend-vfile.c b/src/plugins/acl/acl-backend-vfile.c index 447ec6b92e..9c5b2cd560 100644 --- a/src/plugins/acl/acl-backend-vfile.c +++ b/src/plugins/acl/acl-backend-vfile.c @@ -173,11 +173,8 @@ acl_backend_vfile_object_init(struct acl_backend *_backend, vname = t_str_new(128); mail_namespace_get_vname(ns, vname, name); - if (str_len(vname) > 0) { - aclobj->global_path = - i_strconcat(backend->global_dir, "/", - str_c(vname), NULL); - } + aclobj->global_path = i_strconcat(backend->global_dir, "/", + str_c(vname), NULL); } T_END; dir = acl_backend_vfile_get_local_dir(_backend, name);