Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 1661 by tlipcon: Multiple mailing list for a review group doesn't work
http://code.google.com/p/reviewboard/issues/detail?id=1661

What version are you running?
1.0.7

What steps will reproduce the problem?
1. Try to set up a comma separated list of mailing lists for a review group

What is the expected output? What do you see instead?
The form validation says the comma separated list is not a correct email
address.

I worked around that by just setting the field in the DB manually, since I
noticed reviews/emails.py has some logic for looking for "," in the field.

But there's a slight bug there:


        else:
            # The mailing list field has multiple e-mail addresses in it.
            # We don't know which one should have the group's display name
            # attached to it, so just return their custom list as-is.
            return g.mailing_list
should be
            return g.mailing_list.split(",")

After this change, it works as expected.

--
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To post to this group, send email to reviewboard-iss...@googlegroups.com.
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en.

Reply via email to