parent
b8de1646c5
commit
bfa47d1ae0
|
@ -1,7 +1,8 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
import logging
|
|
||||||
import datetime
|
import datetime
|
||||||
|
import logging
|
||||||
|
|
||||||
from control import EjabberdCtl
|
from control import EjabberdCtl
|
||||||
|
|
||||||
|
|
||||||
|
@ -11,7 +12,7 @@ class EjabberdCleanup(EjabberdCtl):
|
||||||
self.ignore_hosts = []
|
self.ignore_hosts = []
|
||||||
self.ignore_usernames = []
|
self.ignore_usernames = []
|
||||||
self.dry = False
|
self.dry = False
|
||||||
self.skip_by_roster_roster = True
|
self.skip_by_roster = True
|
||||||
self.delete_not_login = True
|
self.delete_not_login = True
|
||||||
self.offline_since_days = None
|
self.offline_since_days = None
|
||||||
|
|
||||||
|
@ -47,7 +48,6 @@ class EjabberdCleanup(EjabberdCtl):
|
||||||
self.delete_user(host, user, f"last seen @ {lastdate}")
|
self.delete_user(host, user, f"last seen @ {lastdate}")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
for host in self.fetch_vhosts():
|
for host in self.fetch_vhosts():
|
||||||
if host in self.ignore_hosts:
|
if host in self.ignore_hosts:
|
||||||
|
@ -58,8 +58,8 @@ class EjabberdCleanup(EjabberdCtl):
|
||||||
continue
|
continue
|
||||||
self.run_user(host, user)
|
self.run_user(host, user)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
import json
|
|
||||||
from config import Config
|
from config import Config
|
||||||
|
|
||||||
# load config
|
# load config
|
||||||
|
|
Loading…
Reference in New Issue