no its a clean install of everything including J!
prior to reinstalling uddeIM I checked the tables and #__uddeim includes field cryptmode
a table dump is currently looking like this:
[code:1]--
-- Table structure for table `jos__uddeim`
--
CREATE TABLE IF NOT EXISTS `jos_uddeim` (
`id` int(10) unsigned NOT NULL auto_increment,
`replyid` int(11) NOT NULL default '0',
`fromid` int(11) NOT NULL default '0',
`toid` int(11) NOT NULL default '0',
`message` text NOT NULL,
`datum` int(11) default NULL,
`toread` int(1) NOT NULL default '0',
`totrash` int(1) NOT NULL default '0',
`totrashdate` int(11) default NULL,
`totrashoutbox` int(1) NOT NULL default '0',
`totrashdateoutbox` int(11) default NULL,
`expires` int(11) NOT NULL default '0',
`disablereply` int(1) NOT NULL default '0',
`systemmessage` varchar(60) default NULL,
`archived` int(1) NOT NULL default '0',
`cryptmode` int(1) NOT NULL default '0',
`flagged` int(1) NOT NULL default '0',
`crypthash` varchar(32) default NULL,
`publicname` text,
`publicemail` text,
PRIMARY KEY (`id`),
KEY `toid_toread` (`toid`,`toread`),
KEY `fromid` (`fromid`),
KEY `replyid` (`replyid`),
KEY `datum` (`datum`),
KEY `totrashdate` (`totrashdate`),
KEY `totrashdateoutbox_datum` (`totrashdateoutbox`,`datum`),
KEY `toread_totrash_datum` (`toread`,`totrash`,`datum`),
KEY `totrash_totrashdate` (`totrash`,`totrashdate`),
KEY `archived_totrash_toid_datum` (`archived`,`totrash`,`toid`,`datum`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `jos_uddeim`
--
INSERT INTO `jos_uddeim` (`id`, `replyid`, `fromid`, `toid`, `message`, `datum`, `toread`, `totrash`, `totrashdate`, `totrashoutbox`, `totrashdateoutbox`, `expires`, `disablereply`, `systemmessage`, `archived`, `cryptmode`, `flagged`, `crypthash`, `publicname`, `publicemail`) VALUES
(1, 0, 63, 63, 'Welcome to uddeIM!\n\nYou have succesfully installed uddeIM.\n\nTry viewing this message with different templates. You can set them in the administration backend of uddeIM.\n\nuddeIM is a project in development. If you find bugs or weaknesses, please write them to me so that we can make uddeIM better together.\n\nGood luck and have fun!', 1269199577, 1, 0, NULL, 1, 1269199577, 0, 1, 'uddeIM', 0, 0, 0, NULL, NULL, NULL),
(2, 0, 62, 63, 'FxoQA1RPAEUTRQIMWE0=', 1271659328, 1, 0, NULL, 0, NULL, 0, 0, NULL, 0, 1, 0, 'fecd65a929048dd08c8ded7b40bc223f', NULL, NULL),
(3, 2, 63, 62, 'ERcNBQZIGgsVRQIBThlEXEAXUhQVB1USAhdofGQhNDpmbDwtJi8reSw6f28CAUJKEFBAQxNZBBFVBw==', 1271659363, 1, 0, NULL, 0, NULL, 0, 0, NULL, 0, 1, 0, 'fecd65a929048dd08c8ded7b40bc223f', NULL, NULL),
(4, 3, 62, 63, 'GhcNUBVIHBEaAARJRFdVNDlueCYvK3ksOi06KTYmM0JcRxYAFxkaQVMRGgBWHU5KRBleBgEKERNDfm9/b3tjdGZvZmw8LSYvKyt5ERoMBUlCShBYExcXCgQ=', 1271659490, 1, 0, NULL, 0, NULL, 0, 0, NULL, 0, 1, 0, 'fecd65a929048dd08c8ded7b40bc223f', NULL, NULL),
(5, 0, 62, 63, 'EBccUANOFgtSER4AWBlVS0EMAFkDHEkEFlIQBg==', 1271659583, 1, 0, NULL, 0, NULL, 0, 0, NULL, 0, 1, 0, 'fecd65a929048dd08c8ded7b40bc223f', NULL, NULL),
(6, 5, 63, 62, 'FxcKBB1IFGh4aHxkIWZvZmw8LSYvK3l+bwEAE0lcUVVXExcaEANUQwEXHRdWGkNWR0oTFgI=', 1271659604, 1, 0, NULL, 0, NULL, 0, 0, NULL, 0, 1, 0, 'fecd65a929048dd08c8ded7b40bc223f', NULL, NULL);[/code:1]