Skip to main content

Sametime 12

Customizing Sametime 12

In file custom.env add the following

REACT_APP_PRODUCT_LOGO=/images/branding/my-logo.jpg # Change login logo
REACT_APP_MEETING_BANNER_IMAGE=/images/branding/my-logo.jpg # Change meetings logo
REACT_APP_MEETING_BACKGROUND_IMAGE=/images/branding/my-theme.jpg # Change meetings background

The image files needs to be placed in sametime-config/web/branding/. You can place your favicon.ico file there as well

Sametime 12 awareness in HCL Verse

Adding your own company branding in sametime 12

  1. In file custom.env set
STI__ST_BB_NAMES__ST_AUTH_TOKEN=Fork:Jwt,Ltpa
  1. Export your LTPA token from WebSphere. See Here

  2. Copy the LTPA token file from WebSphere to your Sametime server

  3. In file .env set

ENABLE_LTPA=true
LTPA_KEYS_FILE_PATH=/PATH_TO_FILE_OUTSIDE_OF_SAMETIME_FOLDER/ltpa.keys
LTPA_KEYS=/ltpa-config/ltpa.keys
LTPA_KEYS_PASSWORD=YOUR_EXPORT_PASSWORD
  1. In file docker-compose.yml set
SAMETIME_EXTERNAL_WARINTEGRATION=true

Sametime 12 Start/Stop Script

I have written a script for starting and stopping the sametime containers. The script is for Sametime 12 on Docker.
It can be found here:

git clone https://github.com/kholmqvist/sametime.git

Please note that my sametime folder is placed in /opt. So if yours is placed elsewhere, then change the sametime_dir="/opt/sametime" variable to your needs