PoshCode Archive  Artifact [8548d70974]

Artifact 8548d70974c4202d301580166b342d353f45817a492b55a1424376e41c8ec1f5:

  • File Convert-BounceToX500.ps1 — part of check-in [b23baeac6c] at 2018-06-10 13:58:16 on branch trunk — IMCEAINVALID-David+2EDowle+40ihotdesk+2Ecom@cloud.ihotdesk.local (user: Test1 size: 1597)

# encoding: ascii
# api: powershell
# title: Convert-BounceToX500
# description: IMCEAINVALID-David+2EDowle+40ihotdesk+2Ecom@cloud.ihotdesk.local
# version: 0.1
# type: script
# author: Test1
# license: CC0
# x-poshcode-id: 5633
# x-archived: 2015-07-20T04:36:10
# x-published: 2015-12-08T00:05:00
#
#
# $Id: Convert-BounceToX500.ps1 610 2010-11-16 00:39:19Z jon $
# $Revision: 610 $

#.Synopsis
#  Convert Bounce to X500
#.Description
#  Convert URL Encoded address in a Bounce message to an X500 address
#  that can be added as an alias to the mail-enabled object
#.Parameter bounceAddress
#  URL Encoded bounce message address#
#.Example
#  Convert-BounceToX500 "IMCEAEX-_O=CONTOSO_OU=First+20Administrative+20Group_cn=Recipients_cn=john+5Fjacob+2Esmith@contoso.com"
#.Example
#  "IMCEAEX-_O=CONTOSO_OU=First+20Administrative+20Group_cn=Recipients_cn=john+5Fjacob+2Esmith@contoso.com"|Convert-BounceToX500

[CmdletBinding()]
PARAM (
	[Parameter(Mandatory=$true,ValueFromPipeline=$true)][string]$bounceAddress
)
BEGIN
{
	Add-Type -AssemblyName System.Web|Out-Null
}
PROCESS
{
	if($_) {$bounceAddress = $_}
	$bounceAddress = $bounceAddress -Replace "%2B","%" # This is a urlEncoded "+"
	$bounceAddress = $bounceAddress -Replace "%3D","="
	$bounceAddress = $bounceAddress -Replace "\+","%"
	$bounceAddress = $bounceAddress -Replace "_O=","/O="
	$bounceAddress = $bounceAddress -Replace "_OU=","/OU="
	$bounceAddress = $bounceAddress -Replace "_CN=","/CN="

	if([Web.HttpUtility]::UrlDecode($bounceAddress) -match "(/o=.*)@[\w\d.]+$"){$matches[1]}
}