Vielen Dank, ich musste in der epg2vdr Datenbank noch das Feld "template" in der "timers" Tabelle anlegen, nun klappt es wieder.
CREATE TABLE `timers` (
  `id` int(11) UNSIGNED NOT NULL,
  `vdruuid` varchar(40) NOT NULL DEFAULT '',
  `inssp` int(11) DEFAULT NULL,
  `updsp` int(11) DEFAULT NULL,
  `eventid` int(11) UNSIGNED DEFAULT NULL,
  `channelid` varchar(50) DEFAULT NULL,
  `_starttime` int(10) DEFAULT NULL COMMENT 'pre filled start timer for trigger',
  `source` varchar(40) DEFAULT NULL COMMENT 'like  osd, webif, epgd',
  `type` varchar(1) DEFAULT NULL COMMENT '''R''ecord, ''V''iew, ''S''earch',
  `state` varchar(1) DEFAULT 'u' COMMENT '''D''eleted, ''R''unning, ''F''inished',
  `info` varchar(255) DEFAULT NULL COMMENT 'error reason if state is failed',
  `action` varchar(1) DEFAULT 'a',
  `tccmailcnt` int(11) UNSIGNED DEFAULT NULL,
  `retrys` int(11) UNSIGNED DEFAULT NULL,
  `namingmode` int(11) DEFAULT NULL,
  `active` int(11) UNSIGNED DEFAULT NULL,
  `day` int(10) DEFAULT NULL,
  `weekdays` int(10) DEFAULT NULL,
  `starttime` int(10) DEFAULT NULL,
  `endtime` int(10) DEFAULT NULL,
  `file` varchar(512) DEFAULT NULL,
  `directory` varchar(512) DEFAULT NULL,
  `priority` int(11) DEFAULT NULL,
  `lifetime` int(11) DEFAULT NULL,
  `vps` int(11) DEFAULT NULL,
  `childlock` int(11) DEFAULT NULL,
  `aux` varchar(1000) DEFAULT NULL,
  `autotimername` varchar(100) DEFAULT NULL COMMENT 'Bezeichung des Suchtimers',
  `autotimerid` int(11) UNSIGNED DEFAULT NULL COMMENT 'id of autotimer',
  `autotimerinssp` int(11) DEFAULT NULL,
  `doneid` int(11) UNSIGNED DEFAULT NULL COMMENT 'id of done entry',
  `expression` varchar(200) DEFAULT NULL,
  `template` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;