Hi there, Ciatronical
That's true that we'r missing some default values in the db.
We will fix that for sure in the next package, But for now, if you'r familiar with MySql, execute following queries and your system will work.
=======================================================
INSERT INTO `email_triggers_recipient` (`id`, `recipient`) VALUES
(4, 'admin'),
(3, 'copywriter'),
(1, 'guest'),
(2, 'member'),
(5, 'superadmin');
=======================================================
INSERT INTO `email_triggers` (`id`, `enabled`, `trigger_name`, `observer`) VALUES
(1, '1', 't_feedbackform', 'Tools_Mail_SystemMailWatchdog'),
(2, '1', 't_passwordreset', 'Tools_Mail_SystemMailWatchdog'),
(3, '1', 't_passwordchange', 'Tools_Mail_SystemMailWatchdog'),
(4, '1', 't_membersignup', 'Tools_Mail_SystemMailWatchdog'),
(5, '1', 't_systemnotification', 'Tools_Mail_SystemMailWatchdog');
=======================================================
ALTER TABLE `form` ADD `reply_text` TEXT CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL;