Author Topic: hmail plugins  (Read 5932 times)

Offline TechMonster

  • Jr. Member
  • **
  • Posts: 34
hmail plugins
« on: August 26, 2012, 10:29:35 PM »
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?
« Last Edit: August 26, 2012, 10:35:07 PM by TechMonster »

Offline TechMonster

  • Jr. Member
  • **
  • Posts: 34
Re: hmail plugins
« Reply #1 on: August 31, 2012, 08:46:26 AM »
Bump

tparvais

  • Guest
Re: hmail plugins
« Reply #2 on: September 05, 2012, 03:27:38 AM »
indeed, was also unclear for me.

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

Code: [Select]
/***********************
* 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');

Offline Jack!

  • Jr. Member
  • **
  • Posts: 34
Re: hmail plugins
« Reply #3 on: September 05, 2012, 09:01:03 AM »
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
Code: [Select]
'hosts' => array('mail4us.net', 'svn.mail4us.net'),
Adapt this 'hosts' value to your own situation:
Code: [Select]
'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).
Code: [Select]
/*  'hosts' => array('mail4us.net', 'svn.mail4us.net'), */
« Last Edit: September 05, 2012, 10:30:56 AM by Jack! »

Offline TechMonster

  • Jr. Member
  • **
  • Posts: 34
Re: hmail plugins
« Reply #4 on: September 05, 2012, 09:29:11 PM »
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.