LEFT | RIGHT |
(no file at all) | |
1 [DEFAULT] | 1 [DEFAULT] |
2 root=/server/root/path | 2 root=/server/root/path |
3 mailer=/usr/sbin/sendmail | 3 mailer=/usr/sbin/sendmail |
4 mailerDebug=no | 4 mailerDebug=no |
5 secret=somerandomstringhere | 5 secret=somerandomstringhere |
6 | 6 |
7 [multiplexer] | 7 [multiplexer] |
8 sitescripts.subscriptions.web.fallback = | 8 sitescripts.subscriptions.web.fallback = |
9 sitescripts.crashes.web.submitCrash = | 9 sitescripts.crashes.web.submitCrash = |
10 sitescripts.reports.web.submitReport = | 10 sitescripts.reports.web.submitReport = |
11 sitescripts.reports.web.updateReport = | 11 sitescripts.reports.web.updateReport = |
12 sitescripts.reports.web.showDigest = | 12 sitescripts.reports.web.showDigest = |
13 sitescripts.reports.web.showUser = | 13 sitescripts.reports.web.showUser = |
14 sitescripts.formmail.web.formmail = | 14 sitescripts.formmail.web.formmail = |
15 sitescripts.crawler.web.crawler = | 15 sitescripts.crawler.web.crawler = |
16 sitescripts.urlfixer.web.submitData = | 16 sitescripts.urlfixer.web.submitData = |
17 sitescripts.extensions.web.downloads = | 17 sitescripts.extensions.web.downloads = |
| 18 sitescripts.filterhits.web.submit = |
| 19 sitescripts.filterhits.web.query = |
18 | 20 |
19 [subscriptions] | 21 [subscriptions] |
20 repository=%(root)s/hg/subscriptionlist | 22 repository=%(root)s/hg/subscriptionlist |
21 statusTemplate=subscriptions/template/status.html | 23 statusTemplate=subscriptions/template/status.html |
22 statusPage=%(root)s/www/subscriptionStatus.html | 24 statusPage=%(root)s/www/subscriptionStatus.html |
23 reportTemplate=subscriptions/template/report.mail | 25 reportTemplate=subscriptions/template/report.mail |
24 recommendationsTemplate=subscriptions/template/recommendations.xml | 26 recommendationsTemplate=subscriptions/template/recommendations.xml |
25 recommendationsFile=%(root)s/www/recommendations.xml | 27 recommendationsFile=%(root)s/www/recommendations.xml |
26 subscriptionsXMLTemplate=subscriptions/template/subscriptions.xml | 28 subscriptionsXMLTemplate=subscriptions/template/subscriptions.xml |
27 subscriptionsXMLFile=%(root)s/www/subscriptions.xml | 29 subscriptionsXMLFile=%(root)s/www/subscriptions.xml |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 template=formmail/template/eyeo.mail | 163 template=formmail/template/eyeo.mail |
162 | 164 |
163 [externalFiles] | 165 [externalFiles] |
164 example_source=http://mxr.mozilla.org/mozilla-central/source/netwerk/dns/effecti
ve_tld_names.dat?raw=1 | 166 example_source=http://mxr.mozilla.org/mozilla-central/source/netwerk/dns/effecti
ve_tld_names.dat?raw=1 |
165 example_targetrepository=%(root)s/hg/adblockpluschrome | 167 example_targetrepository=%(root)s/hg/adblockpluschrome |
166 example_targetfile=third-party/publicSuffixList.txt | 168 example_targetfile=third-party/publicSuffixList.txt |
167 | 169 |
168 [notifications] | 170 [notifications] |
169 repository=%(root)s/hg/notifications | 171 repository=%(root)s/hg/notifications |
170 output=%(root)s/www/notification.json | 172 output=%(root)s/www/notification.json |
| 173 |
| 174 [filterhitstats] |
| 175 interval=3600 |
| 176 log_dir=/var/log/filterhits |
| 177 dbuser=user |
| 178 dbpassword=password |
| 179 database=db |
| 180 test_dbuser=test_user |
| 181 test_dbpassword=test_password |
| 182 test_database=test_db |
LEFT | RIGHT |