Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhancement: don't fail if the user has no store or no recipients in store (yet) #2

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion manage_recipients/manage_recipients.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,17 @@ def main():
sys.exit(0)

user = kopano.Server(options).user(options.user)
webapp = user.store.prop(0X6773001F).value

if user.store:
try:
webapp = user.store.prop(0X6773001F).value
except kopano.errors.NotFoundError:
print("no stored recipients in this store(no such property for user). exiting")
sys.exit(0)
else:
print("user has no store. exiting")
sys.exit(0)

webapp = json.loads(webapp)

if options.backup:
Expand Down