diff --git a/plugins/servprotect.py b/plugins/servprotect.py index 12ca2a7..4adab69 100644 --- a/plugins/servprotect.py +++ b/plugins/servprotect.py @@ -6,7 +6,7 @@ from pylinkirc.log import log # check for definitions servprotect_conf = conf.conf.get('servprotect', {}) -length = servprotect_conf.get('length', 5) +length = servprotect_conf.get('length', 10) age = servprotect_conf.get('age', 10) savecache = ExpiringDict(max_len=length, max_age_seconds=age)