mirror of https://gitlab.com/bashrc2/epicyon
Check for system accounts during authorization
parent
88cc48480f
commit
eb44a66066
|
@ -1120,6 +1120,7 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
tokenStr = tokenStr.split(';')[0].strip()
|
||||
if self.server.tokensLookup.get(tokenStr):
|
||||
nickname = self.server.tokensLookup[tokenStr]
|
||||
if not isSystemAccount(nickname):
|
||||
self.authorizedNickname = nickname
|
||||
# default to the inbox of the person
|
||||
if self.path == '/':
|
||||
|
|
Loading…
Reference in New Issue