python 3.x - Exchange Server: How to expand distributed list to get all the members -


we building client exchange server using python3.x language.

we found existing library exchangelib, perform basics operations including move, copy, delete etc email.

however have additional requirement expand distributed list members of same. unfortunately feature not available in library.

open issue: https://github.com/ecederstrand/exchangelib/issues/93

is there alternate way achieve same using web services provided exchange. if on relevant link of great help.

thanks in advance.

as requested:

how expand distribution group using ews managed api or ews in exchange example:

private static void expanddistributionlists(exchangeservice service) {      // return expanded group.      expandgroupresults mygroupmembers = service.expandgroup("group1@contoso.com");       // display group members.      foreach (emailaddress address in mygroupmembers.members)      {          console.writeline("email address: {0}", address);      } } 

source here or here


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -