You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
zarafa-admin | grep 'mr-'
--mr-accept (resource) auto-accept meeting requests. yes/no
--mr-decline-conflict (resource) decline meeting requests for conflicting times. yes/no
--mr-decline-recurring (resource) decline meeting requests for all recurring items. yes/no
I a not in the code. But something like a class ResourceConfig would be cool:
That would be great. And read-only would solve my issue >60% and I work around something like 'os.system("ssh mynode zarafa-admin -details %s" % user)' :D
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 :)
The to read the data is als simple as the example below:
for item in bob.store.calendar.associated.items():
if item.message_class == 'IPM.Microsoft.SheduleData.FreeBusy':
break
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: