Page 1 of 1

Script / Email when complete

Posted: Wed Feb 18, 2015 2:54 pm
by bobbygood
Hello,

does someone can explain me step by step for a noob how can i create script and how t configure my Ubuntu server to receive an email when a file is completed please ?
I've tried many things but it doesn't work.

Thank you

Re: Script / Email when complete

Posted: Fri Feb 20, 2015 9:22 am
by bobbygood
Hello, can someone tell me if this process is right please ?

I have created a file on my computer called complete.sh with inside :

#!/bin/bash

###
### Script to send an email when a torrent finishes
###

EMAIL=emailATmailDOTcom # Email address

printf "The torrent $TR_TORRENT_NAME has been downloaded successfully at $TR_TIME_LOCATIME\nIl is available in $TR_TORRENT_DIR" | mail -s "Transmission finished downloading : $TR_TORRENT_NAME" $EMAIL

(of course emailATmailDOTcom have been changed with my real mail)

I uploaded this file by FTP on my Ubuntu Server in /etc/transmission-daemon
In my Terminal i wrote :
cd /etc/transmission-daemon
chmod +x complete.sh

then i've changed settings.json
service transmission-daemon stop
nano /etc/transmission-daemon/settings.json
"script-torrent-done-enabled": true,
"script-torrent-done-filename": "/etc/transmission-daemon/complete.sh",
service transmission-daemon start

Did i forget someone ? I don't received any mail...
Thank you

Re: Script / Email when complete

Posted: Sat Feb 21, 2015 7:52 am
by Ziemowit
U might want to have a look into this. http://www.filebot.net/forums/viewtopic.php?t=215
I recently set this up on my nas and use push notifications for that purpose.
I had quite some trouble with all of this since I am new to unix/Linux. But I did the same to activate the post process script, so that part should be alright. U could check if transmission is calling the script in the transmisison log though.

Re: Script / Email when complete

Posted: Thu Feb 26, 2015 10:52 am
by cripes
bobbygood wrote:Hello,

does someone can explain me step by step for a noob how can i create script and how t configure my Ubuntu server to receive an email when a file is completed please ?
I've tried many things but it doesn't work.

Thank you
No need to reinvent the wheel :/

Use the email script /usr/share/doc/transmission-daemon/examples/send-email-when-torrent-done.sh

Works for me on Ubuntu server 14.04.