Sent this to Barry late last night, but haven't seen a fix or a note here, so:
in case anyone else is having the same problem:
--- Begin Message ---
I don't know if this is the correct fix, but using the GUI to
change bounce parameters has a problem without it:
Index: Bounce.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/Gui/Bounce.py,v
retrieving revision 2.2
diff -r2.2 Bounce.py
119c119
< def convert(varname, func, mlist=mlist, cgidata=cgidata, doc=doc):
---
> def convert(self, varname, func, mlist=mlist, cgidata=cgidata, doc=doc
):
126,130c126,130
< convert('bounce_processing', int)
< convert('bounce_score_threshold', float)
< convert('bounce_info_stale_after', to_days)
< convert('bounce_you_are_disabled_warnings', int)
< convert('bounce_you_are_disabled_warnings_interval', to_days)
---
> convert(self, 'bounce_processing', int)
> convert(self, 'bounce_score_threshold', float)
> convert(self, 'bounce_info_stale_after', to_days)
> convert(self, 'bounce_you_are_disabled_warnings', int)
> convert(self, 'bounce_you_are_disabled_warnings_interval', to_days)
--- End Message ---