Hi John can confirm 220AppRegistryKronolith is there , all 5 rpms are installed
unsure what I am looking for on the three kronolith stanzas though looked through /home/httpd/html/horde/config/registry.php file and no mention of kronolith
open two server sessions. In one type
tail -f /var/log/messages
In the other type
signal-event email-update
Note any errors from the tail session.
/home/httpd/html/horde/config/registry.php should have these lines:
// 220AppRegistryKronolith
$this->applications['kronolith'] = array(
'fileroot' => dirname(__FILE__) . '/../kronolith',
'webroot' => $this->applications['horde']['webroot'] . '/kronolith',
'name' => _("Calendar"),
'status' => 'active',
'provides' => 'calendar',
'menu_parent' => 'organizing'
);
$this->applications['kronolith-alarms'] = array(
'status' => 'block',
'app' => 'kronolith',
'blockname' => 'tree_alarms',
'menu_parent' => 'kronolith',
);
$this->applications['kronolith-menu'] = array(
'status' => 'block',
'app' => 'kronolith',
'blockname' => 'tree_menu',
'menu_parent' => 'kronolith',
);
If you don't have any of these, then kronolilth will not be active and won't work. But, you are getting an error, which makes me believe something may be wrong with the template expansion that may be seen from the steps above.
John