diff -Nur -x '*.orig' -x '*.rej' smeserver-spamassassin-1.4.0/root/etc/cron.daily/00-sa_keys mezzanine_patched_smeserver-spamassassin-1.4.0/root/etc/cron.daily/00-sa_keys --- smeserver-spamassassin-1.4.0/root/etc/cron.daily/00-sa_keys 1969-12-31 17:00:00.000000000 -0700 +++ mezzanine_patched_smeserver-spamassassin-1.4.0/root/etc/cron.daily/00-sa_keys 2007-09-06 18:44:09.000000000 -0600 @@ -0,0 +1,8 @@ +#!/bin/sh + +if [ -f /etc/cron.daily/sa_update ] +then + install -d -o root -g root -m 600 /etc/mail/spamassassin/sa-update-keys + /usr/bin/sa-update --import /usr/share/spamassassin/sa-update-pubkey.txt \ + --import /usr/share/spamassassin/sa-update-openprotect-sare.txt +fi diff -Nur -x '*.orig' -x '*.rej' smeserver-spamassassin-1.4.0/root/etc/cron.daily/zz-sa_restart mezzanine_patched_smeserver-spamassassin-1.4.0/root/etc/cron.daily/zz-sa_restart --- smeserver-spamassassin-1.4.0/root/etc/cron.daily/zz-sa_restart 1969-12-31 17:00:00.000000000 -0700 +++ mezzanine_patched_smeserver-spamassassin-1.4.0/root/etc/cron.daily/zz-sa_restart 2007-09-06 18:45:46.000000000 -0600 @@ -0,0 +1,10 @@ +#!/bin/sh + +if [ -f /etc/cron.daily/sa_update ] +then + N=$(find /var/lib/spamassassin/3.* -type f -newer /service/spamd/supervise/pid) + if test -n "$N" + then + sv t /service/spamd + fi +fi