diff --git a/contrib/backends/srndv2/src/srnd/policy.go b/contrib/backends/srndv2/src/srnd/policy.go index f5cf783..1bbd2ad 100644 --- a/contrib/backends/srndv2/src/srnd/policy.go +++ b/contrib/backends/srndv2/src/srnd/policy.go @@ -4,8 +4,8 @@ package srnd import ( - "log" "regexp" + "strings" ) type FeedPolicy struct { @@ -15,18 +15,22 @@ type FeedPolicy struct { // do we allow this newsgroup? func (self *FeedPolicy) AllowsNewsgroup(newsgroup string) (result bool) { var k, v string + var allows, disallows int for k, v = range self.rules { + v = strings.Trim(v, " ") match, err := regexp.MatchString(k, newsgroup) - if err != nil { - log.Fatal(err) - } - if match { - if v == "0" { - return false - } else if v == "1" { - result = true + if err == nil { + if match { + if v == "1" { + allows++ + } else if v == "0" { + disallows++ + } } } } - return result + + result = allows > 0 && disallows == 0 + + return }