Reputation: 53
I was evaluating the outlook redemption for conversion of .eml to .msg file and subsequently purchase of the software.
what I found was it uses current user login to connect to outlook and convert a .eml file to .msg.
but I would like to know is that if we deploy this on the server we would use a service account for the conversion.
now the question is whether this service account that is used to perform the .eml to .msg conversion is required to have valid email id on the exchange server.
Upvotes: 0
Views: 1098
Reputation: 66255
Keep in mind you do not need to log in to convert an EML file to MSG: call RDOSession.CreateMessageFroMMsgFIle (returns RDOMail object), call RDOMail.IMport(..., olRfc822) to import the EML file, then RDOMail.Save.
Upvotes: 0
Reputation: 6336
You can use
LogonExchangeMailbox(User, ServerName) or
LogonPstStore(Path, Format, DisplayName, Password, Encryption)
http://www.dimastr.com/redemption/rdo/rdosession.htm
Upvotes: 1