python as an Exchange 2000 script engine for a public folder

craig curtin curtin at ubsw.com
Tue Jan 8 15:31:12 EST 2002


hi,

i'm trying to get python running on an exchange 2000 server and
have python script some public folders. most of the examples i've
seen are for VBSCRIPT (Below is the template). there is no way
that i want to use anything other than python.

i have python installed as an activeX script engine. i'm just having
problems figuring out how to get Exchange 2000 to deliver events
to my scripts.

any had any success with this? or pointers to FAQs/tutorial?

thanks,

craig

=================================================================

<SCRIPT RunAt=Server Language=VBScript>

'------------------------------------------------------------------------------
'FILE DESCRIPTION: Exchange Server Event Script
'------------------------------------------------------------------------------

Option Explicit 

'------------------------------------------------------------------------------
' Global Variables
'------------------------------------------------------------------------------

'------------------------------------------------------------------------------
' Event Handlers
'------------------------------------------------------------------------------

' DESCRIPTION: This event is fired when a new message is added to the folder
Public Sub Folder_OnMessageCreated
End Sub

' DESCRIPTION: This event is fired when a message in the folder is changed
Public Sub Message_OnChange
End Sub

' DESCRIPTION: This event is fired when a message is deleted from the folder
Public Sub Folder_OnMessageDeleted
End Sub

' DESCRIPTION: This event is fired when the timer on the folder expires
Public Sub Folder_OnTimer
End Sub

</SCRIPT>



More information about the Python-list mailing list