Roundcube Community Forum

Release Support => Pending Issues => Topic started by: Neliger on November 08, 2009, 06:50:45 AM

Title: How-to activate HTTP Authentification?
Post by: Neliger on November 08, 2009, 06:50:45 AM
Hi everybody,

First thank you for this webmail :)

I now use RoundCube 0.3.1 (no prefix for this one hehe), and I've seen an "http_authentification" plugin in the release.

My wish is to use an http based authentification for security reasons, just like phpMyAdmin do, does this plugin make it work like this?

Could anyone help me to setup this, I couldn't find any documentation about?

Thanks for reading.
Title: How-to activate HTTP Authentification?
Post by: rosali on November 09, 2009, 12:44:43 AM
./config/main.inc.php

$rcmail_config['plugins'] = array(
  "http_authentication"
);
Title: How-to activate HTTP Authentification?
Post by: Neliger on November 09, 2009, 11:36:36 AM
Thank you so much for your answer rosali :)
Title: How-to activate HTTP Authentification?
Post by: rosali on November 09, 2009, 11:44:43 AM
If you like to use more than one plugin:

$rcmail_config['plugins'] = array(
"http_authentication",
"plugin_name_is_equal_to_folder_of_plugin"
);
Title: How-to activate HTTP Authentification?
Post by: Neliger on November 09, 2009, 11:52:20 AM
Hum, no change, I see the login webpage as usually.

Does it work with a basic http authentification with a .htpasswd user list?

In this case, it's not the best way, cause many roundcube users cannot make this type of email : password list in a .htpasswd file.

I don't know how phpmyadmin do this, but his http authentification isn't list-based, the login/pass is the database users list.