added pop3 import to the gui

This commit is contained in:
SJ
2013-08-23 13:02:51 +02:00
parent d7faf096f1
commit eb826537dd
30 changed files with 1010 additions and 24 deletions

View File

@ -386,3 +386,23 @@ create table if not exists `online` (
unique(`username`,`ipaddr`)
) Engine=InnoDB;
create table if not exists `import` (
`id` int not null auto_increment primary key,
`type` varchar(255) not null,
`username` varchar(255) not null,
`password` varchar(255) not null,
`server` varchar(255) not null,
`created` int default 0,
`started` int default 0,
`finished` int default 0,
`updated` int default 0,
`status` int default 0,
`total` int default 0,
`imported` int default 0,
`duplicate` int default 0,
`error` int default 0,
`cleared` int default 0
) Engine=InnoDB;