Advertisement
Guest User

Untitled

a guest
May 18th, 2017
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.03 KB | None | 0 0
  1. web_server: yes
  2. variables: variables.yml
  3.  
  4. ### IRC
  5.  
  6. irc:
  7.   torrentleech_irc:
  8.     tracker_file: 'TorrentLeech.tracker'
  9.     task_re:
  10.       rtorrent_download:
  11.         - regexp: '(TV :: Episodes HD)'
  12.           field: irc_category
  13.     port: 7011
  14.     nickname: '{? torrentleech.bot ?}'
  15.     rsskey: '{? torrentleech.rsskey ?}'
  16.  
  17. ### Templates
  18.  
  19. templates:
  20.   send-deluged:
  21.     deluge:
  22.       username: '{? deluge.username ?}'
  23.       password: '{? deluge.password ?}'
  24.       host: '{? deluge.url ?}'
  25.  
  26.   send-rtorrent:
  27.     rtorrent:
  28.       uri: '{? rtorrent.url ?}'
  29.       path: '{? storage.tv.path ?}'
  30.  
  31.   tv:
  32.     configure_series:
  33.       from:
  34.         thetvdb_list:
  35.           username: '{? thetvdb.username ?}'
  36.           account_id: '{? thetvdb.id ?}'
  37.       settings:
  38.         quality: 720p-1080p
  39.         upgrade: yes
  40.         propers: 72 hours
  41.     rtorrent:
  42.       uri: '{? rtorrent.url ?}'
  43.       path: '{? storage.tv.path ?}'
  44.      
  45.   movies:
  46.     imdb:
  47.       min_score: 7.0
  48.       min_votes: 5000
  49.       min_year: 2010
  50.       reject_genres:
  51.        - horror
  52.       reject_languages:
  53.        - hindi
  54.     quality:
  55.      - 1080p
  56.     exists_movie:
  57.      - '{? storage.movies.path ?}'
  58.     set:
  59.       path: '{? storage.movies.path ?}'
  60.     content_size:
  61.       max: 25000
  62.       min: 2000
  63.     deluge:
  64.       label: movies
  65.       main_file_only: yes
  66.  
  67.   wishlist:
  68.     quality:
  69.      - 1080p
  70.     exists_movie:
  71.      - '{? storage.movies.path ?}'
  72.     set:
  73.       path: '{? storage.movies.path ?}'
  74.     content_size:
  75.       max: 20000
  76.       min: 2000
  77.     deluge:
  78.       label: movies
  79.       main_file_only: yes
  80.  
  81. ### Tasks
  82.  
  83. tasks:
  84.   HDBits:
  85.     rss:
  86.       url: '{? rss.hdbits.movies.url ?}'  
  87.       all_entries: no
  88.     template:
  89.       - movies
  90.       - send-deluged
  91.     free_space:
  92.       path: /video/
  93.       space: 500000
  94.     digest:
  95.       list: daily email
  96.       state:
  97.        - accepted
  98.         - rejected
  99.         - undecided
  100.         - failed
  101.  
  102.   HDBitsTV:
  103.     rss:
  104.       url: '{? rss.hdbits.tv.url ?}'
  105.       all_entries: no
  106.     template:
  107.       - tv
  108.       - send-rtorrent
  109.     digest:
  110.       list: daily email
  111.       state:
  112.        - accepted
  113.         - rejected
  114.     manipulate:
  115.       - title:
  116.           replace:
  117.             regexp: (\d{4})x(\d{2})
  118.             format: \1.\2
  119.  
  120.   duplicate-movies:
  121.     manual: yes
  122.     seen: no
  123.     filesystem: '{? storage.movies.path ?}'
  124.     imdb_lookup: yes
  125.     duplicates:
  126.       field: imdb_id
  127.       action: accept
  128.     make_html:
  129.       file: ~/duplicates.html
  130.  
  131.   rtorrent_download:
  132.     template: tv
  133.  
  134.   deluge-download:
  135.     template: send-deluged
  136.  
  137.   notify:
  138.     task:
  139.       template: html
  140.       via:
  141.         - email:
  142.             from: xxxxx
  143.             to: xxxxx
  144.             smtp_host: xxxx
  145.             smtp_port: xxx
  146.             smtp_username: xxxx
  147.             smtp_password: xxxx
  148.             smtp_tls: xxxx
  149.  
  150. ### Schedules    
  151.  
  152. schedules:
  153.   - tasks: [Movies, TV]
  154.     interval:
  155.       minutes: 5
  156.   - tasks: [Wish]
  157.     interval:
  158.       minutes: 15
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement