Skip to main content
Skip table of contents

Appendix B. Additional Key Survey features

B.1. Bounce email processing

To enable bounced email processing create an imap mailbox where bounced emails will be delivered, for example bounce@yourdomain.com. Then add the following code to the 'c:\hosting\keysurvey-standalone\keysurvey\config.properties' file and change parameters in the angle brackets according to your configuration.

CODE
#####BOUNCED EMAILS SPECIFIC PROPERTIES#####
# Enables the Bounced Processor
BOUNCED_PROCESSOR_START=true
# Delay in minutes between mailbox checks
MAIL_BOUNCED_SERV_MINUTES_DELAY=60
# Whether to delete the processed messages
MAIL_BOUNCED_DELETE=true
# Pattern to create ReturnPath email header. Do not remove '+{0}'
BOUNCED_ADDRESS_TEMPLATE=bounce+{0}@yourdomain.com
# Email retrieving protocol
MAIL_BOUNCED_PROTOCOL=imap
# Email account settings
MAIL_BOUNCED_USER=<MAIL_BOUNCED_USER>
MAIL_BOUNCED_PASSWORD=<MAIL_BOUNCED_PASSWORD>
mail.imap.host=<MAIL_IMAP_HOST>
#####END BOUNCED EMAILS SPECIFIC PROPERTIES#####

For example this section can look like the following:

CODE
#####BOUNCED EMAILS SPECIFIC PROPERTIES#####
# Enables the Bounced Processor
BOUNCED_PROCESSOR_START=true
# Delay in minutes between mailbox checks
MAIL_BOUNCED_SERV_MINUTES_DELAY=60
# Whether to delete the processed messages
MAIL_BOUNCED_DELETE=true
# Pattern to create ReturnPath email header. Do not remove '+{0}'
BOUNCED_ADDRESS_TEMPLATE=bounce+{0}@yourdomain.com
# Email retrieving protocol
MAIL_BOUNCED_PROTOCOL=imap
# Email account settings
MAIL_BOUNCED_USER=bounce
MAIL_BOUNCED_PASSWORD=password
mail.imap.host=192.168.0.2
#####END BOUNCED EMAILS SPECIFIC PROPERTIES#####

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.