vancado/vnc-powermail-encrypt

Adds encryption to powermail receiver emails with Secure Email (S/MIME) certificate. Supports certificates in .pem format.

Installs: 10 541

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

Type:typo3-cms-extension

1.1.0 2022-10-11 14:57 UTC

This package is auto-updated.

Last update: 2024-04-11 18:17:47 UTC


README

Allows you to encrypt recipient emails with Secure Email (S/MIME) certificate. Supports S/MIME certificates in PEM format, to convert .crt certificate to .pem format use following command.

openssl x509 -in mycert.crt -out mycert.pem -outform PEM

Installation

Installation using Composer

The recommended way to install the extension is by using Composer. In your Composer based TYPO3 project root, just do composer require vancado/vnc-powermail-encrypt.

Installation as extension from TYPO3 Extension Repository (TER)

Download and install the extension with the TYPO3 extension manager module.

Configuration

  1. Include the static TypoScript of the extension.
  2. Define the path to the folder where certificates are stored (By default EXT:vnc_powermail_encrypt/Resources/Private/Certificates) in TypoScript-Constant
  3. Specify certificate file for each recipient email address in Typoscript:
plugin.tx_powermail {
  settings.setup {
    encryption {			
      # specify certificates for each email address
      certificates {
        1 {
          email = info@example.com 
          certificate = info@example.com.pem
        }
        
      }
    }
  }
}