Hi,<br>
<br>
I figured out my issue, in my database query for the mail dir, I was
grabbing the home column instead of the mail column. Once I changed the
name of the column returned it started working. <br>
<br>
Currently my queries are like such:<br>
<br>
password_query = SELECT `passwd` FROM users WHERE userid = '%u'<br>
<br>
and <br>
<br>
user_query = SELECT concat('/usr/local/virtual/',maildir, '.INBOX') as
mail, 101 as uid, 103 as gid FROM users WHERE userid = '%u'<br>
<br>
My question now is currently I'm saving mail like this: mailroot/domain/user/.INBOX<br>
<br>
I assume I should be able to save it as:<br>
<br>
mailroot/domain/user/<br>
<br>
the .INBOX is superfluous, is that correct, or will imap want to make directories at the same level at inbox?<br>
<br>
Thanks,<br>
-Micah <br>
<br>