https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=43160
--- Comment #1 from Marion Durand <[email protected]> --- Technical note : In the codeof overdue_notices.pl, we look for a library specific rule, and if there is none, the we take the default one. Then, when sending the notice, we look for what transport type to use with the following code ``` my @message_transport_types = @{ GetOverdueMessageTransportTypes( $branchcode, $overdue_rules->{categorycode}, $i) }; @message_transport_types = @{ GetOverdueMessageTransportTypes( q{}, $overdue_rules->{categorycode}, $i) } unless @message_transport_types; ``` This means that, even if we have a rule defined for a branchcode, if no transport type is associated with this rule, we still take the default transport type. My suggestion is to add a transport type that is "no transport type" (in addition to email, print, sms, phone, itivia, ...). That way, we do not alter the current behavior but we add a possibility to explicitally stop sending email for a category. -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list -- [email protected] To unsubscribe send an email to [email protected] website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
