Displaying 8 results from an estimated 8 matches for "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 user
settings. Refer to server log for more information.
The shared mailbox works without any problems...
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]
...Messages" {
special_use = \Sent
}
mailbox Trash {
special_use = \Trash
}
prefix = INBOX/
separator = /
}
passdb {
driver = pam
}
passdb {
args = /etc/dovecot/dovecot-sql.conf.ext
driver = sql
}
plugin {
acl = vfile
acl_shared_dict = file:/var/mail/vhosts/example.com/Sharedbox
}
postmaster_address = postmaster at example.com
protocols = imap pop3
service auth-worker {
user = vmail
}
service auth {
unix_listener /var/spool/postfix/private/auth {
group = postfix
mode = 0666
user = postfix
}
unix_listener auth-userdb {
mode = 0600
user = vmail...
2010 Jun 19
1
Coredump while searching a folder
...= mail
separator =
type = private
}
namespace {
hidden = no
inbox = yes
location =
prefix =
separator = .
type = private
}
namespace {
hidden = yes
inbox = no
list = no
location =
prefix = INBOX.
separator = .
type = private
}
namespace {
location = maildir:/home/sharedbox/Maildir:INDEX=~/Maildir/shared
prefix = shared.
separator = .
type = public
}
namespace {
list = children
location = maildir:/home/%%n/Maildir:INDEX=~/Maildir/shared/%%u
prefix = common.%%u.
separator = .
subscriptions = no
type = shared
}
namespace {
hidden = no
list = yes...
2010 Jan 25
2
still asserts with 1.2.10
...subscriptions: yes
namespace:
type: private
separator: .
inbox: yes
list: yes
subscriptions: yes
namespace:
type: private
separator: .
prefix: INBOX.
list: no
subscriptions: yes
namespace:
type: public
separator: .
prefix: shared.
location: maildir:/home/sharedbox/Maildir/:INDEX=~/Maildir/shared
list: yes
subscriptions: yes
namespace:
type: private
separator: .
prefix: virtual.
location: virtual:~/Maildir/virtual
list: yes
subscriptions: yes
lda:
postmaster_address: postmaster at scheff32.de
mail_plugins: sieve
sendmail_path:...
2010 Jun 19
2
coredump while accessing virtual folder with dovecot 2.0
...ocation =
prefix =
separator = .
subscriptions = yes
type = private
}
namespace {
hidden = yes
inbox = no
list = no
location =
prefix = INBOX.
separator = .
subscriptions = yes
type = private
}
namespace {
hidden = no
inbox = no
list = yes
location = maildir:/home/sharedbox/Maildir:INDEX=~/Maildir/shared
prefix = shared.
separator = .
subscriptions = yes
type = public
}
namespace {
hidden = no
inbox = no
list = children
location = maildir:/home/%%n/Maildir:INDEX=~/Maildir/shared/%%u
prefix = common.%%u.
separator = .
subscriptions = no
type = s...
2019 Mar 15
4
ACL Folders are open but not being displayed ? [2.3.3]
...Messages" {
special_use = \Sent
}
mailbox Trash {
special_use = \Trash
}
prefix = INBOX/
separator = /
}
passdb {
driver = pam
}
passdb {
args = /etc/dovecot/dovecot-sql.conf.ext
driver = sql
}
plugin {
acl = vfile
acl_shared_dict = file:/var/mail/vhosts/example.com/Sharedbox
}
postmaster_address = postmaster at example.com
protocols = imap pop3
service auth-worker {
user = vmail
}
service auth {
unix_listener /var/spool/postfix/private/auth {
group = postfix
mode = 0666
user = postfix
}
unix_listener auth-userdb {
mode = 0600
user = vmail...
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