Hosted ondailyplanet.iovia theHypermedia Protocol

How to Reset Email Service

    In case anybody else has to do this.

    The workflow is pretty safe. It will reset the batch notification timer, and it should only send new notifications from the time you run this workflow.

      Stop Email Service

        docker stop notify

      Open the notifier db

        sudo sqlite3 /shm/gateway/notify/web-db.sqlite

      Read the status table, copy somewhere in case its helpful for later debugging

        select * from notifier_status;

      Empty the notifier status table

        delete from notifier_status;

      Close sqlite (ctrl-d)

      Start the notifier service and watch logs

        docker start notify && docker logs notify -f -n 10