-
Notifications
You must be signed in to change notification settings - Fork 11
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
Request: Manage resource settings via API #24
Comments
After some digging I've figured out that the information is actually stored in the users store (in a special MAPI message ofcourse) So it would be logical to add this information to the User class, read only is probably do-able |
That would be great. And read-only would solve my issue >60% and I work around something like If you need some support give me a hint. |
The following proptags are needed and not yet provided by python-mapi yety, but you can define them in your program as following: PR_PROCESS_MEETING_REQUESTS = PROP_TAG(PT_BOOLEAN, 0x686D) The mr_accept data is stored in a LocalFreeBusy message in the associated folder of the calendar and the directory 'Freebusy Data' under the root (user.store.folder('Freebusy Data'). This is because different versions of outlook look in different directories :) for item in bob.store.calendar.associated.items(): mr_accept = item.prop(PR_PROCESS_MEETING_REQUESTS).value We aren't sure yet how to incorperate this functionality in python-zarafa, but this code should be enough to read the data. |
Hi all,
currently working on our automation. Since we are using a django-like framework for our first-level support, a method to get/set the resource related settings from python would be nice. I mean:
I a not in the code. But something like a class ResourceConfig would be cool:
Depending on the effort, a read-only field alone would be very helpful.
Just a proposal, if you searching for new stuff to implement. :)
Best Regards
Sören
The text was updated successfully, but these errors were encountered: