Remove alarm type 'email' until we have a cron job that actually sends out such reminders

This commit is contained in:
Thomas Bruederli 2013-03-13 10:26:59 +01:00
parent 96b5313a13
commit 830ec0e2e8
2 changed files with 2 additions and 2 deletions

View file

@ -34,7 +34,7 @@ class database_driver extends calendar_driver
public $attendees = true;
public $freebusy = false;
public $attachments = true;
public $alarm_types = array('DISPLAY','EMAIL');
public $alarm_types = array('DISPLAY');
private $rc;
private $cal;

View file

@ -33,7 +33,7 @@ class kolab_driver extends calendar_driver
public $freebusy = true;
public $attachments = true;
public $undelete = true;
public $alarm_types = array('DISPLAY','EMAIL');
public $alarm_types = array('DISPLAY');
public $categoriesimmutable = true;
private $rc;