Did your library make any adjustments to the content of these notices? If so, then these changes will need to be updated to reflect what they previously had contained.
Did your library change the messaging preferences by patron category? If so, then the changes need to be updated on those patron categories to reflect what they previously had contained and then please submit a ticket to us to have a Data Specialist to update your borrowers.
For libraries that bulk updated your patron’s due dates to a specific date, we would strongly recommend that your library hold off on running these notices until that date has passed. If these Advance Notices were to go out prior to this hard due date, it could generate a high volume of notices which could likely get your library’s email on a blacklist (spam list). A good suggestion would be to use an email marketing service such as MailChimp or Constant Contact to send out a reminder that the due date is coming and you are reopening.
If you would like to see how many advance notices might be sent the following query will show you the days that the bulk of your items are due. Advance notices would be sent a couple of days prior to this due date. Check your patron category messaging preferences to see what the bulk of you patrons have set for advance notices. i.e. notices sent out 2 days prior to being due.
Note: this query will show you days where 1000+ items are due. If you want a lower threshold - change the 1000 to the number of your choosing. If you want to see all of them dates, remove the 'having count(*) > 1000 ' from the query and run it.
Hold Notices
Did your library edit your Hold notice? If so, please edit this notice to enter the information your library was previously using prior to this closure.
Did you continue to check-in items and trigger holds without Hold notices going out? Did your library shut down completely and the holds are still waiting to be picked up (waiting on your Holds awaiting pickup shelf?). In both cases, your library may want to re-send notification to the patrons that they have item/s on the hold shelf. Koha can’t re-generate Hold notices nor do we want to turn on the Process Message Queue and run that as this will contain a lot of notices!

For smaller libraries or libraries with a manageable number of triggered holds, you do have the ability to go into the Patron’s account and “resend” the notice if they have email notifications set up. For larger libraries or for libraries with a lot of holds to resend notifications, this process may be a bit tedious.
QUERY to find all Holds on the shelf awaiting pickup:
SELECT p.surname, p.firstname, p.email, p.cardnumber,
h.waitingdate AS 'hold date', i.barcode, b.title
FROM reserves h
LEFT JOIN borrowers p USING (borrowernumber)
LEFT JOIN items i USING (itemnumber)
LEFT JOIN biblio b ON (i.biblionumber=b.biblionumber)
WHERE h.waitingdate IS NOT NULL AND h.branchcode=YOURBRANCHCODEHERE
Verify that this query contains all the items that are on your “Holds Awaiting Pickup Tab” and you would like to send an email notification to the patron about the hold.
Once this report has been created on your system and you have verified that these items are waiting for the patrons, your library can send a notice through an email marketing service such as Mail Chimp or Constant Contact.
If your library continued to check-in items but “ignored” the hold, wait to trigger these holds after you activate the Process Message Queue. These items will then show on your Holds Queue or Holds to Pull, whichever one you use.
Overdue Notices
If your library adjusted Overdue Notices or the Triggers itself, please adjust them back as your library had them. Your library may have also opted to stop sending Overdue notices out or adjusted the Overdue Notice status and Triggers.
The Overdue Notice cron will be re-activated when your library re-starts the Process Message Queue**. This process will strictly follow your library’s triggers and will not capture anything that falls outside of these triggers. For example, if you have Triggers set a 7, 14, and 21 days, the only Overdue notices that will be sent are for items that are 7, 14, or 21 days overdue.
Here is a report that can gather all the information:
SELECT borrowernumber, cardnumber, email, firstname, surname, group_concat(items_content separator '|') as items_content_list
FROM borrowers LEFT JOIN
(SELECT borrowernumber, concat('"',b.title,'" by ',author,', Due: ',date(date_due),' Barcode: ',Barcode) as items_content
FROM issues left join items using (itemnumber) left join biblio b using (biblionumber) left join borrowers using (borrowernumber)
WHERE date(date_due) < curdate()
GROUP BY issue_id) ic
USING (borrowernumber)
WHERE items_content is not null
GROUP BY borrowernumber
Membership Expiry Notices
Expiration Notices also would have been stopped if your library stopped the Process Message Queue**. Did you adjust the content of the Membership Expiry notice? If so, please make the necessary changes. Once the Process Message Queue has been enabled, this will start sending notices again. Much like the Overdue notices, it will only send out a notice to patrons whose expiry dates matches the number in your system preferences. For instance, if you have the system preference set to 30 days, only patrons whose expiration date is 30 days from today will receive the notice. Anyone whose expiration date is less than 30 days will not get a notice.
SELECT letter_code, borrowernumber
FROM message_queue
WHERE status='pending' and message_transport_type='email' AND letter_code='MEMBERSHIP_EXPIRY'
If your library would like to send out these older Membership Expiry notices, you can use a third-party service.
**Before activating the Process Message Queue con: ByWater needs to clean out the message queue! We recommend doing this a couple of days prior to opening, so your library is ready to start sending regular notices again soon after you open.
Cleaning out the Message Queue
Before you can start your Process Message Queue cron**, we will need to clean out the message queue. To do this, please send a ticket to ByWater Solutions to do this.
We will change all your notice statuses from Pending to Failed, with a note that the notice was failed due to a closure. We are adding the note in case there are questions in the future about why a notice was not sent.
Once your message queue has been cleaned out, you can run this report to see which current notices are being sent out:
SELECT message_transport_type, letter_code, count(message_id), min(time_queued), max(time_queued)
FROM message_queue
WHERE status=’pending’ and message_transport_type in ('sms',’email’)
GROUP BY letter_code
Holds
Each library may have adjusted their workflow in regards to holds, here are some of the scenarios to assist your library with re-opening and handling your holds.
Did your library request us to suspend your pending holds? If we did, did we suspend them to a specific date or indefinitely?
SELECT reserve_id, borrowernumber, biblionumber, itemnumber, suspend_until
FROM reserves
WHERE suspend=1 and date(timestamp) between [date range of when we were suspending holds]
If we did suspend your holds indefinitely, please send a ticket to us and our Data Team will unsuspend them for you. A library with a small number of suspended holds can do this manually if they would prefer, however, understandably, if your library has a lot of holds, this should be done by a Data Specialist!

Make sure to complete all the cleanup required in the previous Notices section and your Process Message Queue has been turned back on. Then your hold notifications can/will send out.