//RoundcubeAutoLogin.php
// send parameters with post, its more secure because username and password not shown in browser and logfile
$rcuser=$_REQUEST['rc_user'];
$rcpass=$_REQUEST['rc_pass'];
//rc_user(メールアドレス)と'rc_pass(パスワード)をPOSTでRoundcubeAutoLogin.phpを起動すればいい。
// ----------------------------------
// PLUGINS
// ----------------------------------
// List of active plugins (in plugins/ directory)
$config['plugins'] = array('logout_redirect');
/* %d will be replaced with the default user identity email domain part
* i.e. email@domain.com will replace %d with "domain.com"
**/
$config['logout_redirect_url'] = 'リダイレクト先のURL';