Skip to content

Commit

Permalink
Release of new version
Browse files Browse the repository at this point in the history
  • Loading branch information
PrzemyslawKlys committed Aug 11, 2020
1 parent 976c9ae commit 014384a
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Docs/Find-DKIMRecord.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ schema: 2.0.0
## SYNTAX

```
Find-DKIMRecord [-DomainName] <Array> [-Selector <String>] [-DnsServer <IPAddress>] [-AsHashTable] [-AsObject]
Find-DKIMRecord [-DomainName] <Array> [-Selector <String>] [-DnsServer <String>] [-AsHashTable] [-AsObject]
[<CommonParameters>]
```

Expand Down Expand Up @@ -65,7 +65,7 @@ Accept wildcard characters: False
{{ Fill DnsServer Description }}
```yaml
Type: IPAddress
Type: String
Parameter Sets: (All)
Aliases:

Expand Down
4 changes: 2 additions & 2 deletions Docs/Find-DMARCRecord.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ schema: 2.0.0
## SYNTAX

```
Find-DMARCRecord [-DomainName] <Array> [-DnsServer <IPAddress>] [-AsHashTable] [-AsObject] [<CommonParameters>]
Find-DMARCRecord [-DomainName] <Array> [-DnsServer <String>] [-AsHashTable] [-AsObject] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -64,7 +64,7 @@ Accept wildcard characters: False
{{ Fill DnsServer Description }}
```yaml
Type: IPAddress
Type: String
Parameter Sets: (All)
Aliases:

Expand Down
6 changes: 3 additions & 3 deletions Docs/Find-MxRecord.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ schema: 2.0.0
## SYNTAX

```
Find-MxRecord [-DomainName] <Array> [-DnsServer <IPAddress>] [-ResolvePTR] [-AsHashTable] [-Separate]
[-AsObject] [<CommonParameters>]
Find-MxRecord [-DomainName] <Array> [-DnsServer <String>] [-ResolvePTR] [-AsHashTable] [-Separate] [-AsObject]
[<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -65,7 +65,7 @@ Accept wildcard characters: False
{{ Fill DnsServer Description }}
```yaml
Type: IPAddress
Type: String
Parameter Sets: (All)
Aliases:

Expand Down
4 changes: 2 additions & 2 deletions Docs/Find-SPFRecord.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ schema: 2.0.0
## SYNTAX

```
Find-SPFRecord [-DomainName] <Array> [-DnsServer <IPAddress>] [-AsHashTable] [-AsObject] [<CommonParameters>]
Find-SPFRecord [-DomainName] <Array> [-DnsServer <String>] [-AsHashTable] [-AsObject] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -64,7 +64,7 @@ Accept wildcard characters: False
{{ Fill DnsServer Description }}
```yaml
Type: IPAddress
Type: String
Parameter Sets: (All)
Aliases:

Expand Down
17 changes: 16 additions & 1 deletion Docs/Resolve-DnsQuery.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ schema: 2.0.0
## SYNTAX

```
Resolve-DnsQuery [-Name] <String> [-Type] <QueryType> [-All] [<CommonParameters>]
Resolve-DnsQuery [-Name] <String> [-Type] <QueryType> [[-Server] <String>] [-All] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -60,6 +60,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -Server
{{ Fill Server Description }}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Type
{{ Fill Type Description }}
Expand Down
2 changes: 1 addition & 1 deletion Mailozaurr.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Description = 'Mailozaurr is a PowerShell module that aims to provide SMTP, POP3, IMAP and few other ways to interact with Email. Underneath it uses MimeKit and MailKit and EmailValidation libraries written by Jeffrey Stedfast. '
FunctionsToExport = 'Connect-IMAP', 'Connect-oAuthGoogle', 'Connect-oAuthO365', 'Connect-POP', 'ConvertTo-GraphCredential', 'ConvertTo-OAuth2Credential', 'Disconnect-IMAP', 'Disconnect-POP', 'Find-DKIMRecord', 'Find-DMARCRecord', 'Find-MxRecord', 'Find-SPFRecord', 'Get-IMAPFolder', 'Get-IMAPMessage', 'Get-MailFolder', 'Get-MailMessage', 'Get-POPMessage', 'Resolve-DnsQuery', 'Save-MailMessage', 'Save-POPMessage', 'Send-EmailMessage', 'Test-EmailAddress'
GUID = '2b0ea9f1-3ff1-4300-b939-106d5da608fa'
ModuleVersion = '0.0.8'
ModuleVersion = '0.0.9'
PowerShellVersion = '5.1'
PrivateData = @{
PSData = @{
Expand Down
4 changes: 2 additions & 2 deletions Publish/Manage-Mailozaurr.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,10 @@ $Configuration = @{
Verbose = $false
}
PublishModule = @{ # requires Enable to be on to process all of that
Enabled = $false
Enabled = $true
Prerelease = ''
RequireForce = $false
GitHub = $false
GitHub = $true
}
}
}
Expand Down
3 changes: 3 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ That's it. Whenever there's a new version, you run the command, and you can enjo

## Changelog

- 0.0.9 - 2020.08.11
- DNS Records
- Fixed `DNSServer` parameter usage [#5](https://github.com/EvotecIT/Mailozaurr/issues/5)
- 0.0.8 - 2020.08.06
- MS Graph API
- Added `Get-MailFolder` - work in progress
Expand Down

0 comments on commit 014384a

Please sign in to comment.