http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10832 --- Comment #14 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- Yet another bug in overdue_notices.pl. For the overdue letter 2, if there are more than one borrower receiving a overdueletter2 from the same branch via $mtt = print. Only the firstly handled borrower gets his overdue letter, other print letters for the same branch and borrowertype and overdueletternumber are skipped because $print_sent == 1. overdue_notices.pl: 627 => $print_sent = 1 if $mtt eq 'print'; is the culprit, but overdue_notices.pl: 438 => my $print_sent = 0; # We never sent a print notice is instantiated too early, preventing iteration of extra borrowers. -- You are receiving this mail because: You are watching all bug changes.