Displaying 3 results from an estimated 3 matches for "namespace_1".
Did you mean:
namespace_
2008 Oct 16
2
Problem with namespaces
...I'm getting a problem with the hidden namespaces showing up in the
LIST output. Here is a simplified transcript.
The ~/Mail folder contains just two folders. The config given to imapd
is as follows:
MAIL=mbox:/home/cut/jru2/Mail:INBOX=/home/cut/jru2/.mail:INDEX=/var/state/dovecot-indexes/jru2
NAMESPACE_1=mbox:/home/cut/jru2/Mail:INBOX=/home/cut/jru2/.mail:INDEX=/var/state/dovecot-indexes/jru2
NAMESPACE_1_INBOX=1
NAMESPACE_1_LIST=1
NAMESPACE_1_PREFIX=
NAMESPACE_1_SEP=/
NAMESPACE_1_SUBSCRIPTIONS=1
NAMESPACE_1_TYPE=private
NAMESPACE_2=mbox:/home/cut/jru2/Mail:INBOX=/home/cut/jru2/.mail:INDEX=/var/stat...
2007 Feb 09
1
auto-detection of user mailbox type - followup
...er in their home dir
if [ -f .procmailrc -a -d Maildir ]; then
MAIL='maildir:~/Maildir'; export MAIL
else
MAIL='mbox:~/mail:INBOX=~/.mail'; export MAIL
fi
# each namespace defined in the conf file needs to have the mail
# location defined which is set in environment vars
# NAMESPACE_1 etc
NAMESPACE_1=$MAIL; export NAMESPACE_1
NAMESPACE_2=$MAIL; export NAMESPACE_2
NAMESPACE_3=$MAIL; export NAMESPACE_3
NAMESPACE_4=$MAIL; export NAMESPACE_4
#debugging to see what else we can play with
#set >> /tmp/d
exec /usr/local/dovecot/libexec/dovecot/imap
------end imap.sh-----------...
2008 Oct 18
1
deliver not picking up INDEX setting?
...type
of the mailbox at runtime and passes it through using the environment to
imapd. This works great.
However, I can't seem to make deliver do the same. I pass it the same
MAIL and NAMESPACE settings in the environment:
MAIL=maildir:/home/cur/tdb/Maildir:INDEX=/var/state/dovecot-indexes/tdb
NAMESPACE_1=maildir:/home/cur/tdb/Maildir:INDEX=/var/state/dovecot-indexes/tdb
NAMESPACE_1_INBOX=1
NAMESPACE_1_LIST=1
NAMESPACE_1_PREFIX=INBOX.
NAMESPACE_1_SEP=.
NAMESPACE_1_SUBSCRIPTIONS=1
NAMESPACE_1_TYPE=private
(plus some others set by my MTA)
So INDEX appears to be set correctly.
deliver does correctly...