Displaying 20 results from an estimated 1000 matches similar to: "shared folder - ACL"
2012 Sep 07
2
Quota less mailbox with mdbox
Good morning everyone,
I have a little doubt about setting a quotaless mailbox with mdbox.
Currently we have dovecot 2.0.10 with Maildir as mailbox system. We want to migrate to mdbox.
The migration is simple and easy, but there are some configuration settings we cannot set to work properly.
In our dovecot with Maildir we have the namespace INBOX with certain quota and another one without
2011 Jan 03
0
RV: Quota ignore subfolders
Please, any help with this issue.
Thanks.
H?ctor Moreno Blanco.
-----Mensaje original-----
De: dovecot-bounces+hmoreno=gmv.es at dovecot.org [mailto:dovecot-bounces+hmoreno=gmv.es at dovecot.org] En nombre de H?ctor Moreno Blanco
Enviado el: mi?rcoles, 15 de diciembre de 2010 12:48
Para: dovecot at dovecot.org
Asunto: [Dovecot] Quota ignore subfolders
Hello,
We have dovecot 2.0.8 in our
2012 Feb 08
2
vsz_limit
Hello Timo and dovecot teamwork,
We have dovecot 2.0.10 installed with this configuration:
# dovecot -n
# 2.0.10: /usr/local/dovecot/etc/dovecot/dovecot.conf
# OS: Linux 2.6.18-92.1.18.el5 x86_64 Scientific Linux SL release 5.2 (Boron)
auth_cache_size = 500 k
auth_cache_ttl = 1000 secs
disable_plaintext_auth = no
first_valid_uid = 501
lock_method = dotlock
mail_fsync = always
mail_gid = vmail
2011 Dec 09
1
matrix calculation
Hello,
I have a matrix
animal time A01 A02
A d0 -5.4 2.7
A d112 4.6 5.9
A d224 3.9 6.3
B d0 7.1 5.6
B d112 1.5
2009 Jun 23
2
Long to wide format without time variable
Hi all,
I am trying to convert a data set of physician death codings (each individual's cause of death is coded by multiple physicians) from long to wide format, but the "reshape" function doesn't seem to work because it requires a "time" variable to identify the sequence among the repeated observations within individuals. My data set has no order, and different
2009 May 29
1
frequence of patterns in a vector
Dear R users,
Suppose I have a vector that consists of characters like ABC, A02, RCA,
etc., and there are about 700 of possible characters. For example,
x <- c("ABC", "ABC", "ABC", "A02", "ABC", "RCA", "ABC", "ABC")
I'd like to get a frequency matrix that looks something like this:
ABC 6
A02 1
RCA 1
I
2009 Jun 15
2
Dovecot v1.2 assert() in ACL
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
using Dovecot v1.2 changeset: 9126:b745911012bb
ACL config:
acl = vfile
# To let users LIST mailboxes shared by other users, Dovecot needs a
# shared mailbox dictionary. For example:
acl_shared_dict = file:/var/cache/dovecot/shared-mailboxes
telnet localhost imap
0 login ....
1 getacl Sent
* ACL "Sent"
2007 Oct 02
2
plot question
Hello,
I have a question about how to plot a series of data. The folloqing is my
data matrix of n
> n
25p 5p 2.5p 0.5p
16B-E06.g 45379 4383 5123 45
16B-E06.g 45138 4028 6249 52
16B-E06.g 48457 4267 5470 54
16B-E06.g 47740 4676 6769 48
37B-B02.g 42860 6152 19276 72
35B-A02.g 48325 12863 38274 143
35B-A02.g 48410 12806 39013 175
35B-A02.g 48417 9057 40923
2011 Mar 11
3
Large dataset operations
Hello all,
I'm new to R and trying to figure out how to perform calculations on a large dataset (300 000 datapoints). I have already made some code to do this but it is awfully slow. What I want to do is add a new column for each "rep_ " column where I have taken each value and divide it by the mean of all values where "PlateNo" is the same. My data is in the following
2018 Sep 10
2
Byte-wide stores aren't coalesced if interspersed with other stores
Hi,
I have, in postres, a piece of IR that, after inlining and constant
propagation boils (when cooked on really high heat) down to (also
attached for your convenience):
source_filename = "pg"
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-pc-linux-gnu"
define void @evalexpr_0_0(i8* align 8 noalias, i32* align 8 noalias) {
2009 May 22
2
Step by step: Making an R package with Fortran 95
To all. I need your help. The big question is: How do I make an R library
with Fortran 95 files? You may assume that I am a pretty decent programmer
in both R and Fortran. I lay out a scenario and need your help!
I know how to make an ordinary R package and have dabbled with R + Fortran
95 *.dll linking. I do not have a great handle on the whole Makevars file
and whatever else I might need
2004 Aug 20
3
How generate "A01", "A02", ..., "A99"?
Hi,
Anyone can tell me how to generate "A01", "A02", ..., "A99"?
paste("A", 1:99, sep="") generates "A1", "A2",..., "A99". This is not what I want.
Thanks for the help.
-MY
[[alternative HTML version deleted]]
2009 Feb 18
1
v1.2 can't set ACL to empty string
Hi *,
according to RfC4314 the rights argument to the setacl command might be
an empty string ("zero right characters"):
The third argument is a string containing an optional plus ("+") or
minus ("-") prefix, followed by zero or more rights characters.
existing clients (horde in particular) actually use this to remove all
rights from an user.
Currently
2007 Nov 21
1
ave and sd
Dear list,
I'm still trying to calculate the sd for V2 for
each group in V1 if V3 is '0':
> x
V1 V2 V3
1 A01 2.40 0
2 A01 3.40 1
3 A01 2.80 0
4 A02 3.20 0
5 A02 4.20 0
6 A03 2.98 1
7 A03 2.31 0
8 A04 4.20 0
# Work
x$vmean <- ave(x$V2, x$V1, x$V3 == 0, FUN = mean)
# Work
x$vsd2 <- ave(x$V2, x$V1, FUN = sd)
# Doesn't work
x$vsd <- ave(x$V2, x$V1, x$V3
2011 Sep 11
1
setacl on complete mailbox
Hi List,
how can I grant a user full control on another mailbox (the complete
mailbox with all folder and subfolders).
With the setacl command I could do this but first I have to list all
folders and then I have to do one setacl command for each folder.
Is there a command to this in one line? Also for new created folders?
Greetz, Tobias
2013 Feb 26
1
2.2.rc2: problem with acl_shared_dict
Hello,
2.2.rc2, configuration as before:
acl_shared_dict=file:...
The contents of this file is used for e.g. LISTing shared mailboxes.
But even with file and directory beeing world writable, it's not written
into on SETACL commands.
Instead, at least sometimes (it seems to make a difference if GETACL is
used before in the session) the imap process crashes on SETACL or DELETEACL.
Feb 26
2011 Jun 27
1
ACLs: Group ACL adds empty ACL for user of same name, why?
I'm playing around with ACLs, Groups and SOGo on Debian Stable, Dovecot
1.2.15.
If I set an ACL for a group 'developers':
6 setacl "INBOX.Trash" "$developers" "lrsw"
6 OK Setacl complete.
The dovecot-acl file for INBOX.Trash then contains a group setting for the
group, and a user setting for a user of the same name, giving it no
permissions.
2012 Aug 29
1
ACL MySQL dict: to_user==from_user entries
Hi!
We run dovecot 2.1.6 with ACL support and MySQL dict for
shared/shared-boxes/user/$to/$from.
When a user does a SETACL (via IMAP) to himself he is added as $to and
$from to the MySQL dict. Se for example this IMAP conversation:
5 GETACL INBOX
* ACL "INBOX" "user at domain" lrwstipekxacd
5 OK Getacl completed.
6 SETACL INBOX user at domain lrwstipekxacd
6 OK Setacl
2018 Aug 07
2
limit sharing ability to certain users
still the same?
root at buserver:/etc/dovecot# doveadm user test2 at onnet.ch
field valueuserdb lookup: user test2 at onnet.ch doesn't exist
relevant config output from doveconf -n
userdb {
args = /etc/dovecot/dovecot-ldap.conf
driver = ldap
result_success = continue-ok
}
userdb {
args = username_format=%Lu /etc/dovecot/share.passwd
driver = passwd-file
result_failure =
2014 Feb 20
2
Why are ACLs for non-existent mailboxes accepted?
Dovecot 2.2.9-1 accepts SETACL commands that share mailboxes to non-existent
mailboxes. There is no error message. Is this intended behavior?
I think it's bad because clients present a success message when indeed the
intent of the user failed. Typos are hard to catch.