[Bug 214934] mail/rss2email2

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Tue Nov 29 22:28:59 UTC 2016


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214934

            Bug ID: 214934
           Summary: mail/rss2email2
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: Individual Port(s)
          Assignee: freebsd-ports-bugs at FreeBSD.org
          Reporter: jonathan at invertedearth.net
                CC: srg at guglielmo.us
             Flags: maintainer-feedback?(srg at guglielmo.us)
                CC: srg at guglielmo.us

I ran into an (apparently documented, but very old) bug yesterday. Turns out
it's fixed in Debian with a one-line patch, which can be found here:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734327;msg=5

The bug is basically triggered by malformed rss feeds. The fix comes down to
filtering out bad tags with a kludge like:

- tagline = ",".join(taglist)
+ tagline = ",".join(filter(None, taglist))

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list