Roundcube Community Forum

 

hmail plugins

Started by TechMonster, August 26, 2012, 10:29:35 PM

Previous topic - Next topic

TechMonster

With the new roundcube I can't get the hmail plugins to display. When you go the account administration tab it just displays a blank screen. Does on both classic and larry.
Any idea's why?

TechMonster


tparvais

indeed, was also unclear for me.

you have to configure the settings plugin to display these hmail plugins

/***********************
* settings navigation *
***********************/

// navigation config (requires plugin settings @website http://myroundcube/googlecode.com)
$GLOBALS['settingsnav']['moreuserinfo'] = array('part' => '', 'label' => 'userinfo', 'href' => './?_task=settings&_action=plugin.moreuserinfo&_framed=1', 'onclick' => '', 'descr' => 'moreuserinfo');
// navigation config (requires plugin settings @website http://myroundcube.googlecode.com)
$GLOBALS['settingsnav']['accounts'] = array('part' => '', 'label' => 'remoteaccounts', 'href' => './?_task=settings&_action=plugin.accounts&_framed=1', 'onclick' => '', 'descr' => 'accounts');
// navigation config (requires plugin settings @website http://myroundcube.googlecode.com)
$GLOBALS['settingsnav']['hmail_autoresponder'] = array('part' => '', 'label' => 'autoresponder', 'href' => './?_task=settings&_action=plugin.hmail_autoresponder&_framed=1', 'onclick' => '', 'descr' => 'hmail_autoresponder');
// navigation config (requires plugin settings @website http://myroundcube.googlecode.com)
$GLOBALS['settingsnav']['hmail_forwarding'] = array('part' => '', 'label' => 'forwarding', 'href' => './?_task=settings&_action=plugin.hmail_forwarding&_framed=1', 'onclick' => '', 'descr' => 'hmail_forwarding');
// navigation config (requires plugin settings @website http://myroundcube.googlecode.com)
$GLOBALS['settingsnav']['hmail_signature'] = array('part' => '', 'label' => 'signature', 'href' => './?_task=settings&_action=plugin.hmail_signature&_framed=1', 'onclick' => '', 'descr' => 'hmail_signature');
// navigation config (requires plugin settings @website http://myroundcube.googlecode.com)
$GLOBALS['settingsnav']['hmail_spamfilter'] = array('part' => '', 'label' => 'spamfilter', 'href' => './?_task=settings&_action=plugin.hmail_spamfilter&_framed=1', 'onclick' => '', 'descr' => 'hmail_spamfilter');
// navigation config (requires plugin settings @website http://myroundcube.googlecode.com)
$GLOBALS['settingsnav']['hmail_password'] = array('part' => '', 'label' => 'changepasswd', 'href' => './?_task=settings&_action=plugin.hmail_password&_framed=1', 'onclick' => '', 'descr' => 'hmail_password');
// navigation config (requires plugin settings @website http://myroundcube.googlecode.com)
$GLOBALS['settingsnav']['pwtools'] = array('part' => '', 'label' => 'pwreminder', 'href' => './?_task=settings&_action=plugin.pwtools&_framed=1', 'onclick' => '', 'descr' => 'pwtools');

Jack!

#3
I assume it's a configuration error in file 'config.inc.php' from the plugin_manager plugin. Check for each hmail plugin the 'hosts' entry. Default value is
'hosts' => array('mail4us.net', 'svn.mail4us.net'),

Adapt this 'hosts' value to your own situation:
'hosts' => array('webmaildomainname'),

If you want a quick check to see if this 'hosts' value is the culprit:  put comment marks around it (/* at the beginning and */ at the end of the line).
/*  'hosts' => array('mail4us.net', 'svn.mail4us.net'), */

TechMonster

Jack: The config file was fine. I have my hosts set to false per the docs.

tparvais: Thanks. That fixed the problem. Need to get this pushed to the plugins so they work.