Outlook 2013: Como exibir cabeçalhos de mensagens no painel de leitura?

3

Usando o Outlook 2013, gostaria de poder visualizar todos os campos de cabeçalho (RFC5322, não o que o Outlook chama de cabeçalhos) de uma mensagem que visualizo no painel de leitura.

Existe uma configuração, uma opção ou um complemento de terceiros que fazem isso ou existe tal coisa que pode pelo menos fornecer um menu do botão direito do mouse?

Edit: Eu não preciso da mensagem bruta no todo, apenas os cabeçalhos.

    
por Jan 06.12.2017 / 21:55

2 respostas

1

Como visualizo todos os campos de cabeçalho de uma mensagem que visualizo no painel de leitura?

O procedimento a seguir definirá isso para você.

Aviso

  • O zize do arquivo PST aumentará, pois o Outlook armazenará a origem da mensagem, além de armazenar o conteúdo da mensagem
  • Isso significa que e-mails futuros ocuparão aproximadamente o dobro do espaço.

Make Available the Complete Message Source in Outlook

To set up Outlook so you can see the complete source of emails:

  • Press Windows-R
  • Type "regedit".
  • Hit Enter.
  • For Outlook 2016:
    • Go to HKEY_CURRENT_USER\­­Software\­­Microsoft\­­Office\­­16.0\­­Outlook\­­Options\­­Mail.
  • For Outlook 2013:

    • Go to HKEY_CURRENT_USER\­­Software\­­Microsoft\­­Office\­­15.0\­­Outlook\­­Options\­­Mail.
  • For Outlook 2010:

    • Go to HKEY_CURRENT_USER\­­Software\­­Microsoft\­­Office\­­14.0\­­Outlook\­­Options\­­Mail.
  • For Outlook 2007:
    • Go to HKEY_CURRENT_USER\­­Software\­­Microsoft\­­Office\­­12.0\­­Outlook\­­Options\­­Mail.
  • For Outlook 2003
    • Go to HKEY_CURRENT_USER\­­Software\­­Microsoft\­­Office\­­11.0\­­Outlook\­­Options\­­Mail.
  • Select Edit | New | DWord from the menu.
    • Select DWORD (32-bit) Value with 32-bit Office.
    • Use DWORD (64-bit) Value with 64-bit Office (which is unlikely).
  • Type "SaveAllMIMENotJustHeaders".
  • Hit Enter.
  • Double-click the newly created SaveAllMIMENotJustHeaders value.
  • Type "1".
  • Click OK.
  • Close the registry editor.
  • Restart Outlook if it has been running.

See the Complete Source of a Message in Outlook

Now you can retrieve the source of newly retrieved POP messages (editing the SaveAllMIMENotJustHeaders value does not restore the complete message source for emails that were already in Outlook):

  • Open the desired message in its own window.
  • Double-click the email.
  • Click FILE.
  • Make sure the Info category is open.
  • Now click Properties.
  • Find the source to the email under Internet headers:.
  • Click Close.

Fonte Como exibir a fonte completa de mensagens no Outlook

    
por 06.12.2017 / 22:21
0

A macro a seguir exibe os cabeçalhos em uma nova janela de mensagens de correio (não é possível usar uma caixa de mensagens devido a limitações de tamanho):

Sub ViewInternetHeader()
    Dim olItem As Outlook.MailItem, olMsg As Outlook.MailItem
    Dim strheader As String

    For Each olItem In Application.ActiveExplorer.Selection
        strheader = GetInetHeaders(olItem)

        Set olMsg = Application.CreateItem(olMailItem)
        With olMsg 
            .BodyFormat = olFormatPlain
            .Body = strheader
            .Display
        End With
    Next
    Set olMsg = Nothing
End Sub

Function GetInetHeaders(olkMsg As Outlook.MailItem) As String
    ' Purpose: Returns the internet headers of a message.'
    ' Written: 4/28/2009'
    ' Author:  BlueDevilFan'
    ' //techniclee.wordpress.com/
    ' Outlook: 2007'
    Const PR_TRANSPORT_MESSAGE_HEADERS = "http://schemas.microsoft.com/mapi/proptag/0x007D001E"
    Dim olkPA As Outlook.PropertyAccessor
    Set olkPA = olkMsg.PropertyAccessor
    GetInetHeaders = olkPA.GetProperty(PR_TRANSPORT_MESSAGE_HEADERS)
    Set olkPA = Nothing
End Function

Fonte: link

    
por 13.12.2017 / 16:25