├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── validate.yml ├── .gitignore ├── LICENSE ├── MailDaemon ├── MailDaemon.psd1 ├── MailDaemon.psm1 ├── bin │ └── readme.md ├── changelog.md ├── en-us │ ├── about_MailDaemon.help.txt │ └── strings.psd1 ├── functions │ ├── Add-MDMailContent.ps1 │ ├── Install-MDDaemon.ps1 │ ├── Invoke-MDDaemon.ps1 │ ├── Save-MDCredential.ps1 │ ├── Send-MDMail.ps1 │ ├── Set-MDDaemon.ps1 │ ├── Set-MDMail.ps1 │ ├── Update-MDFolderPermission.ps1 │ └── readme.md ├── internal │ ├── configurations │ │ ├── configuration.ps1 │ │ ├── daemon.ps1 │ │ └── readme.md │ ├── functions │ │ ├── Copy-Module.ps1 │ │ ├── Test-Module.ps1 │ │ └── readme.md │ ├── scriptblocks │ │ └── scriptblocks.ps1 │ ├── scripts │ │ ├── license.ps1 │ │ ├── postimport.ps1 │ │ ├── preimport.ps1 │ │ └── strings.ps1 │ └── tepp │ │ ├── assignment.ps1 │ │ ├── example.tepp.ps1 │ │ └── readme.md ├── readme.md ├── tests │ ├── functions │ │ └── readme.md │ ├── general │ │ ├── FileIntegrity.Exceptions.ps1 │ │ ├── FileIntegrity.Tests.ps1 │ │ ├── Help.Exceptions.ps1 │ │ ├── Help.Tests.ps1 │ │ ├── Manifest.Tests.ps1 │ │ ├── PSScriptAnalyzer.Tests.ps1 │ │ ├── strings.Exceptions.ps1 │ │ └── strings.Tests.ps1 │ ├── pester.ps1 │ └── readme.md └── xml │ ├── MailDaemon.Format.ps1xml │ ├── MailDaemon.Types.ps1xml │ └── readme.md ├── README.md └── azure-pipelines.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/LICENSE -------------------------------------------------------------------------------- /MailDaemon/MailDaemon.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/MailDaemon.psd1 -------------------------------------------------------------------------------- /MailDaemon/MailDaemon.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/MailDaemon.psm1 -------------------------------------------------------------------------------- /MailDaemon/bin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/bin/readme.md -------------------------------------------------------------------------------- /MailDaemon/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/changelog.md -------------------------------------------------------------------------------- /MailDaemon/en-us/about_MailDaemon.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/en-us/about_MailDaemon.help.txt -------------------------------------------------------------------------------- /MailDaemon/en-us/strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/en-us/strings.psd1 -------------------------------------------------------------------------------- /MailDaemon/functions/Add-MDMailContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/functions/Add-MDMailContent.ps1 -------------------------------------------------------------------------------- /MailDaemon/functions/Install-MDDaemon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/functions/Install-MDDaemon.ps1 -------------------------------------------------------------------------------- /MailDaemon/functions/Invoke-MDDaemon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/functions/Invoke-MDDaemon.ps1 -------------------------------------------------------------------------------- /MailDaemon/functions/Save-MDCredential.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/functions/Save-MDCredential.ps1 -------------------------------------------------------------------------------- /MailDaemon/functions/Send-MDMail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/functions/Send-MDMail.ps1 -------------------------------------------------------------------------------- /MailDaemon/functions/Set-MDDaemon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/functions/Set-MDDaemon.ps1 -------------------------------------------------------------------------------- /MailDaemon/functions/Set-MDMail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/functions/Set-MDMail.ps1 -------------------------------------------------------------------------------- /MailDaemon/functions/Update-MDFolderPermission.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/functions/Update-MDFolderPermission.ps1 -------------------------------------------------------------------------------- /MailDaemon/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/functions/readme.md -------------------------------------------------------------------------------- /MailDaemon/internal/configurations/configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/configurations/configuration.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/configurations/daemon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/configurations/daemon.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/configurations/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/configurations/readme.md -------------------------------------------------------------------------------- /MailDaemon/internal/functions/Copy-Module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/functions/Copy-Module.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/functions/Test-Module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/functions/Test-Module.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/functions/readme.md -------------------------------------------------------------------------------- /MailDaemon/internal/scriptblocks/scriptblocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/scriptblocks/scriptblocks.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/scripts/license.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/scripts/license.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/scripts/postimport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/scripts/postimport.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/scripts/preimport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/scripts/preimport.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/scripts/strings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/scripts/strings.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/tepp/assignment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/tepp/assignment.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/tepp/example.tepp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/tepp/example.tepp.ps1 -------------------------------------------------------------------------------- /MailDaemon/internal/tepp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/internal/tepp/readme.md -------------------------------------------------------------------------------- /MailDaemon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/readme.md -------------------------------------------------------------------------------- /MailDaemon/tests/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/functions/readme.md -------------------------------------------------------------------------------- /MailDaemon/tests/general/FileIntegrity.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/general/FileIntegrity.Exceptions.ps1 -------------------------------------------------------------------------------- /MailDaemon/tests/general/FileIntegrity.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/general/FileIntegrity.Tests.ps1 -------------------------------------------------------------------------------- /MailDaemon/tests/general/Help.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/general/Help.Exceptions.ps1 -------------------------------------------------------------------------------- /MailDaemon/tests/general/Help.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/general/Help.Tests.ps1 -------------------------------------------------------------------------------- /MailDaemon/tests/general/Manifest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/general/Manifest.Tests.ps1 -------------------------------------------------------------------------------- /MailDaemon/tests/general/PSScriptAnalyzer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/general/PSScriptAnalyzer.Tests.ps1 -------------------------------------------------------------------------------- /MailDaemon/tests/general/strings.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/general/strings.Exceptions.ps1 -------------------------------------------------------------------------------- /MailDaemon/tests/general/strings.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/general/strings.Tests.ps1 -------------------------------------------------------------------------------- /MailDaemon/tests/pester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/pester.ps1 -------------------------------------------------------------------------------- /MailDaemon/tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/tests/readme.md -------------------------------------------------------------------------------- /MailDaemon/xml/MailDaemon.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/xml/MailDaemon.Format.ps1xml -------------------------------------------------------------------------------- /MailDaemon/xml/MailDaemon.Types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/xml/MailDaemon.Types.ps1xml -------------------------------------------------------------------------------- /MailDaemon/xml/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/MailDaemon/xml/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowershellFrameworkCollective/MailDaemon/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------