Configuration
This document describes how to enable and disable the Event Notification System for the types of SendSage Studio events that you wish to be notified about:
- SSH into your SendSage server.
- Login to PostgreSQL as the SendSage user:
/var/hvmail/postgres/default/bin/psql -U sendsage
- Enable or disable the event types that you wish to receive by updating the desired
event_notification_*
columns in thes_system_configs
table:
Column Name Event Type event_notification_studio_click
studio_click
event_notification_studio_open
studio_open
event_notification_studio_unsub
studio_unsub
event_notification_bounce_all
bounce_all
event_notification_bounce_bad_address
bounce_bad_address
event_notification_scomp
scomp
event_notification_studio_subscriber_created
studio_subscriber_created
event_notification_studio_subscriber_updated
studio_subscriber_updated
- Example 1: To enable all event types, run:
UPDATE s_system_configs SET event_notification_studio_click = TRUE, event_notification_studio_open = TRUE, event_notification_studio_unsub = TRUE, event_notification_bounce_all = TRUE, event_notification_bounce_bad_address = TRUE, event_notification_scomp = TRUE, event_notification_studio_subscriber_created = TRUE, event_notification_studio_subscriber_updated = TRUE;
- Example 2: To disable all event types, run:
UPDATE s_system_configs SET event_notification_studio_click = TRUE, event_notification_studio_open = FALSE, event_notification_studio_unsub = FALSE, event_notification_bounce_all = FALSE, event_notification_bounce_bad_address = FALSE, event_notification_scomp = FALSE, event_notification_studio_subscriber_created = FALSE, event_notification_studio_subscriber_updated = FALSE;
- Example 1: To enable all event types, run:
- Logout of PostgreSQL:
\q
- Apply changes:
svc -t /service/hvmail-httpd /service/hvmail-studio-worker sleep 7 svstat /service/hvmail-httpd /service/hvmail-studio-worker
- Review the Event Delivery Methods document, and pick which method you would like to use to receive Event Notification System data.