-
Notifications
You must be signed in to change notification settings - Fork 1
/
MailPolicyExplainer.psd1
136 lines (117 loc) · 4.42 KB
/
MailPolicyExplainer.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<#
MailPolicyExplainer.psd1 -- manifest file for said module
Copyright (C) 2018, 2020, 2023-2024 Colin Cogle. All Rights Reserved.
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along
with this program. If not, see <https://www.gnu.org/licenses/>.
#>
# Module manifest for module 'MailPolicyExplainer'
# Generated by: Colin Cogle
# Generated on: 4/18/2018
@{
# Script module or binary module file associated with this manifest.
RootModule = 'src/MailPolicyExplainer.psm1'
# Version number of this module.
ModuleVersion = '1.4.1'
# Supported PSEditions
CompatiblePSEditions = @('Core', 'Desktop')
# ID used to uniquely identify this module
GUID = 'b3ec0108-05d3-43f1-a5ba-cc8f7f4cc8cc'
# Author of this module
Author = 'Colin Cogle'
# Copyright statement for this module
Copyright = '(c) 2018, 2020, 2023-2024 Colin Cogle. All rights reserved.'
# Description of the functionality provided by this module
Description = "Explains a domain's email DNS records, including MX, SPF, DKIM, DMARC, and more."
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'
# Things to export from this module, for best performance, do not use wildcards
# and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = ''
VariablesToExport = ''
FunctionsToExport = @(
'Test-MailPolicy',
'Test-MXRecord',
'Test-IPVersions',
'Test-DkimSelector',
'Test-AdspRecord',
'Test-DmarcRecord',
'Test-BimiSelector',
'Test-MtaStsPolicy',
'Test-SmtpTlsReportingPolicy',
'Test-SpfRecord',
'Test-DaneRecord',
'Invoke-GooglePublicDnsApi'
)
AliasesToExport = @(
'Test-BimiRecord',
'Test-DaneRecords',
'Test-DkimRecord',
'Test-DomainKeysRecord',
'Test-DomainKeysSelector',
'Test-MtaStsRecord',
'Test-MXRecords',
'Test-NullMXRecord',
'Test-TlsaRecord',
'Test-TlsaRecords'
)
# List of all files packaged with this module
FileList = @(
'en-US/about_BIMI.help.txt',
'en-US/about_DANERecords.help.txt',
'en-US/about_DANERecordsAcronyms.help.txt',
'en-US/about_DANERecordsUsage.help.txt',
'en-US/about_DKIM.help.txt',
'en-US/about_DKIMADSP.help.txt',
'en-US/about_DKIMEd25519.help.txt',
'en-US/about_DKIMRSAKeyUpdates.help.txt',
'en-US/about_DMARC.help.txt',
'en-US/about_IDNEmailAuthentication.help.txt',
'en-US/about_MailPolicyExplainer.help.txt',
'en-US/about_MTA-STS.help.txt',
'en-US/about_MXRecords.help.txt',
'en-US/about_NullMXRecords.help.txt',
'en-US/about_SMTP.help.txt',
'en-US/about_SMTPTLSReporting.help.txt',
'en-US/about_SPF.help.txt',
'src/MailPolicyExplainer.psm1',
'AUTHORS.txt',
'CHANGELOG.md',
'CODE_OF_CONDUCT.md',
'CONTRIBUTING.md',
'INSTALL.md',
'LICENSE.txt',
'MailPolicyExplainer.psd1',
'NEWS.md',
'README.md',
'SECURITY.md'
)
# Private data to pass to the module specified in RootModule/ModuleToProcess.
# This may also contain a PSData hashtable with additional module metadata used
# by PowerShell.
PrivateData = @{
PSData = @{
#Prerelease = 'git'
# Tags applied to this module.
# These help with module discovery in online galleries.
Tags = @(
'email', 'mail', 'SPF', 'DKIM', 'DMARC', 'BIMI', 'DNSSEC', 'DANE',
'MTA-STS', 'MX', 'TLSRPT', 'STARTTLS', 'domainkey', 'TLS', 'TLSA',
'ADSP', 'DNS', 'policy', 'SenderID', 'tester', 'Reporting', 'Test',
'Exchange', 'Office365', 'Google', 'Network', 'Cloud', 'security',
'audit', 'IPv4', 'IPv6', 'SMTP', 'RSA', 'Ed25519',
'Windows', 'MacOS', 'Linux', 'PSEdition_Core', 'PSEdition_Desktop'
)
LicenseUri = 'https://github.com/rhymeswithmogul/MailPolicyExplainer/blob/main/LICENSE.txt'
ProjectUri = 'https://github.com/rhymeswithmogul/MailPolicyExplainer'
IconUri = 'https://raw.githubusercontent.com/rhymeswithmogul/MailPolicyExplainer/main/icon/PSGallery.png'
ReleaseNotes = 'Fixes a bug where DMARC "pct" tokens were not being explained.'
}
}
}