Closest you can get is Open the message (ugh!), Actions, Resend this message, Yes, change to your sa-learn mailbox (I guess that's where you want it), and hit send, then delete the original.
That's supposed to retain as much of the headers as possible. You can get the same effect without opening it tho. I have a macro to do it without the need to view the spam/porn, but you have to wait 5 seconds between each selection to hit a Yes dialog. It's better, but not ideal. Sample headers. Original: >>From <[EMAIL PROTECTED]> Wed Nov 03 14:49:50 2004 Received: from [172.27.0.30] by visioncomm.net (SMTPD32-8.13) id A65D14830066; Wed, 03 Nov 2004 14:49:49 -0500 From: "CaravanSheet Services" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: www.CaravanSheet.com X-Mailer: SPI Newsletter Mime-Version: 1.0 Content-Type: text/html; charset=us-ascii Message-Id: <[EMAIL PROTECTED]> Date: Wed, 3 Nov 2004 14:49:35 -0500 Content-Transfer-Encoding: quoted-printable X-RCPT-TO: <[EMAIL PROTECTED]> Status: U X-UIDL: 399485236 <HTML> <HEAD> <STYLE> ... Macro Spam: >>From <[EMAIL PROTECTED]> Wed Nov 03 14:51:12 2004 Received: from dan [172.27.0.30] by visioncomm.net with ESMTP (SMTPD32-8.13) id A6B014890066; Wed, 03 Nov 2004 14:51:12 -0500 From: "Dan Barker" <[EMAIL PROTECTED]> To: "spam" <[EMAIL PROTECTED]> Subject: www.CaravanSheet.com Date: Wed, 3 Nov 2004 14:50:58 -0500 Message-ID: <[EMAIL PROTECTED]> MIME-Version: 1.0 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: SPI Newsletter X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-RCPT-TO: <[EMAIL PROTECTED]> Importance: Normal Status: U X-UIDL: 399484893 <HTML> <HEAD> <STYLE> ... Changes: Content-Type: from: text/html; charset=us-ascii to: text/html; charset="us-ascii" Mime: from: Mime-Version: 1.0 to: MIME-Version: 1.0 Date, From <, From:, To: and Message-ID all change. Importance, X-MimeOLE:, X-MSMail-Priority and X-Priority: gets inserted. Subject and message body are untouched. Depending on what your purpose is (mine's training Bayes), this may do. Dan Barker Spam Macro source: Sub Spam() Dim objExplorer As Outlook.Explorer Dim objMailItem As Outlook.MailItem Dim objNewMailItem As Outlook.MailItem Dim intItem As Integer Set objExplorer = Application.ActiveExplorer For Each objMailItem In objExplorer.Selection objMailItem.To = "[EMAIL PROTECTED]" objMailItem.Send Next objMailItem End Sub I have this assigned to a button on a toolbar. Select all the False Negatives, hit the button, and click OK a bunch of times with 5 seconds for coffee in between each. -----Original Message----- From: Matt [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 03, 2004 1:58 PM To: users@spamassassin.apache.org Subject: Slightly OT: How to get Outlook To stop screwing messages up Hi, As much as I hate Outlook, I have to support it.. ugh.. Is there anyway to get the full source and message, from outlook without having to view source, then view headers? I want the full untainted source as I can get from other quality mail programs like mozilla, and thunderbird.