ConvertFrom-MailAuthenticationRecordDkim
SYNOPSIS
Returns structured RFC compliant object from DKIM record
SYNTAX
ConvertFrom-MailAuthenticationRecordDkim [-DomainName] <String> [[-DnsServerIpAddress] <IPAddress>]
[[-DkimSelector] <String>] [-QuickTimeout] [-NoHostsFile] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
DESCRIPTION
Adapted from:
- https://cloudbrothers.info/en/powershell-tip-resolve-spf/
- https://github.com/cisagov/ScubaGear/blob/main/PowerShell/ScubaGear/Modules/Providers/ExportEXOProvider.psm1
- https://xkln.net/blog/getting-mx-spf-dmarc-dkim-and-smtp-banners-with-powershell/
- DKIM https://datatracker.ietf.org/doc/html/rfc6376
record : v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCPkb8bu8RGWeJGk3hJrouZXIdZ+HTp/azRp8IUOHp5wKvPUAi/54PwuLscUjRk4Rh3hjIkMpKRfJJXPxWbrT7eMLric
7f/S0h+qF4aqIiQqHFCDAYfMnN6V3Wbke2U5EGm0H/cAUYkaf2AtuHJ/rdY/EXaldAm00PgT9QQMez66QIDAQAB;
keyType : rsa
hash : {sha1, sha256}
notes :
publicKey : MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCPkb8bu8RGWeJGk3hJrouZXIdZ+HTp/azRp8IUOHp5wKvPUAi/54PwuLscUjRk4Rh3hjIkMpKRfJJXPxWbrT7eMLric7f/S0h+qF4aqIiQqHF
CDAYfMnN6V3Wbke2U5EGm0H/cAUYkaf2AtuHJ/rdY/EXaldAm00PgT9QQMez66QIDAQAB
validBase64 : True
services : {*}
flags :
warnings :
EXAMPLES
EXAMPLE 1
ConvertFrom-MailAuthenticationRecordDkim -DomainName "microsoft.com"
Returns [DKIMRecord] or "Failure to obtain record"
PARAMETERS
-DomainName
Domain name to check.
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-DnsServerIpAddress
DNS-server to use for lookup.
Type: IPAddress
Parameter Sets: (All)
Aliases:
Required: False
Position: 2
Default value: 1.1.1.1
Accept pipeline input: False
Accept wildcard characters: False
-DkimSelector
Selector-name for the DKIM record to retrieve.
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 3
Default value: Selector1
Accept pipeline input: False
Accept wildcard characters: False
-QuickTimeout
Use a shorter timeout value for the DNS lookup.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
-NoHostsFile
Ignore hosts file for domain lookup.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
-ProgressAction
{{ Fill ProgressAction Description }}
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
INPUTS
OUTPUTS
ConvertFrom-MailAuthenticationRecordDkim.DKIMRecord
System.String
NOTES
RELATED LINKS
https://maester.dev/docs/commands/ConvertFrom-MailAuthenticationRecordDkim