Summary | cron horde alarms vs ingo hooks mail has Busy in Subject |
Queue | Horde Groupware Webmail Edition |
Queue Version | 5.2.11 |
Type | Bug |
State | Duplicate |
Priority | 1. Low |
Owners | mrubinsk (at) horde (dot) org |
Requester | rs (at) sys4 (dot) de |
Created | 11/06/2015 (3528 days ago) |
Due | |
Updated | 11/06/2015 (3528 days ago) |
Assigned | |
Resolved | 11/06/2015 (3528 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Bug: 14154.http://bugs.horde.org/ticket/14154
used your git fixes, test shows everything working now
you may close this bug, thx for coding
Assigned to Michael Rubinsky
State ⇒ Duplicate
Bug: 14154.Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Horde Groupware Webmail Edition
Summary ⇒ cron horde alarms vs ingo hooks mail has Busy in Subject
Type ⇒ Bug
State ⇒ Unconfirmed
i had
/usr/bin/horde-alarms
PHP Fatal error: Call to a member function getParam() on a non-object
in /usr/share/horde/ingo/config/hooks.php on line 71
====================
Fatal Error:
Call to a member function getParam() on a non-object
In /usr/share/horde/ingo/config/hooks.php on line 71
1. Horde_ErrorHandler::catchFatalError()
fixed with
ingo hooks.php
public function transport_auth($driver)
{
switch ($driver) {
case 'timsieved':
$ob = $GLOBALS['registry']->call('mail/imapOb');
if (!$ob) {
return true;
}
return array(
'euser' => $ob->getParam('username'),
'password' => $ob->getParam('password'),
'username' => $GLOBALS['registry']->getAuth(null)
);
}return true;
}
}
this worked but the alarm reminder mail now has now
"Busy" in Subject ,it should have title of appointment in the mail
subject as it was before