Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

AAM 7 - Personal Operator list for each mailbox

Status
Not open for further replies.

FicBen

Technical User
Nov 19, 2004
124
0
0
US
Hello all and good day,

Is there a way to pull a list of voicemail boxes and the personal operator being used without using Provision? I used ASA but was told by our support vendor that the LDAP connection is not working and we would have to upgrade to fix this.

Thanks!
 
ldapsearch -D "cn=FicBen,dc=avaya" -w yourpassword! -p 389 -h 1.2.3.4 -b "ou=people,dc=avaya" -s sub "(&(objectclass=*)(msgPersonalAttendant=*))" MailboxNumber cn msgPersonalAttendant


Go on a machine with ldapsearch installed. CM usually has it.

Add a trusted server with that machine's IP, with a name and a password - like FicBen and yourpassword!. Allow unencrypted connections.

Pretend the MSS is 1.2.3.4.

This will search anyone who has the ldap attribute msgPersonalAttendant (only people with personal operators have the attribute) and print their name/mailboxnumber/personal attendant.

tack on a >/tmp/personal.ldif at the end:

ldapsearch -D "cn=FicBen,dc=avaya" -w yourpassword! -p 389 -h 1.2.3.4 -b "ou=people,dc=avaya" -s sub "(&(objectclass=*)(msgPersonalAttendant=*))" MailboxNumber cn msgPersonalAttendant >/tmp/personal.ldif

Then get the file off the machine adn google your way for ldif to csv conversion
 
Thanks, will see if I can do this :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top