Skip to content

Releases: EvotecIT/Mailozaurr

v2.0.0-Preview4

04 Mar 17:20
3783c36
Compare
Choose a tag to compare
v2.0.0-Preview4 Pre-release
Pre-release

What's new

  • Update to DLLs to latest versions
  • Removes some unnessecary DLLs
  • Different way to build module and load depenedencies
  • Removal of DLLs from source codes
  • Small updates to DLLs
  • Add new DLLs
  • Added ConvertFrom-EmlToMsg to convert EML files to MSG files
  • Added Import-MailFile to import MSG/EML files to PowerShell Object
  • Added Get-MailMessage
  • Added Get-MailMessageAttachment
  • Added Find-BIMIRecord
  • Added Find-CAARecord
  • Added Find-DANERecord
  • Added Find-MTASTSRecord
  • Added Find-O365OpenIDRecord
  • Added Find-SecurityTxtRecord
  • Added Find-TLSRPTRecord
  • Added Find-DNSSECRecord
  • Improve Find-DMARCRecord to return more data
  • Added Get-DMARCData to read DMARC data from XML files
  • Added Find-IPGeolocation to get IP Geolocation data
  • Small improvements to error handling

Full Changelog: v1.0.2...v2.0.0-Preview4

v1.0.2

05 Aug 07:00
de8a8d7
Compare
Choose a tag to compare

What's new

  • Rename SkipCertificateValidatation to SkipCertificateValidation in Send-EmailMessage (typo fix)
  • Added SkipCertificateValidation to Connect-IMAP
  • Added SkipCertificateValidation to Connect-POP3
  • Added SkipCertificateRevocation to Connect-IMAP
  • Added SkipCertificateRevocation to Connect-POP3
  • Use simpler certificate validation callback by @jborean93 in #42

New Contributors

Full Changelog: v1.0.1...v1.0.2

v1.0.1

19 Jul 13:27
cc806a2
Compare
Choose a tag to compare
Update module builder

v1.0.0

20 Dec 14:34
fdd8029
Compare
Choose a tag to compare

What's Changed

  • Add support for delegated sending using Microsoft Graph (Connect-MgGraph) by @PrzemyslawKlys in #38 - It uses Microsoft.Graph.Authentication module and MgGraphRequest switch on Send-EmailMessage.
Import-Module Mailozaurr
Import-Module Microsoft.Graph.Authentication -Force

# this shows how to send email using combination of Mailozaurr and Microsoft.Graph to use Connect-MgGraph to authorize
$Body = EmailBody {
    New-HTMLText -Text "This is test of Connect-MGGraph functionality"
}

# authorize via Connect-MgGraph with delegated rights or any other supported method
Connect-MgGraph -Scopes Mail.Send

# sending email
$sendEmailMessageSplat = @{
    From           = '[email protected]'
    To             = '[email protected]'
    HTML           = $Body
    Subject        = 'This tests email as delegated'
    MgGraphRequest = $true
    Verbose        = $true
}
Send-EmailMessage @sendEmailMessageSplat

Full Changelog: v0.9.0...v1.0.0

v0.9.0

02 Oct 17:08
6d57f68
Compare
Choose a tag to compare
Update changelog

v0.0.25

07 Jun 09:03
2f0c310
Compare
Choose a tag to compare
updated changelog

v0.0.24

24 Jan 17:22
653443d
Compare
Choose a tag to compare
Bump version

v0.0.23

22 Jan 10:22
e36db5d
Compare
Choose a tag to compare
Improvements to logging

- added LogConsole
- added LogObject
Improvements to Troublshooting
- added LocalDomain parameter

v0.0.22

21 Jan 20:13
c13f87a
Compare
Choose a tag to compare
Merge branch 'master' of https://github.com/EvotecIT/Mailozaurr

v0.0.21

07 Jan 08:17
5aeaf9d
Compare
Choose a tag to compare
Version bump