vote up 2 vote down star
1

I need to connect to an Exchange mailbox in a Python script, without using any profile setup on the local machine (including using Outlook). If I use win32com to create a MAPI.Session I could logon (with the Logon() method) with an existing profile, but I want to just provide a username & password.

Is this possible? If so, could someone provide example code? I would prefer if it only used the standard library and the pywin32 package. Unfortunately, enabling IMAP access for the Exchange server (and then using imaplib) is not possible.

In case it is necessary: all the script will be doing is connecting to the mailbox, and running through the messages in the Inbox, retrieving the contents. I can handle writing the code for that, if I can get a connection in the first place!

To clarify regarding Outlook: Outlook will be installed on the local machine, but it does not have any accounts setup (i.e. all the appropriate libraries will be available, but I need to operate independently from anything setup inside of Outlook).

flag

71% accept rate

3 Answers

vote up 2 vote down check

I'm pretty sure this is going to be impossible without using Outlook and a MAPI profile. If you can sweet talk your mail admin into enabling IMAP on the Exchange server it would make your life a lot easier.

link|flag
Enabling IMAP is not an option (the whole thing would be trivial if it was, but sadly it is not). – Tony Meyer Nov 13 '08 at 22:32
Yeah that's what I figured but it was worth a shot. – Harley Nov 13 '08 at 22:40
I should probably have put that in the question in the first place (made that edit now). Thanks :) – Tony Meyer Nov 13 '08 at 22:50
1  
There is a possiblility you can do what you want with Exchange 2007 using powershell, but I don't know much about it. – Harley Nov 14 '08 at 0:02
vote up 1 vote down

You'll have to find a way to run the process as that particular user.

See this.

I think pywin32.CreateProcessAsUser is the start of the path you need to go down. One last edit. The logged on user handle is obtained from using the win32security.LogonUser method

link|flag
vote up 1 vote down

i am looking for something similar - check out http://code.google.com/p/weboutlook/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.