Bugs item #3058134, was opened at 2010-09-02 14:01
Message generated for change (Comment added) made by marquies
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=3058134&group_id=78018
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: win32
Group: None
>Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Patrick Breucking (marquies)
Assigned to: Nobody/Anonymous (nobody)
Summary: Problems with ACL Table, missing IID_IExchangeModifyTable
Initial Comment:
Hi,
while try to read the ACL Table of a folder, I ran into this problem:
In a C++ tool (MFCMAPI) this method is used to get the Property PR_ACL_TABLE in a usable data type:
// Open the table in an IExchangeModifyTable interface
EC_H(lpMAPIProp->OpenProperty(
ulPropTag,
(LPGUID)&IID_IExchangeModifyTable,
0,
MAPI_DEFERRED_ERRORS,
(LPUNKNOWN FAR *)&lpExchTbl));
I figured out to do this in python:
table = mystore.OpenProperty(mapitags.PR_ACL_TABLE, IID_IExchangeModifyTable, 0 , mapi.MAPI_DEFERRED_ERRORS)
But it seems that the MAPI Extension does not know the IID_IExchangeModifyTable type. I just got just this error:
AttributeError: 'module' object has no attribute 'IID_IExchangeModifyTable'
Maybe I'm wrong, but as far as i can say the MAPI Extension is incomplete in this point, or?
Thanks
- Marquies
----------------------------------------------------------------------
>Comment By: Patrick Breucking (marquies)
Date: 2010-09-16 13:08
Message:
I started to write the code for this interface, the swig interface
additions and some utility code for type conversions. I would appreciate if
this additions would go into the repository. What do you think?
- Marquies
----------------------------------------------------------------------
Comment By: Mark Hammond (mhammond)
Date: 2010-09-02 15:15
Message:
Yes - it is incomplete, at least wrt that interface.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=551954&aid=3058134&group_id=78018
|