similar to: Error: user Initialization failed: namespace configuration error: inbox=yes namespace missing

Displaying 20 results from an estimated 50000 matches similar to: "Error: user Initialization failed: namespace configuration error: inbox=yes namespace missing"

2012 Jun 18
1
migrating sql virtual 1 to 2, namespace configuration error: inbox=yes namespace missing
I'm trying to setup a new server on centos 6, from old dovecot 1.x I installed 'dovecot --version 2.1.1' from dovecot rpm I converted conf file as per migration specs, also, copied sql conf across when I try to retrieve email, log has *1: dovecot.conf -m *2 and sql conf *3 follows *1------------------------------- dovecot: master: Dovecot v2.1.1 starting up (core dumps disabled)
2010 Sep 16
2
default ACL - in namespace's mail root directory ?
I have a namespace like this: namespace { type = private separator = / prefix = location = maildir:/var/ferrari/users/%d/%n:INDEX=/var/ferrari/indexes/3/4/%u:CONTROL=/var/ferrari/indexes/3/4/%u inbox = no list = yes subscriptions = yes } Where do I store "dovecot-acl" as the default ACL ? /Per Jessen, Z?rich
2018 Dec 30
2
BUG: cannot move messages to root mailfolder in namespace "There can be only one namespace with inbox=yes"
I can only move messages to a root namespace folder when specifying inbox=yes. That is strange because it is not even the inbox. I don't even get why it is not by default possible, maybe bug there? You have made the mistake of overloading the use of a parameter inbox=yes (or not creating a parameter to tell folder can be used to move messages to), there is indeed only one folder that gets
2019 Jan 02
2
BUG: cannot move messages to root mailfolder in namespace "There can be only one namespace with inbox=yes"
> >> >> I get this error message from apple mail when I right click and choose >> archive >> "The IMAP command "UID COPY" (to Archive) failed for the mailbox "INBOX" >> with server error: Mailbox isn't selectable" >> > >Did you notice that you have a mailbox called 'Archive' and namespace called
2018 Dec 31
2
BUG: cannot move messages to root mailfolder in namespace "There can be only one namespace with inbox=yes"
> >> >> I can only move messages to a root namespace folder when specifying >> inbox=yes. That is strange because it is not even the inbox. I don't >> even get why it is not by default possible, maybe bug there? >> > >This makes no sense. inbox=yes namespace means the namespace which has >'INBOX' folder as per RFC. With this
2019 Jan 09
2
BUG: cannot move messages to root mailfolder in namespace "There can be only one namespace with inbox=yes"
Hi, this setting might work. The default namespace "inbox" is managing INBOX and defines Special-Use folders on the same hierarchic level as INBOX. There is an extra namespace "4archives" which defines Archive as a mailbox on the same level as INBOX but stored on a different location. Set mailbox attribute auto to your liking. namespace inbox { type = private disabled = no hid
2010 Nov 03
1
automatic un-subscribe ?
Is there a way for an unsubscribe from a previously (auto-)subscribed folder? I'm building an email archiving system, and archived mails are organized by annum. A user will have e.g. 3 years of archive available. Currently that would mean this user would be auto-subscribed to private folders named 2007, 2008, 2009 and current. Starting January 2011 though that would change to 2008, 2009,
2015 Aug 25
2
sieve_after seems to be ignored ?
Per Jessen wrote: > Per Jessen wrote: > >> Michael Kliewe wrote: >> >>> Hi Per, >>> >>> On 25.08.2015 11:40, Per Jessen wrote: >>>> sieve and managesieve are both working fine, have been for years. >>>> Now I want to add a sieve_after script: >>>> >>>> /etc/dovecot/conf.d/90-sieve.conf :
2011 Jul 26
1
sieve, vacation - lda-dupes being ignored?
Environment: dovecot 2.0.9, postfix 2.6, Pigeonhole 0.2.2 I'm in the process of setting up vacation auto-reply for the first time, (it's that time of the year) and it looks like .dovecot.lda-dupes is being updated, but not read (or just ignored). my vacation script: require ["vacation","variables"]; # get hold of the subject if header :matches "Subject"
2015 Aug 25
2
sieve_after seems to ignored ?
Michael Kliewe wrote: > Hi Per, > > On 25.08.2015 11:40, Per Jessen wrote: >> sieve and managesieve are both working fine, have been for years. Now >> I want to add a sieve_after script: >> >> /etc/dovecot/conf.d/90-sieve.conf : >> >> plugin { >> sieve = ~/.dovecot.sieve >> sieve_dir = ~/sieve >> sieve_before = >>
2017 Oct 26
2
Initialization failed: Namespace '': mkdir(/var/www/mail) failed: Permission denied
Hi, I'm running dovecot (v?2.2.9) on ubuntu 14.04 since a long time. I did not change any configuration lately and I'm getting the below error message. /dovecot: lda(www-data): Error: user www-data: Initialization failed: Namespace '':?MKDIR(/VAR/WWW/MAIL)?failed: Permission denied (euid=33(www-data) egid=33(www-data) missing +w perm: /var/www, dir owned by 1001:1001
2018 Nov 30
5
DMARC policies
Hi, I have just started to get dovecot list messages which I had not been receiving until today. How can I opt out (again)? regards, Michal Szymanski On Fri, Nov 30, 2018 at 10:42:22AM +0100, Per Jessen wrote: > Aki Tuomi wrote: > >On 30.11.2018 10.03, Per Jessen wrote: > > > >>Hi AKi > >> > >>I guess my address was re-subscribed then? I was subscribed
2017 Oct 26
2
Initialization failed: Namespace '': mkdir(/var/www/mail) failed: Permission denied
Quoting Steffen Kaiser <skdovecot at smail.inf.fh-brs.de>: > On Thu, 26 Oct 2017, trash at skrilnetz.net wrote: > >> /dovecot: lda(www-data): Error: user www-data: Initialization >> failed: Namespace '':?MKDIR(/VAR/WWW/MAIL)?failed: Permission >> denied (euid=33(www-data) egid=33(www-data) missing +w perm: >> /var/www, dir owned by 1001:1001
2015 Aug 25
2
sieve_after seems to ignored ?
sieve and managesieve are both working fine, have been for years. Now I want to add a sieve_after script: /etc/dovecot/conf.d/90-sieve.conf : plugin { sieve = ~/.dovecot.sieve sieve_dir = ~/sieve sieve_before = sieve_after = ~/sieve/personal.sieve sieve_subaddress_sep = + } I have compiled ~/sieve/personal.sieve to ~/sieve/personal.svbin, but it doesn't seem to be read. Any
2007 Dec 20
1
Recursive solution with for()
Hello, i just ran into the following problem: I wanted to recursively solve equations of the type x_1[t]=x_1[t+1]+beta*x_2[t], and used a for-loop written for(j in c(1:t-1, recursive=TRUE){ ... } This didn't work, so i resolved to writing for(j in c(10,9,...,1){ which worked, but is not terribly efficient. So, what did I do wrong? Thanks in advance, Owe -- Owe Jessen Diplom-Volkswirt
2017 Oct 26
2
Initialization failed: Namespace '': mkdir(/var/www/mail) failed: Permission denied
Quoting Aki Tuomi <aki.tuomi at dovecot.fi>: >> On October 26, 2017 at 5:40 PM trash at skrilnetz.net wrote: >> >> ? Quoting Steffen Kaiser <skdovecot at smail.inf.fh-brs.de>: >> >> On Thu, 26 Oct 2017, trash at skrilnetz.net wrote: >> >> /dovecot: lda(www-data): Error: user www-data: Initialization >> failed: Namespace
2018 Dec 30
0
BUG: cannot move messages to root mailfolder in namespace "There can be only one namespace with inbox=yes"
> On 30 December 2018 at 17:09 Marc Roos <M.Roos at f1-outsourcing.eu> wrote: > > > > I can only move messages to a root namespace folder when specifying > inbox=yes. That is strange because it is not even the inbox. I don't > even get why it is not by default possible, maybe bug there? > This makes no sense. inbox=yes namespace means the namespace which
2019 Jan 04
0
BUG: cannot move messages to root mailfolder in namespace "There can be only one namespace with inbox=yes"
Where is a manual describing how to do this? Archive tree on different storage? ??? Archive/Archives/Archived Messages/Archived mail <- need to store messages in root folder also ??? ??? 2017 ??? ??? ??? projects ??? ??? ??? ??? project ??? ??? ??? ??? project1 ??? ??? ??? ??? project2 ??? ??? ??? ??? project3 ??? ??? ??? ??? project4 ??? ??? ??? ??? project5 ??? ??? ??? Sent Messages ???
2018 Dec 31
0
BUG: cannot move messages to root mailfolder in namespace "There can be only one namespace with inbox=yes"
> On 31 December 2018 at 15:47 Marc Roos <M.Roos at f1-outsourcing.eu> wrote: > > > > > >> > >> I can only move messages to a root namespace folder when specifying > >> inbox=yes. That is strange because it is not even the inbox. I don't > > >> even get why it is not by default possible, maybe bug there? > >>
2018 Nov 30
4
DMARC policies
Same problem here. I clicked the unsubscribed button, but didnt receive the email. Regards Jan On 30. 11. 18 10:50, glide3 at gmail.com wrote: > Same problem here. > > https://dovecot.org/mailman/options/dovecot-news > > Sadly the remind password button / unsubscribe email button click and claim > to send me a email but they don't. > > Assume its due a high