summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2008-12-10 02:34:32 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2008-12-10 02:34:32 +0000
commitdab76ff653725ba28acbdf536510d002753e9fb5 (patch)
treef2172f7e1ea6d6584b3b3e0ea5a8ab01d97d153d
parent27917fa76924eed3090af9f8362f427b10374282 (diff)
downloaddeluge-dab76ff653725ba28acbdf536510d002753e9fb5.tar.gz
deluge-dab76ff653725ba28acbdf536510d002753e9fb5.tar.bz2
deluge-dab76ff653725ba28acbdf536510d002753e9fb5.zip
point default blocklist to our server and up interval to 4 days
-rw-r--r--ChangeLog1
-rw-r--r--deluge/plugins/blocklist/blocklist/core.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9c1e47b2f..a9f1cddff 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@ Deluge 1.0.6 (01 December 2008)
* Fix #475 catch unicode decoding errors
* Add an option to not include IP overhead in rate limiting (this is equivalent
to how 0.5.x behaves)
+ * Have default blocklist url point to our server
GtkUI:
* Display the proper downloaded value in the statistics tab
diff --git a/deluge/plugins/blocklist/blocklist/core.py b/deluge/plugins/blocklist/blocklist/core.py
index d7ab549c5..81d364583 100644
--- a/deluge/plugins/blocklist/blocklist/core.py
+++ b/deluge/plugins/blocklist/blocklist/core.py
@@ -39,9 +39,9 @@ from peerguardian import PGReader, PGException
from text import TextReader, GZMuleReader, PGZip
DEFAULT_PREFS = {
- "url": "http://www.bluetack.co.uk/config/pipfilter.dat.gz",
+ "url": "http://www.deluge-torrent.org/blocklist/pipfilter.dat.gz",
"load_on_start": False,
- "check_after_days": 2,
+ "check_after_days": 4,
"listtype": "gzmule",
"timeout": 180,
"try_times": 3,