hi all,<br><br>I can read my mails&nbsp; locally from my outlook,<br>I want to read my mail directly from Exchange server , How can i do that?<br>Any Help/link will be usefull to me .<br><br>my code<br><br>import win32com.client
<br>session = win32com.client.Dispatch(&quot;MAPI.Session&quot;)<br>session.Logon()<br>inbox = session.Inbox<br>collmsg = inbox.Messages<br>print&nbsp; collmsg<br>msg = collmsg.GetFirst()<br>while msg:<br>&nbsp;&nbsp;&nbsp; print &quot;subject: &quot;, 
msg.subject<br>&nbsp;&nbsp;&nbsp; msg = collmsg.GetNext()<br>session.Logoff()<br><br>Thanks<br><br>Antony<br><br>&nbsp;<br>