So, my first foray into using flexget. I'm trying to cipher out how to get this to work correctly, but at this point, I'm tired and frustrated. So, turning here for all assistance that I can get.
equipment:
dedicated 13.04 Ubuntu server
transmission-daemon 2.82 (14160)
python-2.7.4
pip-1.5
flexget-1.2.27
transmission works wonderfully. I've set up transmission on about 8 different boxes, I have the configs for that down pat (or at least down to what I find works best and no one complains to me).
Current Goal: My goal is have flexget search for particular tv shows and movies, grab all available HD (> 720p if possible) torrents and add them to my transmission server.
Overall Goal: Flexget will grab episodes and movies that I do not currently have. If I add a movie into trakt or imdb (I believe flexget has the ability to remove movies from a list in imdb, however, can't do that in trakt), but I have already downloaded/recorded/ripped it, flexget simply removes the movie/episode from it's search. Flexget will check a file that will have a current list of all shows/episodes I currently have and search for the next available or fill in gaps of missing episodes.
My current goal is where I am stuck. I have removed the quality settings in an attempt to just capture something however it still doesn't work. My rejections are working as expected, so it's just simply getting the non-rejected from undecided to accepted.
As far as the overall goal, I know that I can query a list with flexget, however, I haven't read to far into that yet. I assume that I can upload, from my media server, a list of all episodes and movies and have flexget query that list to search for everything but those.
Also, as an aside, I would like to get feeds from more than just KAT and PB -- I originally had ISOHunt and ezrss.it included, but those two never produced results, so I removed them. I'm up for trying out a private tracker, as I believe I would meet all requirements.
Here is my config.yml file:
Code: Select all
templates:
global:
transmission:
host: localhost
port: MyTransmissionPort
username: MyUserName
password: MyPassword
email:
from: notification@example.com
to: receiver@example.com
smtp_host: smtp.example.com
smtp_port: 25
smtp_username: notification@example.com
smtp_password: notificationPassword
smtp_tls: yes
regexp:
from: title
reject:
- trailer
- screener
- subbed
- dubbed
- subtitles
- subs
- NL
- Subs
content_filter:
require:
- '*.mkv'
- '*.avi'
- '*.mpg'
- '*.mp4'
reject:
- '*.wmv'
- '*.r0'
- '*.rar'
- '*.part0'
# quality: 720p+
disable_builtins: [seen, seen_info_hash]
magnets: no
trakt_tv:
discover:
what:
- trakt_list:
username: traktUser
password: traktPassword
api_key: traktAPI
custom: 'TV Shows'
strip_dates: no
from:
- kat:
category: tv
verified: yes
- piratebay:
category: 208
movie-global:
discover:
what:
- imdb_list:
list: Movies
username: imdbUser
password: imdbPassword
- trakt_list:
username: traktUser
password: traktPassword
api_key: traktAPI
custom: Movies
strip_dates: no
from:
- kat:
category: movies
verified: yes
- piratebay:
category: 207
tasks:
tv:
template: trakt_tv
movies:
template: movie-global
here is my output from flexget --test --loglevel debug execute
Code: Select all
2014-01-09 13:06 DEBUG util.simple_persistence adding key series_repaired value True
2014-01-09 13:06 DEBUG cron_env Encoding UTF-8 stored
2014-01-09 13:06 DEBUG util.simple_persistence adding key terminal_encoding value 'UTF-8'
2014-01-09 13:06 DEBUG task resetting tv
2014-01-09 13:06 DEBUG task tv resetting tv
2014-01-09 13:06 DEBUG task tv executing tv
2014-01-09 13:06 DEBUG task tv starting session
2014-01-09 13:06 DEBUG template tv Merging template trakt_tv into task tv
2014-01-09 13:06 DEBUG template tv Merging template global into task tv
2014-01-09 13:06 DEBUG builtins tv Disabled builtin plugin(s): seen_info_hash, seen
2014-01-09 13:06 INFO transmission tv Trying to connect to transmission...
2014-01-09 13:06 INFO transmission tv Successfully connected to transmission.
2014-01-09 13:06 DEBUG input_cache tv cache name: trakt_list_cache_results (has: )
2014-01-09 13:06 VERBOSE trakt_list tv Retrieving list custom tv-shows...
2014-01-09 13:06 DEBUG input_cache tv storing to cache trakt_list_cache_results 29 entries
2014-01-09 13:06 DEBUG input_cache tv Storing cache trakt_list_cache_results to database.
2014-01-09 13:06 VERBOSE discover tv Discovering 29 titles ...
2014-01-09 13:06 DEBUG discover tv Doctor Who (2005) -> No previous run recorded
2014-01-09 13:06 DEBUG discover tv interval passed
2014-01-09 13:06 DEBUG discover tv Boardwalk Empire -> No previous run recorded
2014-01-09 13:06 DEBUG discover tv interval passed
2014-01-09 13:06 DEBUG discover tv Burn Notice -> No previous run recorded
2014-01-09 13:06 DEBUG discover tv interval passed
2014-01-09 13:06 DEBUG discover tv Bones -> No previous run recorded
2014-01-09 13:06 DEBUG discover tv interval passed
2014-01-09 13:06 DEBUG discover tv Continuum -> No previous run recorded
2014-01-09 13:06 DEBUG discover tv interval passed
2014-01-09 13:06 DEBUG discover tv Game of Thrones -> No previous run recorded
2014-01-09 13:06 DEBUG discover tv interval passed
2014-01-09 13:06 DEBUG discover tv Homeland -> No previous run recorded
2014-01-09 13:06 DEBUG discover tv interval passed
2014-01-09 13:06 DEBUG discover tv Hostages -> No previous run recorded
2014-01-09 13:06 DEBUG discover tv interval passed
2014-01-09 13:06 DEBUG discover tv Marvel's Agents of S.H.I.E.L.D. -> No previous run recorded
2014-01-09 13:06 DEBUG discover tv interval passed
[brevity -- 20 more entries that appear exactly the same as above]
2014-01-09 13:06 DEBUG est_released tv Doctor Who (2005)
2014-01-09 13:06 DEBUG est_movies tv Unable to check release for Doctor Who (2005), tmdb_release field is not defined
2014-01-09 13:06 DEBUG discover tv No release date could be determined for Doctor Who (2005)
2014-01-09 13:06 DEBUG est_released tv Boardwalk Empire
2014-01-09 13:06 DEBUG est_movies tv Unable to check release for Boardwalk Empire, tmdb_release field is not defined
2014-01-09 13:06 DEBUG discover tv No release date could be determined for Boardwalk Empire
2014-01-09 13:06 DEBUG est_released tv Burn Notice
2014-01-09 13:06 DEBUG est_movies tv Unable to check release for Burn Notice, tmdb_release field is not defined
2014-01-09 13:06 DEBUG discover tv No release date could be determined for Burn Notice
2014-01-09 13:06 DEBUG est_released tv Bones
2014-01-09 13:06 DEBUG est_movies tv Unable to check release for Bones, tmdb_release field is not defined
2014-01-09 13:06 DEBUG discover tv No release date could be determined for Bones
2014-01-09 13:06 DEBUG est_released tv Continuum
2014-01-09 13:06 DEBUG est_movies tv Unable to check release for Continuum, tmdb_release field is not defined
2014-01-09 13:06 DEBUG discover tv No release date could be determined for Continuum
2014-01-09 13:06 DEBUG est_released tv Game of Thrones
2014-01-09 13:06 DEBUG est_movies tv Unable to check release for Game of Thrones, tmdb_release field is not defined
2014-01-09 13:06 DEBUG discover tv No release date could be determined for Game of Thrones
2014-01-09 13:06 DEBUG est_released tv Homeland
2014-01-09 13:06 DEBUG est_movies tv Unable to check release for Homeland, tmdb_release field is not defined
2014-01-09 13:06 DEBUG discover tv No release date could be determined for Homeland
2014-01-09 13:06 DEBUG est_released tv Hostages
2014-01-09 13:06 DEBUG est_movies tv Unable to check release for Hostages, tmdb_release field is not defined
2014-01-09 13:06 DEBUG discover tv No release date could be determined for Hostages
2014-01-09 13:06 DEBUG est_released tv Marvel's Agents of S.H.I.E.L.D.
2014-01-09 13:06 DEBUG est_movies tv Unable to check release for Marvel's Agents of S.H.I.E.L.D., tmdb_release field is not defined
2014-01-09 13:06 DEBUG discover tv No release date could be determined for Marvel's Agents of S.H.I.E.L.D.
[brevity -- 20 more entries that appear exactly the same as above]
2014-01-09 13:06 VERBOSE discover tv Searching for `Doctor Who (2005)` (1 of 29)
2014-01-09 13:06 DEBUG kat tv requesting: http://kickass.to/search/doctor%20who%20%282005%29%20verified%3A1/?rss=1&category=tv
2014-01-09 13:06 DEBUG discover tv Discovered 25 entries from kat
2014-01-09 13:06 VERBOSE discover tv Searching for `Boardwalk Empire` (2 of 29)
2014-01-09 13:06 DEBUG kat tv requesting: http://kickass.to/search/boardwalk%20empire%20verified%3A1/?rss=1&category=tv
2014-01-09 13:06 DEBUG discover tv Discovered 25 entries from kat
2014-01-09 13:06 VERBOSE discover tv Searching for `Burn Notice` (3 of 29)
2014-01-09 13:06 DEBUG kat tv requesting: http://kickass.to/search/burn%20notice%20verified%3A1/?rss=1&category=tv
2014-01-09 13:06 DEBUG discover tv Discovered 25 entries from kat
2014-01-09 13:06 VERBOSE discover tv Searching for `Bones` (4 of 29)
2014-01-09 13:06 DEBUG kat tv requesting: http://kickass.to/search/bones%20verified%3A1/?rss=1&category=tv
2014-01-09 13:06 DEBUG discover tv Discovered 25 entries from kat
2014-01-09 13:06 VERBOSE discover tv Searching for `Continuum` (5 of 29)
2014-01-09 13:06 DEBUG kat tv requesting: http://kickass.to/search/continuum%20verified%3A1/?rss=1&category=tv
2014-01-09 13:06 DEBUG discover tv Discovered 25 entries from kat
2014-01-09 13:06 VERBOSE discover tv Searching for `Game of Thrones` (6 of 29)
2014-01-09 13:06 DEBUG kat tv requesting: http://kickass.to/search/game%20of%20thrones%20verified%3A1/?rss=1&category=tv
2014-01-09 13:06 DEBUG discover tv Discovered 25 entries from kat
2014-01-09 13:06 VERBOSE discover tv Searching for `Homeland` (7 of 29)
2014-01-09 13:06 DEBUG kat tv requesting: http://kickass.to/search/homeland%20verified%3A1/?rss=1&category=tv
2014-01-09 13:06 DEBUG discover tv Discovered 25 entries from kat
2014-01-09 13:06 VERBOSE discover tv Searching for `Hostages` (8 of 29)
2014-01-09 13:06 DEBUG kat tv requesting: http://kickass.to/search/hostages%20verified%3A1/?rss=1&category=tv
2014-01-09 13:07 DEBUG discover tv Discovered 25 entries from kat
2014-01-09 13:07 VERBOSE discover tv Searching for `Marvel's Agents of S.H.I.E.L.D.` (9 of 29)
2014-01-09 13:07 DEBUG kat tv requesting: http://kickass.to/search/marvel%27s%20agents%20of%20s.h.i.e.l.d.%20verified%3A1/?rss=1&category=tv
2014-01-09 13:07 DEBUG discover tv Discovered 25 entries from kat
[brevity -- 20 more entries that appear exactly the same as above]
2014-01-09 13:07 VERBOSE discover tv Searching for `Doctor Who (2005)` (1 of 29)
2014-01-09 13:07 DEBUG piratebay tv Using http://thepiratebay.se/search/Doctor%20Who%20%282005%29/0/7/208 as piratebay search url
2014-01-09 13:07 DEBUG discover tv Discovered 30 entries from piratebay
2014-01-09 13:07 VERBOSE discover tv Searching for `Boardwalk Empire` (2 of 29)
2014-01-09 13:07 DEBUG piratebay tv Using http://thepiratebay.se/search/Boardwalk%20Empire/0/7/208 as piratebay search url
2014-01-09 13:07 DEBUG discover tv Discovered 30 entries from piratebay
2014-01-09 13:07 VERBOSE discover tv Searching for `Burn Notice` (3 of 29)
2014-01-09 13:07 DEBUG piratebay tv Using http://thepiratebay.se/search/Burn%20Notice/0/7/208 as piratebay search url
2014-01-09 13:07 DEBUG discover tv Discovered 30 entries from piratebay
2014-01-09 13:07 VERBOSE discover tv Searching for `Bones` (4 of 29)
2014-01-09 13:07 DEBUG piratebay tv Using http://thepiratebay.se/search/Bones/0/7/208 as piratebay search url
2014-01-09 13:07 DEBUG discover tv Discovered 30 entries from piratebay
2014-01-09 13:07 VERBOSE discover tv Searching for `Continuum` (5 of 29)
2014-01-09 13:07 DEBUG piratebay tv Using http://thepiratebay.se/search/Continuum/0/7/208 as piratebay search url
2014-01-09 13:07 DEBUG discover tv Discovered 30 entries from piratebay
2014-01-09 13:07 VERBOSE discover tv Searching for `Game of Thrones` (6 of 29)
2014-01-09 13:07 DEBUG piratebay tv Using http://thepiratebay.se/search/Game%20of%20Thrones/0/7/208 as piratebay search url
2014-01-09 13:07 DEBUG discover tv Discovered 30 entries from piratebay
2014-01-09 13:07 VERBOSE discover tv Searching for `Homeland` (7 of 29)
2014-01-09 13:07 DEBUG piratebay tv Using http://thepiratebay.se/search/Homeland/0/7/208 as piratebay search url
2014-01-09 13:07 DEBUG discover tv Discovered 30 entries from piratebay
2014-01-09 13:07 VERBOSE discover tv Searching for `Hostages` (8 of 29)
2014-01-09 13:07 DEBUG piratebay tv Using http://thepiratebay.se/search/Hostages/0/7/208 as piratebay search url
2014-01-09 13:07 DEBUG discover tv Discovered 30 entries from piratebay
2014-01-09 13:07 VERBOSE discover tv Searching for `Marvel's Agents of S.H.I.E.L.D.` (9 of 29)
2014-01-09 13:07 DEBUG piratebay tv Using http://thepiratebay.se/search/Marvel%27s%20Agents%20of%20S.H.I.E.L.D./0/7/208 as piratebay search url
2014-01-09 13:07 DEBUG discover tv Discovered 30 entries from piratebay
[brevity -- 20 more entries that appear exactly the same as above]
2014-01-09 13:08 VERBOSE details tv Produced 1493 entries.
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Homeland S03E12 HDTV NL Subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Homeland S03E12 HDTV NL Subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Walking Dead. Seizoen 4 Afl 08 HDTV.XviD. NL Subs. DMT
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Walking Dead. Seizoen 4 Afl 08 HDTV.XviD. NL Subs. DMT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Walking Dead S04-E08 (2013) XviD NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Walking Dead S04-E08 (2013) XviD NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Walking Dead S04E08 720p HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Walking Dead S04E08 720p HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Walking Dead S04E08 HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Walking Dead S04E08 HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Game Of Thrones - Season 2 - Mp4 720p (Eng Subs)
2014-01-09 13:08 VERBOSE task tv REJECTED: `Game Of Thrones - Season 2 - Mp4 720p (Eng Subs)` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Walking Dead Season 4 Mid-Season Complete HDTV + Subs
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Walking Dead Season 4 Mid-Season Complete HDTV + Subs` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Game Of Thrones - Season 2 - Mp4 720p (Eng Subs)
2014-01-09 13:08 VERBOSE task tv REJECTED: `Game Of Thrones - Season 2 - Mp4 720p (Eng Subs)` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Game Of Thrones - Season 1 - Mp4 720p (Eng Subs)
2014-01-09 13:08 VERBOSE task tv REJECTED: `Game Of Thrones - Season 1 - Mp4 720p (Eng Subs)` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Blacklist. Seizoen1 Afl 10 HDTV (XviD) NL Subs DMT
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Blacklist. Seizoen1 Afl 10 HDTV (XviD) NL Subs DMT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Boardwalk Empire S04E12 HDTV NL Subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Boardwalk Empire S04E12 HDTV NL Subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Blacklist S01E10 HDTV nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Blacklist S01E10 HDTV nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Game Of Thrones - Season 1 - Mp4 720p (Eng Subs)
2014-01-09 13:08 VERBOSE task tv REJECTED: `Game Of Thrones - Season 1 - Mp4 720p (Eng Subs)` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Big Bang Theory. Seizoen 7 Afl 12 (divx) 720p. NL Subs. DMT
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Big Bang Theory. Seizoen 7 Afl 12 (divx) 720p. NL Subs. DMT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for THE WALKING DEAD (2013) S04E08 (MkV) 1080p NLSubs TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `THE WALKING DEAD (2013) S04E08 (MkV) 1080p NLSubs TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for THE WALKING DEAD (2013) S04E08 x264 DD5.1 1080p NLSubs TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `THE WALKING DEAD (2013) S04E08 x264 DD5.1 1080p NLSubs TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Game Of Thrones - Season 3 - Mp4 720p (Eng Subs)
2014-01-09 13:08 VERBOSE task tv REJECTED: `Game Of Thrones - Season 3 - Mp4 720p (Eng Subs)` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for THE BLACKLIST (2013) S01E10 x264 1080p ( NLsubs) TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `THE BLACKLIST (2013) S01E10 x264 1080p ( NLsubs) TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The AMERiCANS (2013) S01e13 XviD NLSubs
2014-01-09 13:08 VERBOSE task tv REJECTED: `The AMERiCANS (2013) S01e13 XviD NLSubs` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Big Bang Theory. Seizoen 7 Afl 11 (divx) 720p. NL Subs. DMT
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Big Bang Theory. Seizoen 7 Afl 11 (divx) 720p. NL Subs. DMT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Bones S09E09 HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Bones S09E09 HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for THE BLACKLIST (2013)SEiZOEN 1 DVD 2(NLSubs)sharky-TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `THE BLACKLIST (2013)SEiZOEN 1 DVD 2(NLSubs)sharky-TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for THE BLACKLIST (2013)SEiZOEN 1 DVD 3(NLSubs) TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `THE BLACKLIST (2013)SEiZOEN 1 DVD 3(NLSubs) TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Vikings Seizoen 1 HDTV NL Subs - BBT
2014-01-09 13:08 VERBOSE task tv REJECTED: `Vikings Seizoen 1 HDTV NL Subs - BBT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Almost Human S01E07 HDTV 480p x264 AAC E-Subs [GWC].mp4
2014-01-09 13:08 VERBOSE task tv REJECTED: `Almost Human S01E07 HDTV 480p x264 AAC E-Subs [GWC].mp4` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subtitles' matched field 'title' for The Big Bang Theory S07E12 480p HDTV x264 + Subtitles - OctoBlasT
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Big Bang Theory S07E12 480p HDTV x264 + Subtitles - OctoBlasT` by regexp plugin because regexp 'subtitles' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Sleepy Hollow. Seizoen1 Afl 10 HDTV (XviD) NL Subs DMT
2014-01-09 13:08 VERBOSE task tv REJECTED: `Sleepy Hollow. Seizoen1 Afl 10 HDTV (XviD) NL Subs DMT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for THE BLACKLIST (2013)SEiZOEN 1 DVD 1(NLSubs)sharky-TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `THE BLACKLIST (2013)SEiZOEN 1 DVD 1(NLSubs)sharky-TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Sleepy Hollow. Seizoen1 Afl 09 HDTV (XviD) NL Subs DMT
2014-01-09 13:08 VERBOSE task tv REJECTED: `Sleepy Hollow. Seizoen1 Afl 09 HDTV (XviD) NL Subs DMT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Big Bang Theory S07E11 720p HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Big Bang Theory S07E11 720p HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Bones S09E10 HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Bones S09E10 HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Continuum S02E13 HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Continuum S02E13 HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Big Bang Theory S07E12 HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Big Bang Theory S07E12 HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Sleepy Hollow S01-E09 (2013) XviD NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Sleepy Hollow S01-E09 (2013) XviD NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for True Blood S06E09 720p HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `True Blood S06E09 720p HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Warehouse 13 S04E19 HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Warehouse 13 S04E19 HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Newsroom (2012) Season 1 Mp4 720p (Eng Subs)
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Newsroom (2012) Season 1 Mp4 720p (Eng Subs)` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for True Blood S06E10 720p HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `True Blood S06E10 720p HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The AMERiCANS (2013) S01e11 XviD NLSubs
2014-01-09 13:08 VERBOSE task tv REJECTED: `The AMERiCANS (2013) S01e11 XviD NLSubs` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Big Bang Theory S07E12 720p HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Big Bang Theory S07E12 720p HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The AMERiCANS (2013) S01e13 x264 (WEB-DL)1080p Eng NLsubs
2014-01-09 13:08 VERBOSE task tv REJECTED: `The AMERiCANS (2013) S01e13 x264 (WEB-DL)1080p Eng NLsubs` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Vikings Compleet Seizoen 1 HDTV NL Subs - NLM
2014-01-09 13:08 VERBOSE task tv REJECTED: `Vikings Compleet Seizoen 1 HDTV NL Subs - NLM` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for True Blood S06E10 HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `True Blood S06E10 HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Warehouse 13 S04E19 720p HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Warehouse 13 S04E19 720p HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Blacklist S01-E09 (2013) XviD NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Blacklist S01-E09 (2013) XviD NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Warehouse 13 S04E20 720p HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Warehouse 13 S04E20 720p HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Continuum Seizoen 2 HDTV NL Subs - BBT
2014-01-09 13:08 VERBOSE task tv REJECTED: `Continuum Seizoen 2 HDTV NL Subs - BBT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Big Bang Theory S07E11 HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Big Bang Theory S07E11 HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for True Blood S06E09 HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `True Blood S06E09 HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Blacklist S01E10 480p HDTV x264 AAC E-Subs [GWC].mkv
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Blacklist S01E10 480p HDTV x264 AAC E-Subs [GWC].mkv` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Boardwalk Empire 2013 Seizoen 4 HDTV NL Subs - BBT
2014-01-09 13:08 VERBOSE task tv REJECTED: `Boardwalk Empire 2013 Seizoen 4 HDTV NL Subs - BBT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Tomorrow People US S01E09 HDTV x264 AAC E-Subs [GWC].mp4
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Tomorrow People US S01E09 HDTV x264 AAC E-Subs [GWC].mp4` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Once Upon a Time in Wonderland(2013)S01E08 1080p(NLSubs)TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `Once Upon a Time in Wonderland(2013)S01E08 1080p(NLSubs)TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for New Girl S03-E09 (2013) XviD NLSubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `New Girl S03-E09 (2013) XviD NLSubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for SLEEPY HOLLOW (2013) S01e09 (MkV) 1080p NLsubs TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `SLEEPY HOLLOW (2013) S01e09 (MkV) 1080p NLsubs TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for HOMELAND (2013) S03E12 (MkV) 1080p Ned Subs TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `HOMELAND (2013) S03E12 (MkV) 1080p Ned Subs TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The AMERiCANS (2013) S01e10 x264 (WEB-DL) 1080p NLsubs
2014-01-09 13:08 VERBOSE task tv REJECTED: `The AMERiCANS (2013) S01e10 x264 (WEB-DL) 1080p NLsubs` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The AMERiCANS (2013) S01e12 x264 1080p NLsubs
2014-01-09 13:08 VERBOSE task tv REJECTED: `The AMERiCANS (2013) S01e12 x264 1080p NLsubs` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The AMERiCANS (2013) S01e12 XviD NLSubs
2014-01-09 13:08 VERBOSE task tv REJECTED: `The AMERiCANS (2013) S01e12 XviD NLSubs` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Bones S09E11 720p HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Bones S09E11 720p HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Continuum Seizoen 1 HDTV NL Subs - BBT
2014-01-09 13:08 VERBOSE task tv REJECTED: `Continuum Seizoen 1 HDTV NL Subs - BBT` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Sleepy Hollow S01-E10 (2013) XviD Custom NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Sleepy Hollow S01-E10 (2013) XviD Custom NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Bones S09E11 HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Bones S09E11 HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Marvel Agents of S H I E L D Seizoen 1 DVD-2 (2013) DVD-Cover Custom NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Marvel Agents of S H I E L D Seizoen 1 DVD-2 (2013) DVD-Cover Custom NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Once Upon a Time in Wonderland S01-E07 (2013) XviD Curstom NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Once Upon a Time in Wonderland S01-E07 (2013) XviD Curstom NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Bones S09E10 720p HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Bones S09E10 720p HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Homeland S03-E12 (2013) XviD Custom NLsubs SeizoensFinale NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Homeland S03-E12 (2013) XviD Custom NLsubs SeizoensFinale NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for HOMELAND (2013) SEIZOEN 3 DVD 4 DD5.1 NLSubs TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `HOMELAND (2013) SEIZOEN 3 DVD 4 DD5.1 NLSubs TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Once Upon a Time in Wonderland(2013)S01E08 1080p(NLSubs)TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `Once Upon a Time in Wonderland(2013)S01E08 1080p(NLSubs)TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Once Upon a Time in Wonderland Seizoen 1 DVD1 (2013) NLsubs NLtopper
2014-01-09 13:08 VERBOSE task tv REJECTED: `Once Upon a Time in Wonderland Seizoen 1 DVD1 (2013) NLsubs NLtopper` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Once Upon a Time in Wonderland S01-E06 (2013) XviD NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Once Upon a Time in Wonderland S01-E06 (2013) XviD NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Sleepy Hollow Seizoen 1 (2013) DVD 3 DD5.1 NLSubs TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `Sleepy Hollow Seizoen 1 (2013) DVD 3 DD5.1 NLSubs TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for SLEEPY HOLLOW (2013) S01e10 (MkV) 1080p NLsubs TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `SLEEPY HOLLOW (2013) S01e10 (MkV) 1080p NLsubs TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Warehouse 13 S04E20 HDTV NL subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Warehouse 13 S04E20 HDTV NL subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Continuum S02E12 720p HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Continuum S02E12 720p HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subbed' matched field 'title' for Homeland.S03E02.NLSUBBED.720p.HDTV.x264-iFH[rartv]
2014-01-09 13:08 VERBOSE task tv REJECTED: `Homeland.S03E02.NLSUBBED.720p.HDTV.x264-iFH[rartv]` by regexp plugin because regexp 'subbed' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Homeland Seizoen 3 DVD 4 (2013) DVDCover Custom NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Homeland Seizoen 3 DVD 4 (2013) DVDCover Custom NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Marvel Agents of S H I E L D Seizoen 1 DVD-1 (2013) DVD-Covers Custom NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Marvel Agents of S H I E L D Seizoen 1 DVD-1 (2013) DVD-Covers Custom NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Marvel Agents of S H I E L D Seizoen 1 DVD-2 (2013) DVD-Cover Custom NLsubs NLtoppers REPOST
2014-01-09 13:08 VERBOSE task tv REJECTED: `Marvel Agents of S H I E L D Seizoen 1 DVD-2 (2013) DVD-Cover Custom NLsubs NLtoppers REPOST` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Once Upon a Time in Wonderland S01-E08 (2013) XviD Custom NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Once Upon a Time in Wonderland S01-E08 (2013) XviD Custom NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Once Upon a Time in Wonderland(2013)S01E07 1080p(NLSubs)TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `Once Upon a Time in Wonderland(2013)S01E07 1080p(NLSubs)TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Sleepy Hollow Seizoen 1 DVD3 (2013)DVDCover CustomNLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Sleepy Hollow Seizoen 1 DVD3 (2013)DVDCover CustomNLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Blacklist S01-E10 (2013) XviD Custom NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Blacklist S01-E10 (2013) XviD Custom NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for THE BLACKLIST (2013)SEiZOEN 1 DVD 3(NLSubs) TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `THE BLACKLIST (2013)SEiZOEN 1 DVD 3(NLSubs) TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Blacklist Seizoen 1 DVD3 (2013) -DVD-Cover -Custom-NLsubs- NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Blacklist Seizoen 1 DVD3 (2013) -DVD-Cover -Custom-NLsubs- NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Bones S09E09 720p HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Bones S09E09 720p HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for CONTINUUM (2013) - Seizoen 2 DVD 4 NLSubs TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `CONTINUUM (2013) - Seizoen 2 DVD 4 NLSubs TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Continuum S02E13 720p HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Continuum S02E13 720p HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Continuum S02E11-E13 + FINsubs
2014-01-09 13:08 VERBOSE task tv REJECTED: `Continuum S02E11-E13 + FINsubs` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Continuum S02E12 HDTV Nl subs DutchReleaseTeam
2014-01-09 13:08 VERBOSE task tv REJECTED: `Continuum S02E12 HDTV Nl subs DutchReleaseTeam` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for CONTINUUM (2013) S02e13 x264 SeizoenFinale!!! 1080p NLSubs TBS
2014-01-09 13:08 VERBOSE task tv REJECTED: `CONTINUUM (2013) S02e13 x264 SeizoenFinale!!! 1080p NLSubs TBS` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for Marvel Agents of S H I E L D Seizoen 1 DVD-3 (2013) DVDCover Custom NLsubs NLtoppers
2014-01-09 13:08 VERBOSE task tv REJECTED: `Marvel Agents of S H I E L D Seizoen 1 DVD-3 (2013) DVDCover Custom NLsubs NLtoppers` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG regexp tv regexp 'subs' matched field 'title' for The Newsroom 2012 S02E09 HDTV x264 AAC E-Subs [GWC].mp4
2014-01-09 13:08 VERBOSE task tv REJECTED: `The Newsroom 2012 S02E09 HDTV x264 AAC E-Subs [GWC].mp4` by regexp plugin because regexp 'subs' matched field 'title'
2014-01-09 13:08 DEBUG urlrewriter tv Checking 0 entries
2014-01-09 13:08 VERBOSE details tv Summary - Accepted: 0 (Rejected: 93 Undecided: 1400 Failed: 0)
2014-01-09 13:08 INFO content_filter tv Plugin is partially disabled with --test and --learn because content filename information may not be available
2014-01-09 13:08 VERBOSE email tv No content generated from template, not sending email.
2014-01-09 13:08 DEBUG builtins tv Enabled builtin plugin(s): seen_info_hash, seen
2014-01-09 13:08 DEBUG task tv committing session
2014-01-09 13:08 DEBUG task resetting movies
2014-01-09 13:08 DEBUG task movies resetting movies
2014-01-09 13:08 DEBUG task movies executing movies
2014-01-09 13:08 DEBUG task movies starting session
2014-01-09 13:08 DEBUG template movies Merging template movie-global into task movies
2014-01-09 13:08 DEBUG template movies Merging template global into task movies
2014-01-09 13:08 DEBUG builtins movies Disabled builtin plugin(s): seen_info_hash, seen
2014-01-09 13:08 INFO transmission movies Trying to connect to transmission...
2014-01-09 13:08 INFO transmission movies Successfully connected to transmission.
2014-01-09 13:08 DEBUG input_cache movies cache name: imdb_list_cd9c791910a9e36f03300cf95992fc78 (has: trakt_list_cache_results)
2014-01-09 13:08 VERBOSE imdb_list movies Logging in ...
2014-01-09 13:08 VERBOSE imdb_list movies Getting user_id ...
2014-01-09 13:09 DEBUG imdb_list movies redirected to http://www.imdb.com/user/ur6948840/watchlist
2014-01-09 13:09 VERBOSE imdb_list movies Retrieving list Movies ...
2014-01-09 13:09 DEBUG imdb_list movies Requesting http://www.imdb.com/list/export
2014-01-09 13:09 DEBUG imdb_list movies mime_type: text/html
2014-01-09 13:09 WARNING discover movies Error during input plugin imdb_list: Didn't get CSV export as response. Probably specified list `Movies` does not exist.
2014-01-09 13:09 DEBUG input_cache movies cache name: trakt_list_ba313912db0b2e3648a733f911277789 (has: trakt_list_cache_results)
2014-01-09 13:09 VERBOSE trakt_list movies Retrieving list custom movies...
2014-01-09 13:09 DEBUG input_cache movies storing to cache trakt_list_ba313912db0b2e3648a733f911277789 0 entries
2014-01-09 13:09 DEBUG input_cache movies Storing cache trakt_list_ba313912db0b2e3648a733f911277789 to database.
2014-01-09 13:09 WARNING discover movies Input trakt_list did not return anything
2014-01-09 13:09 VERBOSE discover movies Discovering 0 titles ...
2014-01-09 13:09 VERBOSE details movies Task didn't produce any entries.
2014-01-09 13:09 DEBUG urlrewriter movies Checking 0 entries
2014-01-09 13:09 VERBOSE details movies Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)
2014-01-09 13:09 INFO content_filter movies Plugin is partially disabled with --test and --learn because content filename information may not be available
2014-01-09 13:09 VERBOSE email movies No content generated from template, not sending email.
2014-01-09 13:09 DEBUG builtins movies Enabled builtin plugin(s): seen_info_hash, seen
2014-01-09 13:09 DEBUG task movies committing session
2014-01-09 13:09 DEBUG scheduler scheduler shut down
2014-01-09 13:09 DEBUG manager Shutting down
2014-01-09 13:09 INFO manager Removed test database
2014-01-09 13:09 DEBUG manager Shutdown completed
2014-01-09 13:09 DEBUG manager Removed /home/myuser/.flexget/.config-lock