diff options
author | Adam <Adam@anope.org> | 2013-08-10 15:52:02 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-08-10 17:43:13 -0400 |
commit | 58c05687bf7b365c9be7791f8128dbd0da56f5ca (patch) | |
tree | 2b1bc85801c1e12ff74cc8bcba53a7e81e3f67c5 /data/chanserv.example.conf | |
parent | f8cdcc65c6969536c6437327ba5255e514799dcf (diff) |
Add "simple seen" mode to cs_seen
Diffstat (limited to 'data/chanserv.example.conf')
-rw-r--r-- | data/chanserv.example.conf | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/data/chanserv.example.conf b/data/chanserv.example.conf index 4764496d0..986479471 100644 --- a/data/chanserv.example.conf +++ b/data/chanserv.example.conf @@ -1068,16 +1068,20 @@ command { service = "ChanServ"; name = "REGISTER"; command = "chanserv/register" * Records the last time a user was seen and what they were doing and allows users to request this data. * Also allows administrators to view stats about seen data and purge the database. */ -module { name = "cs_seen" } -command { service = "OperServ"; name = "SEEN"; command = "operserv/seen"; permission = "operserv/seen"; } -cs_seen +module { + name = "cs_seen" + + /* If set, uses the older 1.8 style seen, which is less resource intensive */ + simple = false + /* Sets the time to keep seen entries in the seen database. */ purgetime = "30d" /* Sets the delay between checks for expired seen entries. */ expiretimeout = "1d" } +command { service = "OperServ"; name = "SEEN"; command = "operserv/seen"; permission = "operserv/seen"; } /* * cs_set |