Notifications Plugin Config

General support for problems installing or using Deluge
Post Reply
m3th1dz
New User
New User
Posts: 2
Joined: Tue Nov 20, 2012 4:53 pm

Notifications Plugin Config

Post by m3th1dz »

I got the deluged daemon running on my headless Ubuntu 12.04.1 Server. What I'm wanting to do is have Deluge email me when the torrent finishes downloading. I was able to enable the Notifications Plugin through the deluge-console, but what I can't figure out is how to change the settings so that I put in the information for smtp server and the like.

Any help is appreciated
urbanswelt
New User
New User
Posts: 4
Joined: Tue Dec 25, 2012 2:29 pm

Re: Notifications Plugin Config

Post by urbanswelt »

Hello m3th1dz,

i have play around 4 day´s to find a Solution for our headless Servers -__
I have it installed on my brand new Raspberry Server =D

But here now my solution:

1. dependence from my System

I use only the web UI , the deamon run´s for the User deluge in home /var/lib/deluge and i have it installed from Source, last 1.3.5
Create a file with the name

Code: Select all

notifications-core.conf
put into this your credentials

Code: Select all

{
  "file": 1, 
  "format": 1
}{
  "smtp_recipients": [
    "yournamehere@gmail.com"
  ], 
  "smtp_enabled": true, 
  "subscriptions": {
    "email": [
      "TorrentFinishedEvent"
    ]
  }, 
  "smtp_port": 25, 
  "smtp_host": "smtp.gmail.com", 
  "smtp_from": "yournamehere@gmail.com", 
  "smtp_user": "yournamehere", 
  "smtp_pass": "mypassword", 
  "smtp_tls": true
}
and after this put it to /var/lib/deluge/.config/deluge/

in this folder exist a file with the name core.conf
open it and verify the section :

Code: Select all

  "enabled_plugins": [
    "Notifications"
  ], 
don´t create it self ! Make this section auto enable with this steps from the web ui:

1. open the webui
2. go to Preferences
3. Plugin
4. Check Notifications
5. Push Button OK
6. Go to Connection Manager and stop the deamon

now show again in the core.conf this sections was enabled.

It is a Stupid workaround for Server config but its run perfectly =)

Greetings

i add later a Tutorial for this
Post Reply