Add advice when forgetting to set VPN on

This commit is contained in:
thopic 2021-05-18 11:15:35 +02:00
parent 8f14819c22
commit 54957fcbed
Signed by: thopic
GPG Key ID: 292DBBF0B54AD4C5

View File

@ -20,9 +20,12 @@ for user in api.mattermost(ENDPOINTS["mattermost"]):
if "is_bot" not in user:
emails.append(user["email"])
for user in api.mailcow(ENDPOINTS["mailcow"]):
if user["username"] not in os.environ["EXCLUDED_EMAILS"]:
emails.append(user["username"])
try:
for user in api.mailcow(ENDPOINTS["mailcow"]):
if user["username"] not in os.environ["EXCLUDED_EMAILS"]:
emails.append(user["username"])
except TypeError:
print("Mailcow : What is your IP address ?")
for user in api.nextcloud(ENDPOINTS["nextcloud"])["ocs"]["data"]["users"]:
emails.append(api.nextcloud(ENDPOINTS["nextcloud"] + '/' + user)["ocs"]["data"]["email"])