Como abrir arquivos no Linux

1

Tenho alguns arquivos .oft antigos (por volta de 2010) (parecem ser armazenados em um formato do MS Outlook) que preciso abrir (ou converter e abrir) no Kubuntu 17.04.

Alguma sugestão?

    
por Bruni 09.05.2017 / 12:22

1 resposta

2

Não, não há outro software além do Outlook para abrir o arquivo .oft.

  

parecem ser mensagens armazenadas em um formato MS Outlook

Não, ".oft" é um modelo para formatação de mensagens no Outlook. Não e-mails reais. Mails (e outros dados pessoais como contatos) devem ser um ".pst" (Personal Storage Table).

Aqui está um exemplo de um OFT (usando VB.net):

' Load the Outlook template (OFT) file in MailMessage's instance
Dim message As MailMessage = MailMessage.Load("invitation to meeting.oft", MessageFormat.Msg)  

' Set the sender and recipients information  
Dim senderDisplayName As String = "John"    
Dim senderEmailAddress As String = "[email protected]"    
Dim recipientDisplayName As String = "William"    
Dim recipientEmailAddress As String = "[email protected]"    
message.Sender = New MailAddress(senderEmailAddress, senderDisplayName)    
message.To.Add(New MailAddress(recipientEmailAddress, recipientDisplayName))    
message.HtmlBody = message.HtmlBody.Replace("DisplayName", "" & recipientDisplayName & "")

' Set the name, location and time in email body    
Dim meetingLocation As String = "" & "Hall 1, Convention Center, New York, USA" & ""    
Dim meetingTime As String = "" & "Monday, June 28, 2010" & ""    
message.HtmlBody = message.HtmlBody.Replace("MeetingPlace", meetingLocation)    
message.HtmlBody = message.HtmlBody.Replace("MeetingTime", meetingTime)

' Send the email or save as MSG and open in Outlook for further editing    
Dim client As SmtpClient = New SmtpClient("host", 25, "username", "password")    
client.Send(message)

' Save the message in MSG format and open in Office Outlook    
Dim msg As MapiMessage = MapiMessage.FromMailMessage(message)    
msg.SetMessageFlags(MapiMessageFlags.MSGFLAG_UNSENT)    
msg.Save("Invitation.msg")    
Process.Start("Invitation.msg")
    
por Rinzwind 09.05.2017 / 12:33