While I am sure its not the most desired way, and I am still working on figuring out regular expressions, I would like to know why for example *.196*.* won't filter out 1961 (or anything from 1960-1969) ? I obviously would like to filter out specific years. Even putting in specifically 1961, to reject, doesnt work.
Is there a simpler way to do it in sabnzbd ?
Does sabnzbd need restarted after a filter change (I dont belive that to be the case) ?
Question about RSS feed filter....
Forum rules
Help us help you:
Help us help you:
- Are you using the latest stable version of SABnzbd? Downloads page.
- Tell us what system you run SABnzbd on.
- Adhere to the forum rules.
- Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings. - Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Question about RSS feed filter....
Last edited by renegade on September 2nd, 2010, 10:06 am, edited 1 time in total.
Re: Question about RSS feed filter....
When you want to use regular expressions, you need to prefix the filter with re:
Otherwise you will only have a basic wildcard expression.
So, in you case you would need this:
re:196[0-9]
For more info, see: http://wiki.sabnzbd.org/configure-rss-v2
Otherwise you will only have a basic wildcard expression.
So, in you case you would need this:
re:196[0-9]
For more info, see: http://wiki.sabnzbd.org/configure-rss-v2
Re: Question about RSS feed filter....
Understood about regular expressions, my question is why when I use for example 1961 in filters and set to reject, it still allows it to be accepted?shypike wrote: When you want to use regular expressions, you need to prefix the filter with re:
Otherwise you will only have a basic wildcard expression.
So, in you case you would need this:
re:196[0-9]
For more info, see: http://wiki.sabnzbd.org/configure-rss-v2
Re: Question about RSS feed filter....
The order of the filters is important.
The "Reject" filters must come before the "Accept" filters.
Evaluation stops as soon as the first filter triggers.
The "Reject" filters must come before the "Accept" filters.
Evaluation stops as soon as the first filter triggers.

