Changeset d36701a for npl/mailserver
- Timestamp:
- 06/13/18 16:04:12 (7 years ago)
- Branches:
- gcc484, master, perl-5.22
- Children:
- 28afc38
- Parents:
- 20eb816
- Location:
- npl/mailserver/dspam
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
npl/mailserver/dspam/dspam.build
r20eb816 rd36701a 1 654 01 6541 -
npl/mailserver/dspam/dspam.md5
r20eb816 rd36701a 387 387 d48b067b991ae2012862d109d21ebda3 ./dspam_clean.cron 388 388 582b859928225701665e9bb8a1e897eb ./dspam.conf 389 cb736215da817654490524f9a1b3947a./dspam.pkg389 7b1e0e00192de8bfc02758d9338b6942 ./dspam.pkg 390 390 0ac2b4b6380f0f6ebb937bfdc15f33c0 ./dspam.SlackBuild 391 2dc712f32aa37def29df79c8bf746857./dspam.SlackBuild.log.gz392 c9badd49fcf25a18fab35b7e2fd7d8af./dspam_webui.pkg391 55425d5814ba9c4bfef258554b2a79ac ./dspam.SlackBuild.log.gz 392 801607ddf4293972af2610436546c2d0 ./dspam_webui.pkg 393 393 d2aabf5ebfac3a5995171b98ac23845f ./global.sql.gz 394 394 f648885d1dac1916b6d9cc88536db3c7 ./group 395 395 b3b686e10af71dd4c928b9d62c547f9e ./htaccess 396 f65b1fabc27074a9ef31d57431e08e96./initdb.sql396 9434b7a4713793dcc8d5dc458f3042a5 ./initdb.sql 397 397 95cbc61d450e2904be264cb11d94431a ./post.dspam 398 398 1b2edfe1130eec64752c7fd65cde1a42 ./run -
npl/mailserver/dspam/dspam_webui.build
r20eb816 rd36701a 1 654 01 6541 -
npl/mailserver/dspam/initdb.sql
r20eb816 rd36701a 9 9 innocent_hits int not null, 10 10 last_hit date not null 11 ) type=MyISAM PACK_KEYS=1;11 ) ENGINE=MyISAM PACK_KEYS=1; 12 12 13 13 create unique index id_token_data_01 on dspam_token_data(uid,token); … … 19 19 length smallint not null, 20 20 created_on date not null 21 ) type=MyISAM max_rows=2500000 avg_row_length=8096;21 ) ENGINE=MyISAM max_rows=2500000 avg_row_length=8096; 22 22 23 23 create unique index id_signature_data_01 on dspam_signature_data(uid,signature); … … 34 34 spam_classified int not null, 35 35 innocent_classified int not null 36 ) type=MyISAM;36 ) ENGINE=MyISAM; 37 37 38 38 create table dspam_preferences ( … … 40 40 preference varchar(32) not null, 41 41 value varchar(64) not null 42 ) type=MyISAM;42 ) ENGINE=MyISAM; 43 43 44 44 create unique index id_preferences_01 on dspam_preferences(uid, preference); … … 49 49 uid smallint unsigned primary key AUTO_INCREMENT, 50 50 username varchar(128) 51 ) type=MyISAM;51 ) ENGINE=MyISAM; 52 52 53 53 create unique index id_virtual_uids_01 on dspam_virtual_uids(username);
Note: See TracChangeset
for help on using the changeset viewer.