Changeset 214
- Timestamp:
- 10/11/07 21:22:08 (15 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
includes/config.inc.default.php (modified) (1 diff)
-
mail_system.sql (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/config.inc.default.php
r205 r214 84 84 "autoresponder_send", "email_options","fetchmail", 85 85 "mailarchive","mailfilter","spamassassin","spamassassin_learn","autoresponder_xheader"); 86 $config['cpves_version']="0.10 -SVN";86 $config['cpves_version']="0.10"; 87 87 require_once(ROOT . '/includes/func.inc.php'); 88 88 ?> -
trunk/mail_system.sql
r203 r214 4 4 -- 5 5 -- Host: localhost 6 -- Generation Time: Sep 15, 2007 at 08:13PM6 -- Generation Time: Oct 11, 2007 at 09:17 PM 7 7 -- Server version: 5.0.32 8 8 -- PHP Version: 5.2.0-8+etch7 … … 25 25 `full_name` varchar(255) collate utf8_unicode_ci default NULL, 26 26 `cpasswd` varchar(255) character set utf8 NOT NULL default '', 27 `web_lang` varchar( 8) collate utf8_unicode_ci NOT NULL,27 `web_lang` varchar(14) collate utf8_unicode_ci NOT NULL, 28 28 PRIMARY KEY (`id`), 29 29 UNIQUE KEY `id` (`id`) … … 149 149 `p_check_grey` tinyint(1) NOT NULL default '0', 150 150 `p_mlists` tinyint(4) NOT NULL default '0', 151 `p_spam_fwd` tinyint(1) NOT NULL default '0', 151 152 PRIMARY KEY (`id`), 152 153 UNIQUE KEY `dnsname_2` (`dnsname`) … … 352 353 `p_check_polw` tinyint(1) NOT NULL default '1', 353 354 `p_check_grey` tinyint(1) NOT NULL default '0', 355 `p_spam_fwd` tinyint(1) NOT NULL default '0', 354 356 PRIMARY KEY (`id`), 355 357 UNIQUE KEY `email` (`email`) … … 357 359 358 360 -- -------------------------------------------------------- 359 360 --361 -- Table structure for table `smtpd_recipient_classes`362 --363 364 361 365 362 DROP VIEW IF EXISTS smtpd_recipient_classes; … … 371 368 ); 372 369 370
