CREATE TABLE `getmail` (
`mailget_id` int(11) NOT NULL auto_increment,
`userhere` varchar(50) collate utf8_unicode_ci NOT NULL,
`active` int(1) unsigned NOT NULL default '1',
`type` varchar(5) collate utf8_unicode_ci NOT NULL default 'POP3',
`server` varchar(50) collate utf8_unicode_ci NOT NULL,
`user` varchar(50) collate utf8_unicode_ci NOT NULL,
`pass` varchar(50) collate utf8_unicode_ci NOT NULL,
`ssl` int(1) unsigned NOT NULL default '1',
`folder` varchar(60) collate utf8_unicode_ci NOT NULL,
`delete` int(1) unsigned NOT NULL DEFAULT '0',
`getonlynew` int(1) unsigned NOT NULL DEFAULT '1',
`getallnext` int(1) unsigned NOT NULL DEFAULT '0',
`poll` int(10) unsigned NOT NULL DEFAULT '15',
`lastpoll` int(10) unsigned NOT NULL,
PRIMARY KEY (`mailget_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1;
