Displaying 1 result from an estimated 1 matches for "hostmap".
Did you mean:
hostap
2010 Aug 04
1
IMAP/POP3 Proxy Redundancy
...in production?
Thanks,
Cory
Here is a sample of what I'm testing the proxy with.
CREATE TABLE `users` (
`user` varchar(255) NOT NULL,
`filesystem` varchar(5) NOT NULL,
PRIMARY KEY (`user`),
UNIQUE KEY `idx_user` (`user`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
CREATE TABLE `hostmap` (
`id` int(11) NOT NULL auto_increment,
`filesystem` varchar(5) NOT NULL COMMENT 'Filesystem identifier',
`ip` int(10) unsigned NOT NULL,
`alive` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_hostmap` (`filesystem`,`ip`)
) ENGINE=MyISAM AUT...