Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: splitsch on May 12, 2009, 05:35:49 PM

Title: How to allow only one user
Post by: splitsch on May 12, 2009, 05:35:49 PM
Hello !
I installed roundcube on my server, on OVH.
I configure it as a webmail to gmail. (because gmail webmail is not allowed in my company)

The only problem I see is that anyone can log-in through this install...How could I restrict access to the roundcube webmail to anyone except me ?

Thanks,

Splitsch
Title: How to allow only one user
Post by: Julius Caesar on May 14, 2009, 02:57:54 AM
You can set an option in the main.inc.php to prevent new users logging in:

Code: [Select]
// automatically create a new RoundCube user when log-in the first time.
// a new user will be created once the IMAP login succeeds.
// set to false if only registered users can use this service
[B]$rcmail_config['auto_create_user'] = FALSE;[/B]