in a users Maildir
/home/e-smith/files/users/USER/Maildir
there are 2 directories proceeded by a semi-colon
;INBOX and ;junkmail
I assume ;junkmail is where spamassassin saves mail identified as spam.
I have no idea what ;INBOX may be used for....
Also, how would one access these directories as they are proceeded by the ';'???
-JBaker[/b]
From what I've learnt about Dovecot so far, it uses ';' as a hierarchy separator for mailboxes. So if you create mailbox 'fred' there'll be a directory ';fred', if you create a sub-folder 'bill', that will use ';fred;bill' - it won't create a sub-folder at the Linux level.
Furthermore, ;INBOX just seems to be a placeholder, as the actual inbox messages are in cur, new, & tmp directly under Maildir.
To access these directories from the command line just use quotes, or precede the ; with \ (e.g. \;junkmail).
HTH