@@ -, +, @@ mails - Set up 2 branches (A and B) with different email addresses. - Set up an SMTP server for each to use - Set up an overdue notice trigger for the patron category you'll use First letter: 1 day delay, any notice - Check out an item with home branch B to a patron from A - Run the the script with: overdue_notices.pl -t --frombranch item-homebranch overdue_notices.pl -t --frombranch item-issuebranch - Confirm for each setting that the correct email headers have been used. You can see the reply-to address and to-address in the message queue: SELECT * FROM message_queue; --- misc/cronjobs/overdue_notices.pl | 1 + 1 file changed, 1 insertion(+) --- a/misc/cronjobs/overdue_notices.pl +++ a/misc/cronjobs/overdue_notices.pl @@ -806,6 +806,7 @@ END_SQL message_transport_type => $effective_mtt, from_address => $admin_email_address, to_address => join(',', @emails_to_use), + reply_address => $library->inbound_email_address, } ) unless $test_mode; # A print notice should be sent only once per overdue level. --