In this section:
Table of Contents | ||
---|---|---|
|
Introduction
The SMTP Listener is a custom message listener extension for Parasoft Virtualize. It stands up a temporary SMTP server that notifies Virtualize on a per-message basis allowing users to accept or reject, with a custom rejection message, the incoming message and perform validations and post-processing as needed.
In this section:
Table of Contents | ||
---|---|---|
|
Installation
This tool can be installed from the UI or the command line.
Installing from the UI
- Go to Parasoft > Preferences and click System Properties.
- Click Add JARs and choose
- Choose Parasoft> Preferences.
- Choose System Properties and click Add JARs.
- In the file chooser, select com.virtualize.listener.smtp-<version><VERSION>.jar.
- Click Apply and restart .
- Restart Virtualize.
Installing from the Command Line
Add the com.parasoft.virtualize.listener.smtp-<version><VERSION>.jar file to the system.properties.classpath
property in your settings properties file. For example:
system.properties.classpath=<path to jar><PATH_TO_JAR>/com.parasoft.virtualize.listener.smtp-1.1.0.jar
...
- In the Virtualize Server view, choose the virtual asset you want to configure to use with the custom message listener.
- Choose Transports> Custom in the Virtual Asset Deployment Settings. If multiple listeners are installed, use choose SMTP Listener from the Select Implementation drop-down menu to select SMTPListener.
- Configure the connection and security settings (see Configuration).
- Save your changes.
...
User Properties File | Specifies the absolute path to a properties file used to define username and password combinations. The passwords are stored in plain text. The properties file should be configured in the following format:
If this field is left empty, user authentication will be disabled. |
---|---|
Enable Transport Layer Security | Enables/disables transport layer security. If set to |
Key Store File | Specifies the absolute path to a keystore file. The keystore file must be in a standard format (e.g.for example, JKS, PKCS12, etc.and so on). If TLS is enabled and no value is defined, the JVM system property TLS must be enabled for this property to have any effect. |
Key Store Type | Defines the type of keystore file supplied in the Key Store File setting. If TLS is enabled and no value is defined, the JVM system property TLS must be enabled for this property to have any effect. |
Key Store Password | Defines the password for the keystore supplied in the Key Store File setting. If TLS is enabled and no value is defined, the JVM system property TLS must be enabled for this property to have any effect. |
Enable Client Authentication | Enables/disables client authentication when TLS is enabled. If set to TLS must be enabled for this property to have any effect.Default is |
Trust Store File | Specifies the absolute path to the keystore file used for verifying the authenticity (“trust”) of client certificates. The keystore file must be in a standard format (e.g.for example, JKS, PKCS12, etc.and so on). If TLS is enabled and no value is defined, the JVM system property TLS must be enabled for this property to have any effect. |
Trust Store Type | Defines the type of keystore file supplied in the Trust Store File setting. If TLS is enabled and no value is defined, the JVM system property TLS must be enabled for this property to have any effect. |
Trust Store Password | Defines the password for the keystore supplied in the Trust Store File setting. If TLS is enabled and no value is defined, the JVM system property TLS must be enabled for this property to have any effect. |
Change Log
1.2.1
- Version adjusted
- The listener will no longer attempt to start when not configured with a port
...