How do I make the adduser script create the appropriate Maildir directory of the new user?
I have an Ubuntu server running postfix. When I first installed it was deliverying emails to /var/mail/<user>/.
I've changed to use /home/<user>/Maildir by putting home_mailbox = Maildir/ on /etc/postfix/main.cf.
At first I didn't worked because there wasn't a Maildir directory for my user (email was delivered back on my provider with the error).
Then I created the Maildir directory, with the subdirectories new, cur and tmp as Maildir uses. Worked fine after that.
But this way I would have to manually create those directories everytime I add an user. Is there anyway to make the adduser script (that is what I use) to create those for me?