I'd like to make a page to allow people to create new email accounts on a dovecot/postfix server (via imap).
I've seen the php functions imap_open
and imap_createmailbox
, but these functions don't create accounts, it only creates a new directory :/
(and you need the login/password of an existing account to use imap_open
...)
So I'd like to know if it's possible to do this :).
Edit
I'm adding this because my previous message wasn't specific enough. I need a front page to allow the users to register a new mailbox and to check if their wanted mail alias is free or not. That's why most of the web-based admin are not good for me. I don't want the end-users to see the admin panel.