Retention Policy Roundtable

March 7, 2008


This innovative survey may answer a lot of questions, and be very useful!

You can see the retention policies of various organizations here. If you add your own experience, you get a summary of the findings.

 Martin.


Microsoft to join e-discovery bandwagon?

September 14, 2006

Print outlook in date order

August 24, 2006

Something of a secret up until now.  Faced with the problem of printing thousands of emails sorted in Chron order from outlook 2000, sorted by date. When we printed, the emails would come out in a random order all together.

I battled for a while to find the answer. Simply go to tools options, the Mail Format and set the defult to ‘Plain Text’ for outgoing mail… and hey presto, it prints in order…..  Obvious really… (!?!?!). Anyone need any help with this one, feel free to mail Martin.Nikel@gmail.com


Export Outlook to HTML

August 22, 2006

A function to export emails to HTML (exluding the attachments, but thats just a SaveAs to be added. Just place it in ‘This Outlook Session’

Sub testExportToHTML()Dim inBox As Outlook.MAPIFolderDim objEmail As MailItemDim inBoxItems As Outlook.Items

Set inBox = Me.ActiveExplorer().Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox)

Set inBoxItems = inBox.ItemsinBoxItems.Sort “SentOn”, 1 For Each objEmail In inBoxItems Dim mailObj As MailItem Set mailObj = objEmail
If (objEmail.BodyFormat = olFormatPlain Or olFormatRichText Or olFormatUnspecified) Then

mailObj.BodyFormat = olFormatHTML ‘converts body to HTML if RTF, Text or other format.
End If
mailObj.SaveAs “c:\test” & Format(i, “0000″) & “.html”, olHTML ‘location and name and format to save in i = i + 1

Next

End Sub

Feel free to email me about this. Ciao