15 lines
293 B
Python
Executable File
15 lines
293 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import api_requests as api
|
|
|
|
ENDPOINT = 'get/mailbox/all'
|
|
emails_count = 0
|
|
|
|
try:
|
|
for user in api.mailcow(ENDPOINT):
|
|
emails_count += user["messages"]
|
|
except TypeError:
|
|
print("Mailcow : What is your IP address ?")
|
|
|
|
print("Emails count : " + str(emails_count))
|