Configuring LiveView server email alert actions to use the Gmail SMTP service
book
Article ID: KB0075190
calendar_today
Updated On:
Description
LiveView Alerts have an email action option. The GMail SMTP service is useful for quick demos and proofs-of-concept. Some additional server system properties must be set in the LiveView project's sbd.sbconf file.
Resolution
More information about configuring alerts, email actions, and server configuration can be found in the product documentation (
TIBCO Product Documentation, LiveView Data Mart).
Cut-and-paste these system properties into the
<java-vm> section of a LiveView project's sbd.sbconf file:
<sysproperty name="liveview.alert.email.smtpServer" value="smtp.gmail.com"/>
<sysproperty name="liveview.alert.email.smtpPort" value="465"/>
<sysproperty name="liveview.alert.email.useAuthentication" value="true"/>
<sysproperty name="liveview.alert.email.useSSL" value="true"/>
<sysproperty name="liveview.alert.email.username" value="YourUserNameHere"/>
<sysproperty name="liveview.alert.email.password" value="YourPasswordHere"/>
Change YourUserNameHere and YourPasswordHere, which should be a GMail user name and password.
Configuring Gmail SMTP as a Less Secure App
In June of 2014, Google changed their access policies for Gmail SMTP. SMTP is now considered a "less secure app" and less secure apps must be explicitly enabled for the destination account. (Some organizational users of Gmail may not be allowed to enable this access at all.)
Issue/Introduction
Configuring LiveView server email alert actions to use the Gmail SMTP service
Feedback
thumb_up
Yes
thumb_down
No