search for: sharedboxes

Displaying 8 results from an estimated 8 matches for "sharedboxes".

Did you mean: sharedbox
2010 Jun 20
1
system_groups_user=%u seem not to be considered by deliver
Hi, while trying to deliver a mail I got the following error: Jun 20 21:57:09 shrike dovecot: lda(matthias): Error: user matthias: Initialization failed: Namespace 'shared.': stat(/home/sharedbox/Maildir) failed: Permission denied (euid=1014(matthias) egid=1022(scheff32) missing +x perm: /home/sharedbox, euid is not dir owner) Jun 20 21:57:09 shrike dovecot: lda(matthias): Fatal: Invalid
2016 Apr 04
5
enable/disable shared namespace in passdb
hello all i'm currently using passdb to enable and disable various namespaces conditionally : for example the following work namespace/inbox/inbox=no namespace/legacy_pfso/disabled=no namespace/legacy_pfso/inbox=no namespace/local_storage/disabled=no namespace/comboINBOX_local_pfso/disabled=no namespace/comboINBOX_local_pfso/inbox=yes but i can't get things like the following to work
2019 Apr 21
1
mbsync updating new emails but dovecot not reading them ? [2.3.3]
Hi, Once again sincere apologies for emailing here. My dovecot isn't reading the newly updated e-mails from the mbsync. I have tried running doveadm -D -v force-resync -u email1 at example.com "Inbox/Public/Other Users/user1 at example.com" Plese help if possible. Highly appreciate if someone could help here... Below is the debug log :- Debug: Loading modules from directory:
2010 Jun 19
1
Coredump while searching a folder
Hi, while searching through the message bodies in a real folder I got a coredump. I used the master user for this operation. dovecot.index* files have been removed before I started this operation. This looks a bit different to my previous report. Coredump: Program terminated with signal 6, Aborted. [New process 1628] #0 0x00002b5e82a8ced5 in raise () from /lib/libc.so.6 #0 0x00002b5e82a8ced5
2010 Jan 25
2
still asserts with 1.2.10
Hi, I've still asserts while accessing virtual folders: Program terminated with signal 6, Aborted. [New process 6714] #0 0xf7e57556 in raise () from /lib/libc.so.6 #0 0xf7e57556 in raise () from /lib/libc.so.6 No symbol table info available. #1 0xf7e58d78 in abort () from /lib/libc.so.6 No symbol table info available. #2 0x080f2eb5 in default_fatal_finish (type=<value optimized
2010 Jun 19
2
coredump while accessing virtual folder with dovecot 2.0
Hi, I get a core dump with 2.0.beta6 (573cb66e9180) when I access virtual folders with the master user. Since ACLs are active I have to set a global ACL in .DEFAULTS to access all folders. Coredump: Core was generated by `dovecot/imap'. Program terminated with signal 11, Segmentation fault. [New process 15910] #0 0x00002afabdfbd6a2 in virtual_config_free (mbox=0x10a34128) at
2019 Mar 15
4
ACL Folders are open but not being displayed ? [2.3.3]
Hey, Could someone help figure out whats wrong with my config based on the debug below? What I am trying to achieve is to get email1 at example.com to read emails in the Public directory that is stored on /run/media/computer/Storage/Email/fastmail/Archive with the preface Public/Archive . The ACL has been set for anyone with permissions to lookup,read,write as shown below:- doveadm acl get -u
2008 Dec 10
2
assert with zlib and (maybe) fts
Hi, I compressed a folder with the following script: ... for i in *.*.*; do file $i | grep bzip2 >/dev/null 2>&1 if [ $? -ne 0 ]; then echo "Compress: $i" cat "$i" | bzip2 -9 > ../tmp/$i if [ $? -eq 0 ]; then mv ../tmp/$i $i fi else