sympa-community / sympa

Sympa, Mailing List Management Software
https://www.sympa.community/sympa
GNU General Public License v2.0
237 stars 94 forks source link

Incorrect "No bouncing members" on a large list with small number of bouncers #1842

Open adam12b1 opened 1 month ago

adam12b1 commented 1 month ago

Sympa 6.2.72 installed from ports/package

On a large list (thousands of members) with only a handful of bouncers, the Bounces page incorrectly shows "No bouncing members", because the bounce_rate rounds down to zero. It should use bounce_total instead.

So, in reviewbouncing.tt2, change bounce_rate to bounce_total in this code:

[% IF bounce_rate %]
    <a class="actionMenuLinks" href="[% 'export_member' | url_rel([list,'bounce']) %]">
        [%|loc%]Dump[%END%]
    </a>
[...]