I'm new to docker and trying to migrate v5 plugin based apps to docker.
I use your transmission docker template after some mods on settings.json file i'm running with my old settings exepct one thing:
I was using this script to send email after a torrent done.
#!/bin/bash
echo -e "From: \"Transmission\"\nSubject: Torrent Done\n\n\"$TR_TORRENT_NAME\" download complete on $TR_TIME_LOCALTIME" | ssmtp -d root
so i added these lines to settings.json and copy the script to /config,
"script-torrent-done-enabled": true,.
"script-torrent-done-filename": "/config/send-email-when-torrent-done.sh",
and according to log it is calling the script,
[2015-06-18 11:16:47.976 EEST] 01 Bad Blood (feat. Kendrick Lamar).mp3 State changed from "Incomplete" to "Complete" (torrent.c:2161)
[2015-06-18 11:16:47.976 EEST] 01 Bad Blood (feat. Kendrick Lamar).mp3 Calling script "/config/send-email-when-torrent-done.sh" (torrent.c:2119)
but nothing happens
i try both bridged and host modes, i try to add port 25 to mapping but all same result.
is it becaouse ssmtp package is missing in the docker template?