-- MySQL dump 10.13 Distrib 5.1.70, for pc-linux-gnu (i686) -- -- Host: localhost Database: roundcube -- ------------------------------------------------------ -- Server version 5.1.70-cll /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `cache` -- DROP TABLE IF EXISTS `cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache` ( `cache_key` varchar(128) CHARACTER SET ascii NOT NULL, `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `data` longtext NOT NULL, `user_id` int(10) unsigned NOT NULL, KEY `created_index` (`created`), KEY `user_cache_index` (`user_id`,`cache_key`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache` -- LOCK TABLES `cache` WRITE; /*!40000 ALTER TABLE `cache` DISABLE KEYS */; /*!40000 ALTER TABLE `cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_index` -- DROP TABLE IF EXISTS `cache_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_index` ( `user_id` int(10) unsigned NOT NULL, `mailbox` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `valid` tinyint(1) NOT NULL DEFAULT '0', `data` longtext NOT NULL, PRIMARY KEY (`user_id`,`mailbox`), KEY `changed_index` (`changed`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_index` -- LOCK TABLES `cache_index` WRITE; /*!40000 ALTER TABLE `cache_index` DISABLE KEYS */; /*!40000 ALTER TABLE `cache_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_messages` -- DROP TABLE IF EXISTS `cache_messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_messages` ( `user_id` int(10) unsigned NOT NULL, `mailbox` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `uid` int(11) unsigned NOT NULL DEFAULT '0', `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `data` longtext NOT NULL, `flags` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`user_id`,`mailbox`,`uid`), KEY `changed_index` (`changed`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_messages` -- LOCK TABLES `cache_messages` WRITE; /*!40000 ALTER TABLE `cache_messages` DISABLE KEYS */; /*!40000 ALTER TABLE `cache_messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache_thread` -- DROP TABLE IF EXISTS `cache_thread`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cache_thread` ( `user_id` int(10) unsigned NOT NULL, `mailbox` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `data` longtext NOT NULL, PRIMARY KEY (`user_id`,`mailbox`), KEY `changed_index` (`changed`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cache_thread` -- LOCK TABLES `cache_thread` WRITE; /*!40000 ALTER TABLE `cache_thread` DISABLE KEYS */; /*!40000 ALTER TABLE `cache_thread` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contactgroupmembers` -- DROP TABLE IF EXISTS `contactgroupmembers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `contactgroupmembers` ( `contactgroup_id` int(10) unsigned NOT NULL, `contact_id` int(10) unsigned NOT NULL, `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', PRIMARY KEY (`contactgroup_id`,`contact_id`), KEY `contactgroupmembers_contact_index` (`contact_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contactgroupmembers` -- LOCK TABLES `contactgroupmembers` WRITE; /*!40000 ALTER TABLE `contactgroupmembers` DISABLE KEYS */; INSERT INTO `contactgroupmembers` VALUES (4,59,'2012-10-04 11:06:29'),(4,56,'2012-10-04 11:06:51'),(4,55,'2012-10-04 11:06:57'),(4,57,'2012-10-04 11:07:03'),(4,58,'2012-10-04 11:07:09'),(4,60,'2012-10-04 11:07:15'); /*!40000 ALTER TABLE `contactgroupmembers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contactgroups` -- DROP TABLE IF EXISTS `contactgroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `contactgroups` ( `contactgroup_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `del` tinyint(1) NOT NULL DEFAULT '0', `name` varchar(128) NOT NULL DEFAULT '', PRIMARY KEY (`contactgroup_id`), KEY `contactgroups_user_index` (`user_id`,`del`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contactgroups` -- LOCK TABLES `contactgroups` WRITE; /*!40000 ALTER TABLE `contactgroups` DISABLE KEYS */; INSERT INTO `contactgroups` VALUES (1,7,'2011-10-31 15:36:51',1,'lbirzneck@hotmail.com'),(2,7,'2011-10-31 15:36:57',1,'lbirzneck@hotmail.com 2'),(3,7,'2011-11-18 11:35:53',1,'lbirzneck@hotmail.com'),(4,28,'2012-10-04 11:06:12',0,'2012'),(5,7,'2012-10-11 16:23:05',0,'Maryann Abbs'); /*!40000 ALTER TABLE `contactgroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contacts` -- DROP TABLE IF EXISTS `contacts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `contacts` ( `contact_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `del` tinyint(1) NOT NULL DEFAULT '0', `name` varchar(128) NOT NULL DEFAULT '', `email` text NOT NULL, `firstname` varchar(128) NOT NULL DEFAULT '', `surname` varchar(128) NOT NULL DEFAULT '', `vcard` longtext, `words` text, `user_id` int(10) unsigned NOT NULL, PRIMARY KEY (`contact_id`), KEY `user_contacts_index` (`user_id`,`del`) ) ENGINE=MyISAM AUTO_INCREMENT=129 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contacts` -- LOCK TABLES `contacts` WRITE; /*!40000 ALTER TABLE `contacts` DISABLE KEYS */; INSERT INTO `contacts` VALUES (1,'2010-11-03 10:36:44',0,'lbirzneck','lbirzneck@hotmail.com','Lorraine','Birzneck',NULL,NULL,3),(2,'2011-03-10 10:10:23',0,'abirzneck','abirzneck@gmail.com','Art','Birzneck',NULL,NULL,3),(3,'2010-11-26 12:15:47',0,'Julian Alphilbert','jalphilbert@gmail.com','Julian','Alphilbert',NULL,NULL,3),(4,'2010-11-26 12:16:35',0,'Bob Baturin','rbaturin@dccnet.com','Bob','Baturin',NULL,NULL,3),(5,'2010-11-26 12:17:41',0,'Don Blake','dblake@telus.net','Don','Blake',NULL,NULL,3),(6,'2010-11-26 12:18:56',0,'John Butterworth','johnandpamela@shaw.ca','John','Butterworth',NULL,NULL,3),(7,'2011-01-25 15:47:36',0,'Dick Dendy','dendy@dccnet.com','Dick','Dendy',NULL,NULL,3),(8,'2010-11-26 12:20:29',0,'Tom Fell','tomgfell@gmail.com','Tom','Fell',NULL,NULL,3),(9,'2010-11-26 12:21:48',0,'Don Fitzpatrick','donfitzpatrick@telus.net','Don','Fitzpatrick',NULL,NULL,3),(10,'2010-11-26 12:22:31',0,'Bob Kochendorfer','thekochs@shaw.ca','Bob','Kochendorfer',NULL,NULL,3),(11,'2010-11-26 12:23:52',0,'Derek Mowatt','derek@bancorpfinancial.com','Derek','Mowatt',NULL,NULL,3),(12,'2010-11-26 12:24:42',0,'Ron Pousette','rpousette@shaw.ca','Ron','Pousette',NULL,NULL,3),(13,'2010-11-26 12:25:36',0,'Jonathan Quick','jonquick@telus.net','Jonathan','Quick',NULL,NULL,3),(14,'2010-11-26 12:26:21',0,'Nis Schmidt','nis7th@aol.com','Nis','Schmidt',NULL,NULL,3),(15,'2010-11-26 12:27:07',0,'David Sproule','darnsproule@gmail.com','David','Sproule',NULL,NULL,3),(16,'2010-11-26 12:27:49',0,'Barry Spruston','bspruston@telus.net','Barry','spruston',NULL,NULL,3),(17,'2010-11-30 09:25:29',0,'Rhenada Sutter','rhenada64@yahoo.ca','','',NULL,NULL,4),(18,'2010-12-06 22:18:56',0,'Emily Chen','doordoor88@gmail.com','','',NULL,NULL,4),(19,'2012-03-05 13:07:37',0,'Bernice Birzneck','bbirzneck@shaw.ca, bbirzneck@dominionherbalcollege.com','Bernice','Birzneck','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Birzneck;Bernice;;;\r\nFN:Bernice Birzneck\r\nEMAIL;type=INTERNET;type=HOME:bbirzneck@shaw.ca\r\nEMAIL;type=INTERNET;type=HOME:bbirzneck@dominionherbalcollege.com\r\nEND:VCARD',' bernice birzneck bbirzneck@shaw.ca bbirzneck@dominionherbalcollege.com',3),(20,'2011-06-16 11:03:06',1,'Dale1102','dale1102@aol.com','','',NULL,NULL,3),(21,'2011-07-19 13:50:07',0,'Sally Swain','sallyswain@gmail.com','','',NULL,NULL,4),(22,'2011-09-22 14:03:26',0,'VWMC Associate Members','elegantwo@shaw.ca','Bill','Harborne',NULL,NULL,3),(23,'2011-09-22 14:05:25',0,'VWMC Associate Members','jorajames@telus.net','John','James',NULL,NULL,3),(24,'2011-09-22 14:06:54',0,'VWMC Associate Members','hbjenkin@shaw.ca','Herb ','Jenkin',NULL,NULL,3),(25,'2011-09-22 14:09:10',0,'VWMC Associaate Members','duncan_macdonald@shaw.ca','Duncan','MacDonald',NULL,NULL,3),(26,'2011-09-22 14:10:35',0,'VWMC Associate Members','pomfret@shaw.ca','Jack','Pomfret',NULL,NULL,3),(27,'2011-09-22 14:11:43',0,'VWMC Associate Members','dndpost@shaw.ca','Dirk','Post',NULL,NULL,3),(28,'2011-09-22 14:13:03',0,'VWMC Associate Members','djakshave@shaw.ca','Dennis','Shave',NULL,NULL,3),(29,'2011-09-22 14:14:11',0,'VWMC Associate Member','georgespeed@shaw.ca','George ','Speed',NULL,NULL,3),(30,'2011-09-29 11:34:42',0,'Meredith Burney','meredithburney@gmail.com','Meredith','Burney',NULL,NULL,7),(31,'2011-09-29 11:35:36',0,'Mara Hynninen','mara@arcanahealth.com','Mara ','Hynninen',NULL,NULL,7),(32,'2011-09-29 11:36:43',0,'Jasbir Mattu','whiterockwellness@primus.ca','Jasbir ','Mattu',NULL,NULL,7),(33,'2011-09-29 11:37:23',0,'Harwinder Mattu','ma2@shaw.ca','Harwinder','Mattu',NULL,NULL,7),(34,'2011-11-02 10:53:47',0,'Marcia Dixon','marciadixon@sympatico.ca','','',NULL,NULL,7),(35,'2011-11-18 11:36:49',0,'Lorraine Birzneck','lbirzneck@hotmail.com','','',NULL,NULL,7),(36,'2011-11-18 11:37:28',0,'Art Birzneck','abirzneck@gmail.com','','',NULL,NULL,7),(37,'2011-11-18 11:38:50',0,'Mara Hynninen','mhynninen@dominionherbalcollege.com','','',NULL,NULL,7),(38,'2011-11-18 11:39:40',0,'Meredith Burney','mburney@dominionherbalcollege.com','','',NULL,NULL,7),(39,'2011-11-18 11:41:20',0,'Jasbir Mattu','jmattu@dominionherbalcollege.com','','',NULL,NULL,7),(40,'2011-12-02 10:51:32',0,'Harwinder Mattu','hmattu@dominionherbalcollege.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Harwinder Mattu\r\nEMAIL;type=INTERNET;type=HOME:hmattu@dominionherbalcollege.com\r\nEND:VCARD',' harwinder mattu hmattu@dominionherbalcollege.com',7),(41,'2012-12-12 14:34:01',0,'A.R. Birzneck','drbirzneck@dominionherbalcollege.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:A.R. Birzneck\r\nEMAIL;TYPE=INTERNET;TYPE=HOME:drbirzneck@dominionherbalcollege.com\r\nEND:VCARD',' a.r. birzneck drbirzneck@dominionherbalcollege.com',7),(42,'2011-11-18 11:42:38',0,'Carol Barber','cbarber@dominionherbalcollege.com','','',NULL,NULL,7),(43,'2012-01-23 19:16:08',0,'Art Birzneck','abirzneck@gmail.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Art Birzneck\r\nEMAIL;type=INTERNET:abirzneck@gmail.com\r\nEND:VCARD',' abirzneck@gmail.com art birzneck',16),(44,'2012-02-03 20:21:53',0,'Anastasia Bankovskaya','bankovskaya@planeta-inform.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Anastasia Bankovskaya\r\nEMAIL;type=INTERNET:bankovskaya@planeta-inform.com\r\nEND:VCARD',' bankovskaya@planeta inform.com anastasia bankovskaya',19),(45,'2012-05-16 23:30:11',0,'Curious Distribution','michaelwrenn@curiousfilm.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Curious Distribution\r\nEMAIL;type=INTERNET:michaelwrenn@curiousfilm.com\r\nEND:VCARD',' michalwrenn@curiousfilm.com curious distribution',22),(46,'2012-06-08 14:30:53',0,'Art Birzneck','Birznecks@shaw.ca','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Art Birzneck\r\nEMAIL;type=INTERNET:Birznecks@shaw.ca\r\nEND:VCARD',' birznecks@shaw.ca art birzneck',9),(47,'2012-07-30 16:31:40',0,'Bernice Birzneck','bbirzneck@dominionherbalcollege.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Bernice Birzneck\r\nEMAIL;type=INTERNET:bbirzneck@dominionherbalcollege.com\r\nEND:VCARD',' bbirzneck@dominionherbalcollege.com bernice birzneck',7),(48,'2012-08-15 16:15:43',0,'PCTIA','mlust@pctia.bc.ca','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:PCTIA\r\nEMAIL;type=INTERNET:mlust@pctia.bc.ca\r\nEND:VCARD',' mlust@pctia.bc.ca pctia',3),(49,'2012-08-22 16:38:47',0,'Info','info@dominionherbalcollege.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Info\r\nEMAIL;type=INTERNET:info@dominionherbalcollege.com\r\nEND:VCARD',' info@dominionherbalcollege.com info',3),(50,'2012-09-12 20:09:29',0,'Evelyn Coggins','ecoggins@dominionherbalcollege.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Evelyn Coggins\r\nEMAIL;type=INTERNET:ecoggins@dominionherbalcollege.com\r\nEND:VCARD',' ecoggins@dominionherbalcollege.com evelyn coggins',27),(51,'2012-09-12 20:09:44',0,'Magdalena Saito','saitomaggie@gmail.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Magdalena Saito\r\nEMAIL;type=INTERNET:saitomaggie@gmail.com\r\nEND:VCARD',' saitomaggie@gmail.com magdalena saito',27),(52,'2012-09-12 20:12:07',0,'Jazz Mattu','jmattu@dominionherbalcollege.com','Jazz','Mattu','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Mattu;Jazz;;;\r\nFN:Jazz Mattu\r\nEMAIL;type=INTERNET;type=OTHER:jmattu@dominionherbalcollege.com\r\nEND:VCARD',' jazz mattu jmattu@dominionherbalcollege.com',27),(53,'2012-09-12 20:11:41',0,'Bernice Birzneck','bbirzneck@dominionherbalcollege.com','Bernice','Birzneck','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Birzneck;Bernice;;;\r\nFN:Bernice Birzneck\r\nEMAIL;type=INTERNET;type=OTHER:bbirzneck@dominionherbalcollege.com\r\nEND:VCARD',' bernice birzneck bbirzneck@dominionherbalcollege.com',27),(54,'2012-09-28 10:09:56',0,'Art Birzneck','birznecks@shaw.ca','Art','Birzneck','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Birzneck;Art;;;\r\nFN:Art Birzneck\r\nEMAIL;type=INTERNET;type=HOME:birznecks@shaw.ca\r\nEND:VCARD',' art birzneck birznecks@shaw.ca',3),(55,'2012-10-04 10:55:12',0,'Sara Rajabi ','sara.rajabi@gmail.com','Sara ','Rajabi ','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Rajabi ;Sara ;;;\r\nFN:Sara Rajabi \r\nEMAIL;type=INTERNET;type=HOME:sara.rajabi@gmail.com\r\nTITLE:2012\r\nX-DEPARTMENT:# 286\r\nEND:VCARD',' sara rajabi sara.rajabi@gmail.com 2012 # 286',28),(56,'2012-10-04 10:56:23',0,'Caleb McGuigan','scorpio2584@yahoo.ca','Caleb ','McGuigan','BEGIN:VCARD\r\nVERSION:3.0\r\nN:McGuigan;Caleb ;;;\r\nFN:Caleb McGuigan\r\nEMAIL;type=INTERNET;type=HOME:scorpio2584@yahoo.ca\r\nTITLE:2012\r\nX-DEPARTMENT:#284\r\nEND:VCARD',' caleb mcguigan scorpio2584@yahoo.ca 2012 #284',28),(57,'2012-10-04 10:58:55',0,'Celle Rikwerda ','celle_rikwerda@hotmail.com','Celle ','Rikwerda ','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Rikwerda ;Celle ;;;\r\nFN:Celle Rikwerda \r\nEMAIL;type=INTERNET;type=HOME:celle_rikwerda@hotmail.com\r\nTITLE:2012\r\nX-DEPARTMENT:# 245\r\nEND:VCARD',' celle rikwerda celle_rikwerda@hotmail.com 2012 # 245',28),(58,'2012-10-04 11:00:33',0,'Magdalena Saito ','saitomaggie@gmail.com','Magdalena ','Saito ','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Saito ;Magdalena ;;;\r\nFN:Magdalena Saito \r\nEMAIL;type=INTERNET;type=HOME:saitomaggie@gmail.com\r\nTITLE:2012\r\nX-DEPARTMENT:#6291\r\nEND:VCARD',' magdalena saito saitomaggie@gmail.com 2012 #6291',28),(59,'2012-10-04 11:03:40',0,'Valentyna Gorbata','v.horbata@gmail.com','Valentyna ','Gorbata','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Gorbata;Valentyna ;;;\r\nFN:Valentyna Gorbata\r\nEMAIL;type=INTERNET;type=HOME:v.horbata@gmail.com\r\nTITLE:2012\r\nX-DEPARTMENT:#6840\r\nEND:VCARD',' valentyna gorbata v.horbata@gmail.com 2012 #6840',28),(60,'2012-10-04 11:04:33',0,'Kosha Vaidya ','koshav@hotmail.com','Kosha ','Vaidya ','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Vaidya ;Kosha ;;;\r\nFN:Kosha Vaidya \r\nEMAIL;type=INTERNET;type=HOME:koshav@hotmail.com\r\nTITLE:2012\r\nX-DEPARTMENT:#5935\r\nEND:VCARD',' kosha vaidya koshav@hotmail.com 2012 #5935',28),(61,'2012-10-04 11:05:18',0,'Dominion Herbal College','bbirzneck@dominionherbalcollege.com','Dominion','Herbal College','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Herbal College;Dominion;;;\r\nFN:Dominion Herbal College\r\nEMAIL;type=INTERNET;type=HOME:bbirzneck@dominionherbalcollege.com\r\nEND:VCARD',' dominion herbal college bbirzneck@dominionherbalcollege.com',28),(62,'2012-10-04 11:13:46',0,'Danielle Briggs #303','dbriggs@telus.net','Danielle','Briggs','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Briggs;Danielle;;;#303\r\nFN:Danielle Briggs #303\r\nEMAIL;type=INTERNET;type=HOME:dbriggs@telus.net\r\nEND:VCARD',' danielle briggs #303 dbriggs@telus.net',25),(63,'2012-10-04 11:14:31',0,'Cristina Ciccone #320','misstina781@yahoo.com','Cristina','Ciccone','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Ciccone;Cristina;;;#320\r\nFN:Cristina Ciccone #320\r\nEMAIL;type=INTERNET;type=HOME:misstina781@yahoo.com\r\nEND:VCARD',' cristina ciccone #320 misstina781@yahoo.com',25),(64,'2012-10-04 11:15:15',0,'Teija Kovanen #306','teija006@hotmail.com','Teija','Kovanen','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Kovanen;Teija;;;#306\r\nFN:Teija Kovanen #306\r\nEMAIL;type=INTERNET;type=HOME:teija006@hotmail.com\r\nEND:VCARD',' teija kovanen #306 teija006@hotmail.com',25),(65,'2012-10-10 15:47:45',0,'Chandra McGlone #307','chandramcglone@yahoo.com','Chandra','McGlone','BEGIN:VCARD\r\nVERSION:3.0\r\nN:McGlone;Chandra;;;#307\r\nFN:Chandra McGlone #307\r\nEMAIL;type=INTERNET;type=HOME:chandramcglone@yahoo.com\r\nEND:VCARD',' chandra mcglone #307 chandramcglone@yahoo.com',25),(66,'2012-10-04 11:16:56',0,'Petra Mumby #300','pmumby@mac.com','Petra','Mumby','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Mumby;Petra;;;#300\r\nFN:Petra Mumby #300\r\nEMAIL;type=INTERNET;type=HOME:pmumby@mac.com\r\nEND:VCARD',' petra mumby #300 pmumby@mac.com',25),(67,'2012-10-04 11:17:45',0,'Vanessa Prescott #304','vanessa_prescott@hotmail.com','Vanessa','Prescott','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Prescott;Vanessa;;;#304\r\nFN:Vanessa Prescott #304\r\nEMAIL;type=INTERNET;type=HOME:vanessa_prescott@hotmail.com\r\nEND:VCARD',' vanessa prescott #304 vanessa_prescott@hotmail.com',25),(68,'2012-10-04 11:18:24',0,'Valerie Taylor #288','valsmith_09@hotmail.com','Valerie','Taylor','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Taylor;Valerie;;;#288\r\nFN:Valerie Taylor #288\r\nEMAIL;type=INTERNET;type=HOME:valsmith_09@hotmail.com\r\nEND:VCARD',' valerie taylor #288 valsmith_09@hotmail.com',25),(69,'2012-10-04 11:19:14',0,'Diguistini Carolyn #6765','tbdi@hotmail.com','Diguistini','Carolyn','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Carolyn;Diguistini;;;#6765\r\nFN:Diguistini Carolyn #6765\r\nEMAIL;type=INTERNET;type=HOME:tbdi@hotmail.com\r\nEND:VCARD',' diguistini carolyn #6765 tbdi@hotmail.com',25),(70,'2012-10-04 12:10:41',0,'Gorbata Valentyna #6840','v.horbata@gmail.com','Gorbata','Valentyna','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Valentyna;Gorbata;;;#6840\r\nFN:Gorbata Valentyna #6840\r\nEMAIL;type=INTERNET;type=HOME:v.horbata@gmail.com\r\nEND:VCARD',' gorbata valentyna #6840 v.horbata@gmail.com',25),(71,'2012-10-04 11:20:43',0,'Vaidya Kosha #5935','koshav@hotmail.com','Vaidya','Kosha','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Kosha;Vaidya;;;#5935\r\nFN:Vaidya Kosha #5935\r\nEMAIL;type=INTERNET;type=HOME:koshav@hotmail.com\r\nEND:VCARD',' vaidya kosha #5935 koshav@hotmail.com',25),(72,'2012-10-04 11:21:26',0,'Zahraa Sarji #6583','zahraaasarji@hotmail.com','Zahraa','Sarji','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Sarji;Zahraa;;;#6583\r\nFN:Zahraa Sarji #6583\r\nEMAIL;type=INTERNET;type=HOME:zahraaasarji@hotmail.com\r\nEND:VCARD',' zahraa sarji #6583 zahraaasarji@hotmail.com',25),(73,'2012-10-04 11:22:08',0,'Jennifer Fitzgerald #6748','wjfitz@shaw.ca','Jennifer','Fitzgerald','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Fitzgerald;Jennifer;;;#6748\r\nFN:Jennifer Fitzgerald #6748\r\nEMAIL;type=INTERNET;type=HOME:wjfitz@shaw.ca\r\nEND:VCARD',' jennifer fitzgerald #6748 wjfitz@shaw.ca',25),(74,'2012-10-07 15:00:09',0,'','dbriggs@telus.net','','','BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;type=INTERNET;type=HOME:dbriggs@telus.net\r\nEND:VCARD',' dbriggs@telus.net',24),(75,'2012-10-07 15:05:22',1,'Christina','misstina781@yahoo.com','Christina','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Christina;;;\r\nFN:Christina\r\nEMAIL;type=INTERNET;type=HOME:misstina781@yahoo.com\r\nEND:VCARD',' christina misstina781@yahoo.com',24),(76,'2012-10-07 15:01:16',0,'','misstina781@yahoo.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;type=INTERNET;type=HOME:misstina781@yahoo.com\r\nEND:VCARD',' misstina781@yahoo.com',24),(77,'2012-10-07 15:02:42',0,'','teija006@hotmail.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;type=INTERNET;type=HOME:teija006@hotmail.com\r\nEND:VCARD',' teija006@hotmail.com',24),(78,'2012-10-11 18:58:58',1,'','chanddramcglone@yahoo.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;type=INTERNET;type=HOME:chanddramcglone@yahoo.com\r\nEND:VCARD',' chanddramcglone@yahoo.com',24),(79,'2012-10-07 15:03:41',0,'','pmumby@mac.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;type=INTERNET;type=HOME:pmumby@mac.com\r\nEND:VCARD',' pmumby@mac.com',24),(80,'2012-10-07 15:04:06',0,'','vanessa_prescott@hotmail.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;type=INTERNET;type=HOME:vanessa_prescott@hotmail.com\r\nEND:VCARD',' vanessa_prescott@hotmail.com',24),(81,'2012-10-07 15:04:26',0,'','valsmith_09@hotmail.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;type=INTERNET;type=HOME:valsmith_09@hotmail.com\r\nEND:VCARD',' valsmith_09@hotmail.com',24),(82,'2012-10-07 15:04:58',0,'','tbdi@hotmail.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;type=INTERNET;type=HOME:tbdi@hotmail.com\r\nEND:VCARD',' tbdi@hotmail.com',24),(83,'2012-10-09 12:32:58',0,'Danielle Briggs','dbriggs@telus.net','Danielle','Briggs','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Briggs;Danielle;;;\r\nFN:Danielle Briggs\r\nEMAIL;type=INTERNET;type=HOME:dbriggs@telus.net\r\nEND:VCARD',' danielle briggs dbriggs@telus.net',27),(84,'2012-10-09 12:34:04',0,'Cristina Ciccone','misstina781@yahoo.com','Cristina','Ciccone','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Ciccone;Cristina;;;\r\nFN:Cristina Ciccone\r\nEMAIL;type=INTERNET;type=HOME:misstina781@yahoo.com\r\nEND:VCARD',' cristina ciccone misstina781@yahoo.com',27),(85,'2012-10-09 12:35:47',0,'Teija Kovanen','teija006@hotmail.com','Teija','Kovanen','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Kovanen;Teija;;;\r\nFN:Teija Kovanen\r\nEMAIL;type=INTERNET;type=HOME:teija006@hotmail.com\r\nEND:VCARD',' teija kovanen teija006@hotmail.com',27),(86,'2012-10-09 12:39:05',0,'Chandra McGlone','chandramcglone@yahoo.com','Chandra','McGlone','BEGIN:VCARD\r\nVERSION:3.0\r\nN:McGlone;Chandra;;;\r\nFN:Chandra McGlone\r\nEMAIL;type=INTERNET;type=HOME:chandramcglone@yahoo.com\r\nEND:VCARD',' chandra mcglone chandramcglone@yahoo.com',27),(87,'2012-10-09 12:40:01',0,'Petra Mumby','pmumby@mac.com','Petra','Mumby','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Mumby;Petra;;;\r\nFN:Petra Mumby\r\nEMAIL;type=INTERNET;type=HOME:pmumby@mac.com\r\nEND:VCARD',' petra mumby pmumby@mac.com',27),(88,'2012-10-09 12:41:03',0,'Vanessa Prescott','vanessa_prescott@hotmail.com','Vanessa','Prescott','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Prescott;Vanessa;;;\r\nFN:Vanessa Prescott\r\nEMAIL;type=INTERNET;type=HOME:vanessa_prescott@hotmail.com\r\nEND:VCARD',' vanessa prescott vanessa_prescott@hotmail.com',27),(89,'2012-10-09 12:50:28',0,'Caleb McGuigan','scorpio2584@yahoo.ca','Caleb ','McGuigan','BEGIN:VCARD\r\nVERSION:3.0\r\nN:McGuigan;Caleb ;;;\r\nFN:Caleb McGuigan\r\nEMAIL;type=INTERNET;type=HOME:scorpio2584@yahoo.ca\r\nEND:VCARD',' caleb mcguigan scorpio2584@yahoo.ca',27),(90,'2012-10-09 12:52:51',0,'Celle Rikwerda','celle_rikwerda@hotmail.com','Celle','Rikwerda','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Rikwerda;Celle;;;\r\nFN:Celle Rikwerda\r\nEMAIL;type=INTERNET;type=HOME:celle_rikwerda@hotmail.com\r\nEND:VCARD',' celle rikwerda celle_rikwerda@hotmail.com',27),(91,'2012-10-09 13:01:23',0,'Carolyn Diguistini','tbdi@hotmail.com','Carolyn ','Diguistini','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Diguistini;Carolyn ;;;\r\nFN:Carolyn Diguistini\r\nEMAIL;type=INTERNET;type=HOME:tbdi@hotmail.com\r\nEND:VCARD',' carolyn diguistini tbdi@hotmail.com',27),(92,'2012-10-09 13:02:37',0,'Valentyna Gorbata','v.gorbata@gmail.com','Valentyna','Gorbata','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Gorbata;Valentyna;;;\r\nFN:Valentyna Gorbata\r\nEMAIL;type=INTERNET;type=HOME:v.gorbata@gmail.com\r\nEND:VCARD',' valentyna gorbata v.gorbata@gmail.com',27),(93,'2012-10-09 13:04:27',0,'Kosha Vaidya','koshav@hotmail.com','Kosha','Vaidya','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Vaidya;Kosha;;;\r\nFN:Kosha Vaidya\r\nEMAIL;type=INTERNET;type=HOME:koshav@hotmail.com\r\nEND:VCARD',' kosha vaidya koshav@hotmail.com',27),(94,'2012-10-09 13:09:36',0,'Sara Rajabi-Yazdi','sara.rajabi@gmail.com','Sara','Rajabi-Yazdi','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Rajabi-Yazdi;Sara;;;\r\nFN:Sara Rajabi-Yazdi\r\nEMAIL;type=INTERNET;type=HOME:sara.rajabi@gmail.com\r\nEND:VCARD',' sara rajabi yazdi sara.rajabi@gmail.com',27),(95,'2012-10-09 18:00:05',0,'Valerie Taylor','valsmith_09@hotmail.com','Valerie','Taylor','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Taylor;Valerie;;;\r\nFN:Valerie Taylor\r\nEMAIL;type=INTERNET;type=HOME:valsmith_09@hotmail.com\r\nEND:VCARD',' valerie taylor valsmith_09@hotmail.com',27),(96,'2012-10-18 07:49:40',0,'[CHT4] Cristina Ciccone - 320','misstina781@yahoo.com','[CHT4] Cristina','Ciccone - 320','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Ciccone - 320;[CHT4] Cristina;;;\r\nFN:[CHT4] Cristina Ciccone - 320\r\nEMAIL;type=INTERNET;type=OTHER:misstina781@yahoo.com\r\nEND:VCARD',' [cht4] cristina ciccone 320 misstina781@yahoo.com',23),(97,'2012-10-18 07:50:02',0,'[CHT4] Teija Kovanen - 306','teija006@hotmail.com','[CHT4] Teija ','Kovanen - 306','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Kovanen - 306;[CHT4] Teija ;;;\r\nFN:[CHT4] Teija Kovanen - 306\r\nEMAIL;type=INTERNET;type=OTHER:teija006@hotmail.com\r\nEND:VCARD',' [cht4] teija kovanen 306 teija006@hotmail.com',23),(98,'2012-10-18 07:49:50',0,'[CHT4] Petra Mumby - 300','pmumby@mac.com','[CHT4] Petra','Mumby - 300','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Mumby - 300;[CHT4] Petra;;;\r\nFN:[CHT4] Petra Mumby - 300\r\nEMAIL;type=INTERNET;type=OTHER:pmumby@mac.com\r\nEND:VCARD',' [cht4] petra mumby 300 pmumby@mac.com',23),(99,'2012-10-18 07:50:58',1,'[H] Zahara Sarji','zahraaasarji@hotmail.com','[H] Zahara','Sarji','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Sarji;[H] Zahara;;;\r\nFN:[H] Zahara Sarji\r\nEMAIL;type=INTERNET;type=OTHER:zahraaasarji@hotmail.com\r\nEND:VCARD',' [h] zahara sarji zahraaasarji@hotmail.com',23),(100,'2012-10-18 07:52:45',0,'[DHC] Bernice Birzneck','bbirzneck@dominionherbalcollege.com','[DHC] Bernice','Birzneck','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Birzneck;[DHC] Bernice;;;\r\nFN:[DHC] Bernice Birzneck\r\nEMAIL;type=INTERNET;type=OTHER:bbirzneck@dominionherbalcollege.com\r\nEND:VCARD',' [dhc] bernice birzneck bbirzneck@dominionherbalcollege.com',23),(101,'2012-10-18 07:48:42',0,'[DHC] Julieta Criollo','jcriollo@dominionherbalcollege.com,julietacriollo@yahoo.com','[DHC] Julieta','Criollo','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Criollo;[DHC] Julieta;;;\r\nFN:[DHC] Julieta Criollo\r\nEMAIL;type=INTERNET;type=OTHER:jcriollo@dominionherbalcollege.com\r\nEMAIL;type=INTERNET;type=HOME:julietacriollo@yahoo.com\r\nEND:VCARD',' [dhc] julieta criollo jcriollo@dominionherbalcollege.com julietacriollo@yahoo.com',23),(102,'2012-10-11 16:25:12',0,'Maryann Abbs','mabbs@dominionherbalcollege.com','Maryann','Abbs','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Abbs;Maryann;;;\r\nFN:Maryann Abbs\r\nEMAIL;type=INTERNET;type=HOME:mabbs@dominionherbalcollege.com\r\nEND:VCARD',' maryann abbs mabbs@dominionherbalcollege.com',7),(103,'2012-10-11 16:25:37',0,'Maryann Abbs','maryann@resist.ca','Maryann','Abbs','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Abbs;Maryann;;;\r\nFN:Maryann Abbs\r\nEMAIL;type=INTERNET;type=HOME:maryann@resist.ca\r\nEND:VCARD',' maryann abbs maryann@resist.ca',7),(104,'2012-10-11 18:59:07',0,'','chandramcglone@yahoo.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nEMAIL;type=INTERNET;type=HOME:chandramcglone@yahoo.com\r\nEND:VCARD',' chandramcglone@yahoo.com',24),(105,'2012-10-15 16:48:02',0,'Evelyn Coggins','ecoggins@dominionherbalcollege.com','Evelyn Coggins','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Evelyn Coggins;;;\r\nFN:Evelyn Coggins\r\nEMAIL;type=INTERNET;type=HOME:ecoggins@dominionherbalcollege.com\r\nEND:VCARD',' evelyn coggins ecoggins@dominionherbalcollege.com',7),(106,'2012-10-15 16:49:00',0,'Evelyn Coggins','herbsforhealth@shaw.ca','Evelyn Coggins','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Evelyn Coggins;;;\r\nFN:Evelyn Coggins\r\nEMAIL;type=INTERNET;type=HOME:herbsforhealth@shaw.ca\r\nEND:VCARD',' evelyn coggins herbsforhealth@shaw.ca',7),(107,'2012-10-15 16:50:05',0,'Celina Ainsworth','cainsworth@dominionherbalcollege.com','Celina Ainsworth','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Celina Ainsworth;;;\r\nFN:Celina Ainsworth\r\nEMAIL;type=INTERNET;type=HOME:cainsworth@dominionherbalcollege.com\r\nEND:VCARD',' celina ainsworth cainsworth@dominionherbalcollege.com',7),(108,'2012-10-15 16:50:58',0,'Celina Ainsworth','celina@theherbalclinicanddispensary.com','Celina Ainsworth','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Celina Ainsworth;;;\r\nFN:Celina Ainsworth\r\nEMAIL;type=INTERNET;type=HOME:celina@theherbalclinicanddispensary.com\r\nEND:VCARD',' celina ainsworth celina@theherbalclinicanddispensary.com',7),(109,'2012-10-15 16:51:39',0,'Elizabeth Herman','eherman@dominionherbalcollege.com','Elizabeth Herman','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Elizabeth Herman;;;\r\nFN:Elizabeth Herman\r\nEMAIL;type=INTERNET;type=HOME:eherman@dominionherbalcollege.com\r\nEND:VCARD',' elizabeth herman eherman@dominionherbalcollege.com',7),(110,'2012-10-15 16:52:00',0,'Elizabeth Herman','ikikkertje@gmail.com','Elizabeth Herman','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Elizabeth Herman;;;\r\nFN:Elizabeth Herman\r\nEMAIL;type=INTERNET;type=HOME:ikikkertje@gmail.com\r\nEND:VCARD',' elizabeth herman ikikkertje@gmail.com',7),(111,'2012-10-15 16:52:31',0,'Julieta Criollo','jcriollo@dominionherbalcollege.com','Julieta Criollo','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Julieta Criollo;;;\r\nFN:Julieta Criollo\r\nEMAIL;type=INTERNET;type=HOME:jcriollo@dominionherbalcollege.com\r\nEND:VCARD',' julieta criollo jcriollo@dominionherbalcollege.com',7),(112,'2012-10-15 16:53:11',0,'Julieta Criollo','julietacriollo@yahoo.com','Julieta Criollo','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Julieta Criollo;;;\r\nFN:Julieta Criollo\r\nEMAIL;type=INTERNET;type=HOME:julietacriollo@yahoo.com\r\nEND:VCARD',' julieta criollo julietacriollo@yahoo.com',7),(113,'2012-10-15 16:53:33',0,'Katolen Yardley','kyardley@dominionherbalcollege.com','Katolen Yardley','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Katolen Yardley;;;\r\nFN:Katolen Yardley\r\nEMAIL;type=INTERNET;type=HOME:kyardley@dominionherbalcollege.com\r\nEND:VCARD',' katolen yardley kyardley@dominionherbalcollege.com',7),(114,'2012-10-15 16:53:52',0,'Katolen Yardley','info@katolenyardley.com','Katolen Yardley','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Katolen Yardley;;;\r\nFN:Katolen Yardley\r\nEMAIL;type=INTERNET;type=HOME:info@katolenyardley.com\r\nEND:VCARD',' katolen yardley info@katolenyardley.com',7),(115,'2012-10-18 07:50:13',0,'[CHT4] Valerie Taylor - 288','valsmith_09@hotmail.com','[CHT4] Valerie','Taylor - 288','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Taylor - 288;[CHT4] Valerie;;;\r\nFN:[CHT4] Valerie Taylor - 288\r\nEMAIL;type=INTERNET;type=OTHER:valsmith_09@hotmail.com\r\nEND:VCARD',' [cht4] valerie taylor 288 valsmith_09@hotmail.com',23),(116,'2012-10-18 07:50:26',0,'[CHT4] Vanessa Prescott - 304','vanessa_prescott@hotmail.com','[CHT4] Vanessa','Prescott - 304','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Prescott - 304;[CHT4] Vanessa;;;\r\nFN:[CHT4] Vanessa Prescott - 304\r\nEMAIL;type=INTERNET;type=HOME:vanessa_prescott@hotmail.com\r\nEND:VCARD',' [cht4] vanessa prescott 304 vanessa_prescott@hotmail.com',23),(117,'2012-10-18 07:50:42',0,'[CHT4] Danielle Briggs - 303 ','dbriggs@telus.net','[CHT4] Danielle','Briggs - 303 ','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Briggs - 303 ;[CHT4] Danielle;;;\r\nFN:[CHT4] Danielle Briggs - 303 \r\nEMAIL;type=INTERNET;type=HOME:dbriggs@telus.net\r\nEND:VCARD',' [cht4] danielle briggs dbriggs@telus.net',23),(118,'2012-10-18 11:33:28',0,'[CHT4] Chandra McGlone - 307','chandramcglone@yahoo.com','[CHT4] Chandra','McGlone - 307','BEGIN:VCARD\r\nVERSION:3.0\r\nN:McGlone - 307;[CHT4] Chandra;;;\r\nFN:[CHT4] Chandra McGlone - 307\r\nEMAIL;type=INTERNET;type=HOME:chandramcglone@yahoo.com\r\nEND:VCARD',' [cht4] chandra mcglone 307 chandramcglone@yahoo.com',23),(119,'2012-10-18 07:51:41',0,'[HC] Carolyn Diguistini - 6765','tbdi@hotmail.com','[HC] Carolyn','Diguistini - 6765','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Diguistini - 6765;[HC] Carolyn;;;\r\nFN:[HC] Carolyn Diguistini - 6765\r\nEMAIL;type=INTERNET;type=HOME:tbdi@hotmail.com\r\nEND:VCARD',' [hc] carolyn diguistini 6765 tbdi@hotmail.com',23),(120,'2012-10-18 07:52:13',0,'[CHT2] Valentyna Gorbata - 6840 ','v.horbata@gmail.com','[CHT2] Valentyna ','Gorbata - 6840 ','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Gorbata - 6840 ;[CHT2] Valentyna ;;;\r\nFN:[CHT2] Valentyna Gorbata - 6840 \r\nEMAIL;type=INTERNET;type=HOME:v.horbata@gmail.com\r\nEND:VCARD',' [cht2] valentyna gorbata 6840 v.horbata@gmail.com',23),(121,'2012-10-18 07:52:03',0,'[CHT2] Kosha Vaidya - 5935','koshav@hotmail.com','[CHT2] Kosha','Vaidya - 5935','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Vaidya - 5935;[CHT2] Kosha;;;\r\nFN:[CHT2] Kosha Vaidya - 5935\r\nEMAIL;type=INTERNET;type=HOME:koshav@hotmail.com\r\nEND:VCARD',' [cht2] kosha vaidya 5935 koshav@hotmail.com',23),(122,'2012-10-25 13:15:56',0,'Chanchal Cabrera','chanchal@chanchalcabrera.com','Chanchal','Cabrera','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Cabrera;Chanchal;;;\r\nFN:Chanchal Cabrera\r\nEMAIL;type=INTERNET;type=HOME:chanchal@chanchalcabrera.com\r\nEND:VCARD',' chanchal cabrera chanchal@chanchalcabrera.com',7),(123,'2012-10-25 13:20:18',0,'Chanchal Cabrera','chanchal@chanchalcabrera.com','Chanchal','Cabrera','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Cabrera;Chanchal;;;\r\nFN:Chanchal Cabrera\r\nEMAIL;type=INTERNET;type=HOME:chanchal@chanchalcabrera.com\r\nEND:VCARD',' chanchal cabrera chanchal@chanchalcabrera.com',7),(124,'2012-10-25 13:20:57',0,'Chanchal Cabrera','chanchal@chanchalcabrera.com','Chanchal','Cabrera','BEGIN:VCARD\r\nVERSION:3.0\r\nN:Cabrera;Chanchal;;;\r\nFN:Chanchal Cabrera\r\nEMAIL;type=INTERNET;type=HOME:chanchal@chanchalcabrera.com\r\nEND:VCARD',' chanchal cabrera chanchal@chanchalcabrera.com',7),(125,'2012-10-26 08:23:49',0,'pascalefaure.cannes2012','pascalefaure.cannes2012@canal-plus.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:pascalefaure.cannes2012\r\nEMAIL;type=INTERNET:pascalefaure.cannes2012@canal-plus.com\r\nEND:VCARD',' pascalefaure.cannes2012@canal plus.com pascalefaure.cannes2012',30),(126,'2012-11-28 13:53:52',0,'Bernice Birzneck','bbirzneck@dominionherbalcollege.com','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Bernice Birzneck\r\nEMAIL;type=INTERNET:bbirzneck@dominionherbalcollege.com\r\nEND:VCARD',' bbirzneck@dominionherbalcollege.com bernice birzneck',25),(127,'2012-12-17 12:54:30',0,'Elizabeth Walker','elizabeth@theherbwalker.ca','Elizabeth Walker','','BEGIN:VCARD\r\nVERSION:3.0\r\nN:;Elizabeth Walker;;;\r\nFN:Elizabeth Walker\r\nEMAIL;TYPE=INTERNET;TYPE=HOME:elizabeth@theherbwalker.ca\r\nEND:VCARD',' elizabeth walker elizabeth@theherbwalker.ca',7),(128,'2013-07-19 00:12:48',0,'Hedy@StudyingAbroadOnline','beijing@chuguo.cn','','','BEGIN:VCARD\r\nVERSION:3.0\r\nFN:Hedy@StudyingAbroadOnline\r\nEMAIL;TYPE=INTERNET:beijing@chuguo.cn\r\nEND:VCARD',' beijing@chuguo.cn hedy@studyingabroadonline',3); /*!40000 ALTER TABLE `contacts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cp_schema_version` -- DROP TABLE IF EXISTS `cp_schema_version`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cp_schema_version` ( `version_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `version` varchar(128) NOT NULL, `applied` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', PRIMARY KEY (`version_id`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cp_schema_version` -- LOCK TABLES `cp_schema_version` WRITE; /*!40000 ALTER TABLE `cp_schema_version` DISABLE KEYS */; INSERT INTO `cp_schema_version` VALUES (1,'0.5.2','2011-07-13 22:32:44'),(2,'0.5.4','2011-09-08 22:01:27'),(3,'0.6','2011-11-22 22:00:38'),(4,'0.7.1','2012-04-25 22:07:51'),(5,'0.7.2','2012-06-19 22:05:54'),(6,'0.8.1','2012-12-12 12:25:46'),(7,'0.8.4','2013-01-07 22:01:25'),(8,'0.8.5','2013-02-25 22:00:27'),(9,'0.9.2','2013-08-21 22:00:42'); /*!40000 ALTER TABLE `cp_schema_version` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dictionary` -- DROP TABLE IF EXISTS `dictionary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dictionary` ( `user_id` int(10) unsigned DEFAULT NULL, `language` varchar(5) NOT NULL, `data` longtext NOT NULL, UNIQUE KEY `uniqueness` (`user_id`,`language`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dictionary` -- LOCK TABLES `dictionary` WRITE; /*!40000 ALTER TABLE `dictionary` DISABLE KEYS */; /*!40000 ALTER TABLE `dictionary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `identities` -- DROP TABLE IF EXISTS `identities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `identities` ( `identity_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `del` tinyint(1) NOT NULL DEFAULT '0', `standard` tinyint(1) NOT NULL DEFAULT '0', `name` varchar(128) NOT NULL, `organization` varchar(128) NOT NULL DEFAULT '', `email` varchar(128) NOT NULL, `reply-to` varchar(128) NOT NULL DEFAULT '', `bcc` varchar(128) NOT NULL DEFAULT '', `signature` text, `html_signature` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`identity_id`), KEY `user_identities_index` (`user_id`,`del`), KEY `email_identities_index` (`email`,`del`) ) ENGINE=MyISAM AUTO_INCREMENT=39 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `identities` -- LOCK TABLES `identities` WRITE; /*!40000 ALTER TABLE `identities` DISABLE KEYS */; INSERT INTO `identities` VALUES (1,1,'1000-01-01 00:00:00',0,1,'','','art@dominionherbal.com','','','',0),(2,2,'1000-01-01 00:00:00',0,1,'','','admin@dominionherbalcollege.com','','','',0),(3,3,'2011-10-21 14:10:35',0,1,'Dominion Herbal College','Dominion Herbal College','info@dominionherbalcollege.com','info@dominionherbalcollege.com','','
Dominion Herbal College
Tel: 604-433-1926
Toll Free: 888-342-1926
Fax: 604-433-1925
info@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
*************************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
\r\n

',1),(4,4,'2013-06-30 16:01:36',0,1,'Carol Barber','','cbarber@dominionherbalcollege.com','','','
Carol Barber CHT, MH
Instructor
Dominion Herbal College
cbarber@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***********************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.

',1),(5,5,'2011-06-12 23:08:03',0,1,'dhc','','dhc@dominionherbalcollege.com','','',NULL,0),(6,6,'2011-08-18 08:40:03',0,1,'','','grads@dominionherbalcollege.com','','',NULL,0),(7,7,'2011-10-03 12:51:03',0,1,'Bernice Birzneck','','bbirzneck@dominionherbalcollege.com','','','
Bernice Birzneck
Registrar
Dominion Herbal College

Tel: 604-433-1926
Fax: 604-433-1925

bbirzneck@dominionherbalcollege.com
www.dominionherbalcollege.com\r\n\r\n\"North America\'s Oldest School of Herbal Medicine\" \r\n*********************************************************\r\nThis message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.

',1),(8,8,'2011-10-04 20:57:47',0,1,'Meredith Burney','','mburney@dominionherbalcollege.com','','','
Meredith Burney, CHT
Instructor
Dominion Herbal College
mburney@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***********************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
\r\n

',1),(9,9,'2011-10-04 20:59:48',0,1,'Dr. Art Birzneck','','drbirzneck@dominionherbalcollege.com','','','
Dr. Art Birzneck, DC
Dean
Dominion Herbal College
Tel: 604-433-1926
Fax: 604-433-1925
drbirzneck@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
**********************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
\r\n

',1),(10,10,'2011-10-04 21:01:37',0,1,'Mara Hynninen','','mhynninen@dominionherbalcollege.com','','','
Dr. Mara Hynninen, BSc, CHT, DNM
Instructor
Dominion Herbal College
mhynninen@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***********************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
\r\n

',1),(11,11,'2012-09-14 13:40:52',0,1,'Jazz Mattu','','jmattu@dominionherbalcollege.com','','','
Jasbir (Jazz) Mattu, MNIMH, RHT
Clinic Supervisor
Dominion Herbal College
jmattu@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***********************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
\r\n

',1),(12,12,'2011-10-04 21:05:23',0,1,'Pinki Mattu','','hmattu@dominionherbalcollege.com','','','
Harwinder (Pinki) Mattu, RHT
Instructor
Dominion Herbal College
hmattu@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***********************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
\r\n

',1),(13,13,'2012-10-25 13:24:45',0,1,'Judy Nelson','','jnelson@dominionherbalcollege.com','','','
Dr. Judy Nelson, DC, ND, MH 
Vice President Herbal Studies
Dominion Herbal College
Tel: 604-433-1926
Fax: 604-433-1925
jnelson@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
\r\n***********************************************************\r\nThis message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
\r\n

',1),(14,14,'2011-10-28 11:55:11',0,1,'Marcia Dixon','','mdixon@dominionherbalcollege.com','','','
Marcia Dixon, BSc, MSc, MNIMH, RH
Clinic Supervisor
Dominion Herbal College
mdixon@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***********************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.

',1),(15,15,'2011-10-28 12:54:12',0,1,'Cobi Slater','','cslater@dominionherbalcollege.com','','','

Dr. Cobi Slater, PhD, DNM, CHT, RNCP, ROHP
Clinic Supervisor
Dominion Herbal College
cslater@dominionherbalcollege.com
www.dominionherbalcollege.com

\r\n

\"North America\'s Oldest School of Herbal Medicine\"
***********************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.

\r\n

 

',1),(16,16,'2012-01-23 19:15:47',0,1,'','','art@birchtreefilms.com','','',NULL,0),(17,17,'2012-01-26 09:22:47',0,1,'','','info@birchtreefilms.com','','',NULL,0),(18,18,'2012-01-30 10:54:23',0,1,'Birch Tree Entertainment EFM 2012','','efm2012@birchtreefilms.com','','','',0),(19,19,'2012-01-27 21:41:11',0,1,'','','sales@birchtreefilms.com','','',NULL,0),(20,20,'2012-04-16 16:10:24',0,1,'btfilms','','btfilms@birchtreefilms.com','','',NULL,0),(21,21,'2012-05-11 00:47:05',0,1,'','','cannes2012@birchtreeentertainment.com','','',NULL,0),(22,22,'2012-05-11 00:53:03',0,1,'Birch Tree Cannes 2012','','cannes2012@birchtreefilms.com','','','',0),(23,23,'2012-09-10 13:43:20',0,1,'Julieta Criollo','','jcriollo@dominionherbalcollege.com','','','
Julieta Criollo, DNM, CHT, RHT
Instructor
Dominion Herbal College
jcriollo@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***********************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
',1),(24,23,'2012-07-13 14:17:51',1,0,'Julieta Criollo','','jcriollo@dominionherbalcollege.com','','','',0),(25,24,'2012-09-10 13:45:15',0,1,'Maryann Abbs','','mabbs@dominionherbalcollege.com','','','

Maryann Abbs, BSc, CHT, RHT
Instructor
Dominion Herbal College
mabbs@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.

',1),(26,25,'2013-06-30 16:10:50',0,1,'Elizabeth Herman','','eherman@dominionherbalcollege.com','','','

Elizabeth Herman, MA (History), MA (East Asia Studies), CHT, RHT
Instructor
Dominion Herbal College
eherman@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.

',1),(27,26,'2012-09-10 14:12:20',0,1,'Celina Ainsworth','','cainsworth@dominionherbalcollege.com','','','

Celina Ainsworth, CHT, MH
Instructor
Dominion Herbal College
cainsworth@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.

',1),(28,27,'2013-07-08 19:22:32',0,1,'Evelyn Coggins','','ecoggins@dominionherbalcollege.com','','','

Evelyn Coggins, MHS, CHT, RH
Instructor
Dominion Herbal College
ecoggins@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.

',1),(29,28,'2012-09-14 13:32:29',0,1,'Katolen Yardley','','kyardley@dominionherbalcollege.com','','','
Katolen Yardley, CHT, MNIMH, RHT
Clinic Supervisor
Dominion Herbal College
kyardley@dominionherbalcollege.com
www.dominionherbalcollege.com

\"North America\'s Oldest School of Herbal Medicine\"
***************************************************
This message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
',1),(30,29,'2012-09-26 19:35:19',0,1,'','','press@birchtreefilms.com','','',NULL,0),(31,30,'2012-10-26 00:51:25',0,1,'BIrch Tree AFM 2012','','afm2012@birchtreefilms.com','','','',0),(32,31,'2013-02-02 23:10:47',0,1,'Birch Tree EFM 2013','','efm2013@birchtreefilms.com','','','
Birch Tree Entertainment
10620 Southern Highlands Pkwy
#110-418
Las Vegas, NV 89141
t: +1 702 858 2782
f: +1 702 583 7928
e: sales@birchtreefilms.com
www.birchtreeentertainment.com
',1),(33,32,'2013-04-12 15:29:53',0,1,'DHC CH online support','Dominion Herbal College','chonline@dominionherbalcollege.com','','','
DHC CH online support\r\nchonline@dominionherbalcollege.com\r\n\r\n\"North America\'s Oldest School of Herbal Medicine\" \r\n*************************************************************\r\nThis message and any attachments are confidential to the ordinary user of the email address to which it was addressed and may also be privileged. If you are not the addressee you may not copy, forward, disclose or use any part of the message or its attachments and if you have received this message in error, please notify the sender immediately. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, arrive late or contain viruses. The sender therefore does not accept liability for any errors or omissions in the context of this message which arise as a result of internet transmission. Any opinions contained in this message are those of the author and are not given or endorsed by Dominion Herbal College unless otherwise clearly indicated in this message.
',1),(34,33,'2013-05-09 23:13:42',0,1,'Birch Tree Entertainment MIF 2013','','cannes2013@birchtreefilms.com','','','
Birch Tree Entertainment\r\nAt Cannes 2013:\r\nMay 15th - 21st  \r\nMajestic Hotel Suite #117\r\nTel: +33 4 92 98 77 00 ext 117 \r\nMobile: +33 7 8709 6300 \r\nwww.birchtreeentertainment.com
',1),(35,34,'2013-06-06 16:07:24',0,1,'','','test@dominionherbalcollege.com','','',NULL,0),(36,35,'2013-06-16 14:11:56',0,1,'','','MABBS@DOMINIONHERBALCOLLEGE.COM','','',NULL,0),(37,36,'2013-07-05 08:36:54',0,1,'asr','','asr@actionslatereleasing.com','','',NULL,0),(38,37,'2013-07-05 09:21:04',0,1,'','','info@actionslatereleasing.com','','',NULL,0); /*!40000 ALTER TABLE `identities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `searches` -- DROP TABLE IF EXISTS `searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `searches` ( `search_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `type` int(3) NOT NULL DEFAULT '0', `name` varchar(128) NOT NULL, `data` text, PRIMARY KEY (`search_id`), UNIQUE KEY `uniqueness` (`user_id`,`type`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `searches` -- LOCK TABLES `searches` WRITE; /*!40000 ALTER TABLE `searches` DISABLE KEYS */; /*!40000 ALTER TABLE `searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `session` -- DROP TABLE IF EXISTS `session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `session` ( `sess_id` varchar(128) NOT NULL, `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `changed` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `ip` varchar(40) NOT NULL, `vars` mediumtext NOT NULL, PRIMARY KEY (`sess_id`), KEY `changed_index` (`changed`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `session` -- LOCK TABLES `session` WRITE; /*!40000 ALTER TABLE `session` DISABLE KEYS */; INSERT INTO `session` VALUES ('246c585d036a4bac0ce3016a75f0224e','2013-09-13 21:28:58','2013-09-13 22:36:27','115.112.145.194','bGFuZ3VhZ2V8czo1OiJlbl9VUyI7c2tpbnxzOjU6ImxhcnJ5IjtpbWFwX25hbWVzcGFjZXxhOjQ6e3M6ODoicGVyc29uYWwiO2E6MTp7aTowO2E6Mjp7aTowO3M6NjoiSU5CT1guIjtpOjE7czoxOiIuIjt9fXM6NToib3RoZXIiO047czo2OiJzaGFyZWQiO2E6Mjp7aTowO2E6Mjp7aTowO3M6ODoiI3NoYXJlZC4iO2k6MTtzOjE6Ii4iO31pOjE7YToyOntpOjA7czo3OiJzaGFyZWQuIjtpOjE7czoxOiIuIjt9fXM6NjoicHJlZml4IjtzOjY6IklOQk9YLiI7fWltYXBfZGVsaW1pdGVyfHM6MToiLiI7dXNlcl9pZHxzOjI6IjM0Ijt1c2VybmFtZXxzOjMwOiJ0ZXN0QGRvbWluaW9uaGVyYmFsY29sbGVnZS5jb20iO3N0b3JhZ2VfaG9zdHxzOjk6ImxvY2FsaG9zdCI7c3RvcmFnZV9wb3J0fGk6MTQzO3N0b3JhZ2Vfc3NsfE47cGFzc3dvcmR8czozMjoid2JWMjVodzUwZ21uV3VXUWdaR1dOKzRBeUJFSUkwYisiO2xvZ2luX3RpbWV8aToxMzc5MTMyOTM4O3Rhc2t8czo4OiJzZXR0aW5ncyI7aW1hcF9ob3N0fHM6OToibG9jYWxob3N0IjttYm94fHM6NToiSU5CT1giO3NvcnRfY29sfHM6MDoiIjtzb3J0X29yZGVyfHM6NDoiREVTQyI7U1RPUkFHRV9USFJFQUR8YToyOntpOjA7czoxNDoiT1JERVJFRFNVQkpFQ1QiO2k6MTtzOjEwOiJSRUZFUkVOQ0VTIjt9U1RPUkFHRV9RVU9UQXxiOjE7U1RPUkFHRV9MSVNULUVYVEVOREVEfGI6MDtxdW90YV9kaXNwbGF5fHM6NDoidGV4dCI7bGlzdF9hdHRyaWJ8YTo1OntzOjQ6Im5hbWUiO3M6ODoibWVzc2FnZXMiO3M6MjoiaWQiO3M6MTE6Im1lc3NhZ2VsaXN0IjtzOjU6ImNsYXNzIjtzOjI0OiJyZWNvcmRzLXRhYmxlIHNvcnRoZWFkZXIiO3M6MTU6Im9wdGlvbnNtZW51aWNvbiI7czo0OiJ0cnVlIjtzOjc6ImNvbHVtbnMiO2E6ODp7aTowO3M6NzoidGhyZWFkcyI7aToxO3M6Nzoic3ViamVjdCI7aToyO3M6Njoic3RhdHVzIjtpOjM7czo2OiJmcm9tdG8iO2k6NDtzOjQ6ImRhdGUiO2k6NTtzOjQ6InNpemUiO2k6NjtzOjQ6ImZsYWciO2k6NztzOjEwOiJhdHRhY2htZW50Ijt9fXNraW5fcGF0aHxzOjExOiJza2lucy9sYXJyeSI7Zm9sZGVyc3xhOjE6e3M6NToiSU5CT1giO2E6Mjp7czozOiJjbnQiO2k6MDtzOjY6Im1heHVpZCI7aTowO319dW5zZWVuX2NvdW50fGE6MTp7czo1OiJJTkJPWCI7aTowO31hZGRyZXNzYm9va3NfY291bnR8aToxO2FkZHJlc3Nib29rc19jb3VudF93cml0ZWFibGV8aToxO2NvbnRhY3Rjb3VudGRpc3BsYXl8czoxMToiZnJvbXRvc2hvcnQiO1NUT1JBR0VfQUNMfGI6MTs='),('0462f32844cf0657d22b268c0c72e4b6','2013-09-08 15:53:00','2013-09-09 16:33:10','216.113.201.151','bGFuZ3VhZ2V8czo1OiJlbl9VUyI7c2tpbnxzOjU6ImxhcnJ5IjtpbWFwX25hbWVzcGFjZXxhOjQ6e3M6ODoicGVyc29uYWwiO2E6MTp7aTowO2E6Mjp7aTowO3M6NjoiSU5CT1guIjtpOjE7czoxOiIuIjt9fXM6NToib3RoZXIiO047czo2OiJzaGFyZWQiO2E6Mjp7aTowO2E6Mjp7aTowO3M6ODoiI3NoYXJlZC4iO2k6MTtzOjE6Ii4iO31pOjE7YToyOntpOjA7czo3OiJzaGFyZWQuIjtpOjE7czoxOiIuIjt9fXM6NjoicHJlZml4IjtzOjY6IklOQk9YLiI7fWltYXBfZGVsaW1pdGVyfHM6MToiLiI7dXNlcl9pZHxzOjI6IjI0Ijt1c2VybmFtZXxzOjMxOiJtYWJic0Bkb21pbmlvbmhlcmJhbGNvbGxlZ2UuY29tIjtzdG9yYWdlX2hvc3R8czo5OiJsb2NhbGhvc3QiO3N0b3JhZ2VfcG9ydHxpOjE0MztzdG9yYWdlX3NzbHxOO3Bhc3N3b3JkfHM6MzI6Ikx6UDllaldYOU9PaVZsMlk5aTd3KzJQUUkzRmVSZFFCIjtsb2dpbl90aW1lfGk6MTM3ODY4MDc4MDt0YXNrfHM6NDoibWFpbCI7aW1hcF9ob3N0fHM6OToibG9jYWxob3N0IjttYm94fHM6NToiSU5CT1giO3NvcnRfY29sfHM6NDoiZGF0ZSI7c29ydF9vcmRlcnxzOjQ6IkRFU0MiO1NUT1JBR0VfVEhSRUFEfGE6Mjp7aTowO3M6MTQ6Ik9SREVSRURTVUJKRUNUIjtpOjE7czoxMDoiUkVGRVJFTkNFUyI7fVNUT1JBR0VfUVVPVEF8YjoxO1NUT1JBR0VfTElTVC1FWFRFTkRFRHxiOjA7cXVvdGFfZGlzcGxheXxzOjQ6InRleHQiO2xpc3RfYXR0cmlifGE6NTp7czo0OiJuYW1lIjtzOjg6Im1lc3NhZ2VzIjtzOjI6ImlkIjtzOjExOiJtZXNzYWdlbGlzdCI7czo1OiJjbGFzcyI7czoyNDoicmVjb3Jkcy10YWJsZSBzb3J0aGVhZGVyIjtzOjE1OiJvcHRpb25zbWVudWljb24iO3M6NDoidHJ1ZSI7czo3OiJjb2x1bW5zIjthOjg6e2k6MDtzOjc6InRocmVhZHMiO2k6MTtzOjc6InN1YmplY3QiO2k6MjtzOjY6InN0YXR1cyI7aTozO3M6NjoiZnJvbXRvIjtpOjQ7czo0OiJkYXRlIjtpOjU7czo0OiJzaXplIjtpOjY7czo0OiJmbGFnIjtpOjc7czoxMDoiYXR0YWNobWVudCI7fX1za2luX3BhdGh8czoxMToic2tpbnMvbGFycnkiO3Vuc2Vlbl9jb3VudHxhOjE6e3M6NToiSU5CT1giO2k6MTt9Zm9sZGVyc3xhOjE6e3M6NToiSU5CT1giO2E6Mjp7czozOiJjbnQiO2k6ODk7czo2OiJtYXh1aWQiO2k6MjM0O319U1RPUkFHRV9TT1JUfGI6MTticm93c2VyX2NhcHN8YTozOntzOjM6InBkZiI7czoxOiIxIjtzOjU6ImZsYXNoIjtzOjE6IjEiO3M6MzoidGlmIjtzOjE6IjAiO31zYWZlX21lc3NhZ2VzfGE6MTp7czo5OiJJTkJPWDoyMzQiO2I6MDt9d3JpdGVhYmxlX2Fib29rfGI6MTs='); /*!40000 ALTER TABLE `session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `system` -- DROP TABLE IF EXISTS `system`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `system` ( `name` varchar(64) NOT NULL, `value` mediumtext, PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `system` -- LOCK TABLES `system` WRITE; /*!40000 ALTER TABLE `system` DISABLE KEYS */; /*!40000 ALTER TABLE `system` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `username` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, `mail_host` varchar(128) NOT NULL, `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `last_login` datetime DEFAULT NULL, `language` varchar(5) DEFAULT NULL, `preferences` text, PRIMARY KEY (`user_id`), UNIQUE KEY `username` (`username`,`mail_host`) ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'art@dominionherbal.com','localhost','2010-10-05 15:07:55','2010-10-05 15:07:55','en_US',NULL),(2,'admin@dominionherbalcollege.com','localhost','2010-10-30 16:07:02','2010-10-31 18:05:46','en_US',NULL),(3,'info@dominionherbalcollege.com','localhost','2010-10-31 18:09:50','2013-09-09 12:59:03','en_US','a:18:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:17:\"message_threading\";a:0:{}s:17:\"collapsed_folders\";s:0:\"\";s:11:\"search_mods\";a:7:{s:1:\"*\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:10:\"INBOX.Sent\";a:1:{s:2:\"to\";i:1;}s:12:\"INBOX.Drafts\";a:2:{s:7:\"subject\";i:1;s:2:\"to\";i:1;}s:11:\"INBOX.Trash\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:11:\"INBOX.PCTIA\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:5:\"INBOX\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:21:\"INBOX.email addresses\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}}s:12:\"preview_pane\";s:1:\"0\";s:9:\"list_cols\";a:7:{i:0;s:7:\"threads\";i:1;s:7:\"subject\";i:2;s:6:\"fromto\";i:3;s:4:\"date\";i:4;s:4:\"size\";i:5;s:4:\"flag\";i:6;s:10:\"attachment\";}s:10:\"htmleditor\";i:1;s:14:\"draft_autosave\";i:60;s:11:\"mdn_default\";b:0;s:11:\"dsn_default\";b:0;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:12:\"mdn_requests\";i:1;s:8:\"timezone\";d:-8;s:15:\"namespace_fixed\";b:1;}'),(4,'cbarber@dominionherbalcollege.com','localhost','2010-10-31 18:48:43','2013-09-04 09:12:15','en_US','a:11:{s:11:\"search_mods\";a:4:{s:1:\"*\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:10:\"INBOX.Sent\";a:3:{s:7:\"subject\";i:1;s:2:\"to\";i:1;s:4:\"from\";i:1;}s:12:\"INBOX.Drafts\";a:2:{s:7:\"subject\";i:1;s:2:\"to\";i:1;}s:5:\"INBOX\";a:3:{s:7:\"subject\";i:1;s:4:\"from\";i:1;s:2:\"to\";i:1;}}s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:10:\"htmleditor\";i:1;s:14:\"draft_autosave\";i:600;s:8:\"show_sig\";i:1;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:8:\"timezone\";d:-8;s:15:\"namespace_fixed\";b:1;}'),(5,'dhc','localhost','2011-06-12 23:08:03','2013-07-03 09:01:27','en_US','a:3:{s:15:\"default_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(6,'grads@dominionherbalcollege.com','localhost','2011-08-18 08:40:03','2012-11-20 16:19:59','en_US','a:4:{s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:15:\"namespace_fixed\";b:1;}'),(7,'bbirzneck@dominionherbalcollege.com','localhost','2011-09-23 15:05:33','2013-09-06 16:38:11','en_US','a:12:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:11:\"search_mods\";a:3:{s:1:\"*\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:10:\"INBOX.Sent\";a:2:{s:7:\"subject\";i:1;s:2:\"to\";i:1;}s:12:\"INBOX.Drafts\";a:2:{s:7:\"subject\";i:1;s:2:\"to\";i:1;}}s:12:\"preview_pane\";s:1:\"0\";s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:10:\"dst_active\";b:0;s:8:\"pagesize\";i:40;s:15:\"namespace_fixed\";b:1;}'),(8,'mburney@dominionherbalcollege.com','localhost','2011-09-24 14:01:16','2013-09-03 08:09:06','en_US','a:6:{s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:15:\"namespace_fixed\";b:1;}'),(9,'drbirzneck@dominionherbalcollege.com','localhost','2011-09-24 14:04:53','2013-09-06 14:54:17','en_US','a:8:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:15:\"namespace_fixed\";b:1;}'),(10,'mhynninen@dominionherbalcollege.com','localhost','2011-09-24 14:13:37','2012-09-10 10:36:48','en_US','a:8:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:15:\"namespace_fixed\";b:1;}'),(11,'jmattu@dominionherbalcollege.com','localhost','2011-09-24 14:14:43','2013-06-30 16:12:23','en_US','a:6:{s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:15:\"namespace_fixed\";b:1;}'),(12,'hmattu@dominionherbalcollege.com','localhost','2011-09-24 14:15:53','2012-09-10 10:38:40','en_US','a:6:{s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:15:\"namespace_fixed\";b:1;}'),(13,'jnelson@dominionherbalcollege.com','localhost','2011-09-24 14:16:56','2013-09-04 08:32:55','en_US','a:6:{s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:15:\"namespace_fixed\";b:1;}'),(14,'mdixon@dominionherbalcollege.com','localhost','2011-10-28 11:45:22','2012-09-14 13:27:13','en_US','a:8:{s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:10:\"htmleditor\";i:1;s:14:\"draft_autosave\";i:600;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:15:\"namespace_fixed\";b:1;}'),(15,'cslater@dominionherbalcollege.com','localhost','2011-10-28 12:13:21','2012-09-10 10:27:39','en_US','a:8:{s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:10:\"htmleditor\";i:1;s:14:\"draft_autosave\";i:600;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:15:\"namespace_fixed\";b:1;}'),(16,'art@birchtreefilms.com','localhost','2012-01-23 19:15:47','2013-08-15 09:01:38','en_US','a:3:{s:10:\"htmleditor\";i:1;s:11:\"top_posting\";b:1;s:15:\"namespace_fixed\";b:1;}'),(17,'info@birchtreefilms.com','localhost','2012-01-26 09:22:47','2013-08-02 23:00:54','en_US','a:1:{s:15:\"namespace_fixed\";b:1;}'),(18,'efm2012@birchtreefilms.com','localhost','2012-01-26 10:54:50','2013-01-03 21:00:30','en_US','a:2:{s:10:\"htmleditor\";i:1;s:15:\"namespace_fixed\";b:1;}'),(19,'sales@birchtreefilms.com','localhost','2012-01-27 21:41:11','2013-08-15 09:02:31','en_US','a:7:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:12:\"preview_pane\";s:1:\"0\";s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:15:\"namespace_fixed\";b:1;}'),(20,'btfilms','localhost','2012-04-16 16:10:24','2013-07-14 09:33:14','en_US','a:1:{s:15:\"namespace_fixed\";b:1;}'),(21,'cannes2012@birchtreeentertainment.com','localhost','2012-05-11 00:47:05','2012-05-11 00:47:05','en_US','a:3:{s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(22,'cannes2012@birchtreefilms.com','localhost','2012-05-11 00:51:48','2012-10-27 23:14:35','en_US','a:7:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:10:\"htmleditor\";i:1;s:11:\"top_posting\";b:1;s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(23,'jcriollo@dominionherbalcollege.com','localhost','2012-07-13 14:13:39','2013-08-21 10:07:33','en_US','a:16:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:17:\"message_threading\";a:0:{}s:11:\"search_mods\";a:8:{s:1:\"*\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:10:\"INBOX.Sent\";a:2:{s:7:\"subject\";i:1;s:2:\"to\";i:1;}s:12:\"INBOX.Drafts\";a:2:{s:7:\"subject\";i:1;s:2:\"to\";i:1;}s:29:\"INBOX.Subj-Pharmacy.2012-2013\";a:1:{s:7:\"subject\";i:1;}s:19:\"INBOX.Subj-Pharmacy\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:51:\"INBOX.Subj-Pharmacy.2012-2013.Submissions-2012-2013\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:43:\"INBOX.Subj-Pharmacy.2012-2013.QA--2012-2013\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:5:\"INBOX\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}}s:12:\"skip_deleted\";b:1;s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:1;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:8:\"timezone\";s:4:\"auto\";s:10:\"dst_active\";b:0;s:8:\"pagesize\";i:100;s:15:\"default_charset\";s:5:\"UTF-8\";s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:15:\"namespace_fixed\";b:1;}'),(24,'mabbs@dominionherbalcollege.com','localhost','2012-09-10 13:20:34','2013-09-08 18:06:55','en_US','a:11:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:17:\"message_threading\";a:1:{s:10:\"INBOX.Junk\";b:1;}s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:18:\"strip_existing_sig\";b:0;s:9:\"sig_above\";b:1;s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(25,'eherman@dominionherbalcollege.com','localhost','2012-09-10 13:46:46','2013-08-20 20:52:13','en_US','a:8:{s:11:\"search_mods\";a:4:{s:1:\"*\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}s:10:\"INBOX.Sent\";a:2:{s:7:\"subject\";i:1;s:2:\"to\";i:1;}s:12:\"INBOX.Drafts\";a:2:{s:7:\"subject\";i:1;s:2:\"to\";i:1;}s:5:\"INBOX\";a:2:{s:7:\"subject\";i:1;s:4:\"from\";i:1;}}s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:9:\"sig_above\";b:1;s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(26,'cainsworth@dominionherbalcollege.com','localhost','2012-09-10 14:09:22','2013-07-07 03:52:53','en_US','a:7:{s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:9:\"sig_above\";b:1;s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(27,'ecoggins@dominionherbalcollege.com','localhost','2012-09-10 14:16:19','2013-09-01 09:55:20','en_US','a:9:{s:12:\"preview_pane\";s:1:\"0\";s:23:\"addressbook_search_mods\";a:5:{s:4:\"name\";i:1;s:9:\"firstname\";i:1;s:7:\"surname\";i:1;s:5:\"email\";i:1;s:1:\"*\";i:1;}s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:9:\"sig_above\";b:1;s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(28,'kyardley@dominionherbalcollege.com','localhost','2012-09-14 13:20:53','2013-06-30 15:41:44','en_US','a:16:{s:8:\"timezone\";s:4:\"auto\";s:10:\"dst_active\";b:0;s:11:\"date_format\";s:5:\"m/d/Y\";s:11:\"time_format\";s:5:\"g:i a\";s:10:\"date_short\";s:7:\"D g:i a\";s:9:\"date_long\";s:11:\"m/d/Y g:i a\";s:19:\"default_addressbook\";s:1:\"0\";s:20:\"addressbook_sort_col\";s:9:\"firstname\";s:24:\"addressbook_name_listing\";i:1;s:10:\"htmleditor\";i:1;s:14:\"draft_autosave\";i:60;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:9:\"sig_above\";b:1;s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:15:\"namespace_fixed\";b:1;}'),(29,'press@birchtreefilms.com','localhost','2012-09-26 19:35:19','2013-01-25 10:19:34','en_US','a:6:{s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(30,'afm2012@birchtreefilms.com','localhost','2012-10-22 23:55:25','2013-04-10 13:33:19','en_US','a:7:{s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:9:\"sig_above\";b:1;s:20:\"default_imap_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(31,'efm2013@birchtreefilms.com','localhost','2013-01-26 13:19:34','2013-04-10 13:28:14','en_US','a:10:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:9:\"sig_above\";b:1;s:12:\"default_font\";s:7:\"Verdana\";s:15:\"default_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(32,'chonline@dominionherbalcollege.com','localhost','2013-02-05 22:33:10','2013-09-06 09:05:22','en_US','a:10:{s:16:\"message_sort_col\";s:4:\"date\";s:18:\"message_sort_order\";s:4:\"DESC\";s:17:\"collapsed_folders\";s:0:\"\";s:10:\"htmleditor\";i:1;s:8:\"show_sig\";i:2;s:11:\"top_posting\";b:1;s:12:\"default_font\";s:7:\"Verdana\";s:15:\"default_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(33,'cannes2013@birchtreefilms.com','localhost','2013-05-04 16:18:38','2013-06-02 22:13:48','en_US','a:7:{s:10:\"htmleditor\";i:1;s:11:\"top_posting\";b:1;s:9:\"sig_above\";b:1;s:12:\"default_font\";s:7:\"Verdana\";s:15:\"default_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(34,'test@dominionherbalcollege.com','localhost','2013-06-06 16:07:24','2013-09-13 21:28:58','en_US','a:3:{s:15:\"default_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(35,'MABBS@DOMINIONHERBALCOLLEGE.COM','localhost','2013-06-16 14:11:56','2013-08-08 11:35:19','en_US','a:3:{s:15:\"default_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(36,'asr','localhost','2013-07-05 08:36:54','2013-07-05 08:36:54','en_US','a:3:{s:15:\"default_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'),(37,'info@actionslatereleasing.com','localhost','2013-07-05 09:21:04','2013-07-05 09:21:04','en_US','a:3:{s:15:\"default_folders\";a:5:{i:0;s:5:\"INBOX\";i:1;s:12:\"INBOX.Drafts\";i:2;s:10:\"INBOX.Sent\";i:3;s:10:\"INBOX.Junk\";i:4;s:11:\"INBOX.Trash\";}s:8:\"timezone\";s:4:\"auto\";s:15:\"namespace_fixed\";b:1;}'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2013-09-13 22:38:40