Skip to main content

Processing BCC's in Exchange Transport Agents

One of the most important learning points when thinking about programing or designing Transport agents is to understand the different between a P1 (Delivery Envelope) and P2 (Display Envelope)

The P1 (Delivery Envelope) contains the recipient To and From information that is transmitted to the MTA server be it Exchange or any other SMTP server in the SMTP conversation and is the actual information that will be used for delivery of the message. Eg the Evaluating MTA will only examine the P1 recipients to determine what recipients a message would be delivered to.

The P2(Display Envelope) contains all the information that that the user will see when they receive the message this includes the From, To ,CC and Subject of a message. The important point to understand is that the MTA that is processing the message doesn’t look at these headers to determine whom to deliver the message to.

BCC’s

One of the things that confuses a lot of people when they look at messages via an API or within an Transport Agent is that most API’s include the ability to set and get BCC address’s but they will always appear blank when you attempt to read them for example when a message is passing through the transport pipeline. The simple explanation for this is if you have understood about P1 and P2 recipients is that BCC’s when a message is submitted become P1 recipients of the message for the first MTA to process but they are never added to the P2 envelope. From the MTA’s perspective because delivery of TO, CC or BCC are treated exactly the same these elements are merely display information and the MTA just treats these recipients as another RCPT TO entry. To detect BCC in a Transport Agent you can do two things the first is reconcile the P1 Recipients against the P2 Recipients if you find a P1 recipient that doesn’t have a matching P2 entry then you can assume that this is either a BCC or potentially an alternate or journal recipient. The other way is to look at the Microsoft.Exchange.Transport.RecipientP2Type http://msdn.microsoft.com/en-us/library/aa579279%28EXCHG.140%29.aspx EnvelopeRecipient.Properties Property this returns an Integer that tells you what type of recipient each P1 envelope entry is.

For example

foreach (EnvelopeRecipient envelopeRecp in QueuedMessage.MailItem.Recipients) {
object RecpType = null;
if (envelopeRecp.Properties.TryGetValue("Microsoft.Exchange.Transport.RecipientP2Type",out RecpType))
{
switch((Int32)RecpType){
case 1 : // Process To
break;
case 2 : // Process CC
break;
case 3 : // Process BCC
break;
}
}
}

Popular posts from this blog

Export calendar Items to a CSV file using Microsoft Graph and Powershell

For the last couple of years the most constantly popular post by number of views on this blog has been  Export calendar Items to a CSV file using EWS and Powershell closely followed by the contact exports scripts. It goes to show this is just a perennial issue that exists around Mail servers, I think the first VBS script I wrote to do this type of thing was late 90's against Exchange 5.5 using cdo 1.2. Now it's 2020 and if your running Office365 you should really be using the Microsoft Graph API to do this. So what I've done is create a PowerShell Module (and I made it a one file script for those that are more comfortable with that format) that's a port of the EWS script above that is so popular. This script uses the ADAL library for Modern Authentication (which if you grab the library from the PowerShell gallery will come down with the module). Most EWS properties map one to one with the Graph and the Graph actually provides better information on recurrences then...

Downloading a shared file from Onedrive for business using Powershell

I thought I'd quickly share this script I came up with to download a file that was shared using One Drive for Business (which is SharePoint under the covers) with Powershell. The following script takes a OneDrive for business URL which would look like https://mydom-my.sharepoint.com/personal/gscales_domain_com/Documents/Email%20attachments/filename.txt This script is pretty simple it uses the SharePoint CSOM (Client side object Model) which it loads in the first line. It uses the URI object to separate the host and relative URL which the CSOM requires and also the SharePointOnlineCredentials object to handle the Office365 SharePoint online authentication. The following script is a function that take the OneDrive URL, Credentials for Office365 and path you want to download the file to and downloads the file. eg to run the script you would use something like ./spdownload.ps1 ' https://mydom-my.sharepoint.com/personal/gscales_domain_com/Documents/Email%20attachments/filen...

Sending a MimeMessage via the Microsoft Graph using the Graph SDK, MimeKit and MSAL

One of the new features added to the Microsoft Graph recently was the ability to create and send Mime Messages (you have been able to get Message as Mime for a while). This is useful in a number of different scenarios especially when trying to create a Message with inline Images which has historically been hard to do with both the Graph and EWS (if you don't use MIME). It also opens up using SMIME for encryption and a more easy migration path for sending using SMTP in some apps. MimeKit is a great open source library for parsing and creating MIME messages so it offers a really easy solution for tackling this issue. The current documentation on Send message via MIME lacks any real sample so I've put together a quick console app that use MSAL, MIME kit and the Graph SDK to send a Message via MIME. As the current Graph SDK also doesn't support sending via MIME either there is a workaround for this in the future my guess is this will be supported.
All sample scripts and source code is provided by for illustrative purposes only. All examples are untested in different environments and therefore, I cannot guarantee or imply reliability, serviceability, or function of these programs.

All code contained herein is provided to you "AS IS" without any warranties of any kind. The implied warranties of non-infringement, merchantability and fitness for a particular purpose are expressly disclaimed.