CREATE TABLE `%q` (
    `email` varchar(255) not null,
    `display_name` varchar(255) not null,
    `last_addr` varchar(255) not null,
    `last_seen` datetime not null,
    `connect` enum('YES', 'NO') not null default 'YES',
    `save_msg` enum('YES', 'NO') not null default 'YES',
    `save_contacts` enum('YES', 'NO') not null default 'YES',
    `commands` int not null default 0,
    `status` enum('OFF', 'NLN', 'BSY', 'IDL',
		 'BRB', 'AWY', 'PHN',
		 'LUN', 'HDN')
		 not null default 'OFF',
    primary key(`email`)
)
