Blame SOURCES/mailman-2.1.11-cron.patch

ccdd61
diff --git a/cron/bumpdigests b/cron/bumpdigests
ccdd61
index 57cc45e..4002731 100755
ccdd61
--- a/cron/bumpdigests
ccdd61
+++ b/cron/bumpdigests
ccdd61
@@ -1,4 +1,4 @@
ccdd61
-#! @PYTHON@
ccdd61
+#! @PYTHON@ -S
ccdd61
 #
ccdd61
 # Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
ccdd61
 #
ccdd61
diff --git a/cron/checkdbs b/cron/checkdbs
ccdd61
index e776f15..c4d8179 100755
ccdd61
--- a/cron/checkdbs
ccdd61
+++ b/cron/checkdbs
ccdd61
@@ -1,4 +1,4 @@
ccdd61
-#! @PYTHON@
ccdd61
+#! @PYTHON@ -S
ccdd61
 #
ccdd61
 # Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
ccdd61
 #
ccdd61
diff --git a/cron/crontab.in.in b/cron/crontab.in.in
ccdd61
index 540dfc1..45c5022 100644
ccdd61
--- a/cron/crontab.in.in
ccdd61
+++ b/cron/crontab.in.in
ccdd61
@@ -1,27 +1,50 @@
ccdd61
+#
ccdd61
+# -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- WARNING -- 
ccdd61
+# ------------------  EDIT THE CORRECT FILE  -------------------------
ccdd61
+# 
ccdd61
+# This file is copied to /etc/cron.d/mailman from
ccdd61
+# @prefix@/cron/crontab.in when the mailman service is started via its
ccdd61
+# init.d script and the file /etc/cron.d/mailman is removed when the
ccdd61
+# service is stopped.  Therefore any edits made directly to
ccdd61
+# /etc/cron.d/mailman will be lost anytime the mailman service
ccdd61
+# restarts.
ccdd61
+#
ccdd61
+# To make changes edit the master copy @prefix@/cron/crontab.in and then
ccdd61
+# restart the service to pick up the changes (/sbin/service mailman restart).
ccdd61
+#
ccdd61
+# The reason this is done this way is because the mailman cron jobs
ccdd61
+# should only be invoked if the mailman service is enabled and not
ccdd61
+# just as a consequence of installing the rpm as was the case
ccdd61
+# previously. The file /etc/cron.d/mailman cannot simply be linked to
ccdd61
+# the master copy in @prefix@/cron because for security reasons cron
ccdd61
+# will not process crontab files that are links or writeable by
ccdd61
+# anybody else but root, thus the file must be copied into /etc/cron.d
ccdd61
+# with the right ownership and permissions.
ccdd61
+#
ccdd61
 # At 8AM every day, mail reminders to admins as to pending requests.
ccdd61
 # They are less likely to ignore these reminders if they're mailed
ccdd61
 # early in the morning, but of course, this is local time... ;)
ccdd61
-0 8 * * * @PYTHON@ -S @prefix@/cron/checkdbs
ccdd61
+0 8 * * * @MAILMAN_USER@ @prefix@/cron/checkdbs
ccdd61
 #
ccdd61
 # At 9AM, send notifications to disabled members that are due to be
ccdd61
 # reminded to re-enable their accounts.
ccdd61
-0 9 * * * @PYTHON@ -S @prefix@/cron/disabled
ccdd61
+0 9 * * * @MAILMAN_USER@ @prefix@/cron/disabled
ccdd61
 #
ccdd61
 # Noon, mail digests for lists that do periodic as well as threshhold delivery.
ccdd61
-0 12 * * * @PYTHON@ -S @prefix@/cron/senddigests
ccdd61
+0 12 * * * @MAILMAN_USER@ @prefix@/cron/senddigests
ccdd61
 #
ccdd61
 # 5 AM on the first of each month, mail out password reminders.
ccdd61
-0 5 1 * * @PYTHON@ -S @prefix@/cron/mailpasswds
ccdd61
+0 5 1 * * @MAILMAN_USER@ @prefix@/cron/mailpasswds
ccdd61
 #
ccdd61
 # Every 5 mins, try to gate news to mail.  You can comment this one out
ccdd61
 # if you don't want to allow gating, or don't have any going on right now,
ccdd61
 # or want to exclusively use a callback strategy instead of polling.
ccdd61
-0,5,10,15,20,25,30,35,40,45,50,55 * * * * @PYTHON@ -S @prefix@/cron/gate_news
ccdd61
+0,5,10,15,20,25,30,35,40,45,50,55 * * * * @MAILMAN_USER@ @prefix@/cron/gate_news
ccdd61
 #
ccdd61
 # At 3:27am every night, regenerate the gzip'd archive file.  Only
ccdd61
 # turn this on if the internal archiver is used and
ccdd61
 # GZIP_ARCHIVE_TXT_FILES is false in mm_cfg.py
ccdd61
-27 3 * * * @PYTHON@ -S @prefix@/cron/nightly_gzip
ccdd61
+27 3 * * * @MAILMAN_USER@ @prefix@/cron/nightly_gzip
ccdd61
 #
ccdd61
 # At 4:30AM daily, cull old entries from the 'bad' and 'shunt' queues.
ccdd61
-30 4 * * * @PYTHON@ -S @prefix@/cron/cull_bad_shunt
ccdd61
+30 4 * * * @MAILMAN_USER@ @prefix@/cron/cull_bad_shunt
ccdd61
diff --git a/cron/disabled b/cron/disabled
ccdd61
index ac62582..971563d 100755
ccdd61
--- a/cron/disabled
ccdd61
+++ b/cron/disabled
ccdd61
@@ -1,4 +1,4 @@
ccdd61
-#! @PYTHON@
ccdd61
+#! @PYTHON@ -S
ccdd61
 #
ccdd61
 # Copyright (C) 2001-2018 by the Free Software Foundation, Inc.
ccdd61
 #
ccdd61
diff --git a/cron/gate_news b/cron/gate_news
ccdd61
index c66c09e..247c834 100755
ccdd61
--- a/cron/gate_news
ccdd61
+++ b/cron/gate_news
ccdd61
@@ -1,4 +1,4 @@
ccdd61
-#! @PYTHON@
ccdd61
+#! @PYTHON@ -S
ccdd61
 #
ccdd61
 # Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
ccdd61
 #
ccdd61
diff --git a/cron/mailpasswds b/cron/mailpasswds
ccdd61
index da64376..5d8d792 100755
ccdd61
--- a/cron/mailpasswds
ccdd61
+++ b/cron/mailpasswds
ccdd61
@@ -1,4 +1,4 @@
ccdd61
-#! @PYTHON@
ccdd61
+#! @PYTHON@ -S
ccdd61
 #
ccdd61
 # Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
ccdd61
 #
ccdd61
diff --git a/cron/nightly_gzip b/cron/nightly_gzip
ccdd61
index de493d0..8af0351 100755
ccdd61
--- a/cron/nightly_gzip
ccdd61
+++ b/cron/nightly_gzip
ccdd61
@@ -1,4 +1,4 @@
ccdd61
-#! @PYTHON@
ccdd61
+#! @PYTHON@ -S
ccdd61
 # 
ccdd61
 # Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
ccdd61
 #
ccdd61
diff --git a/cron/senddigests b/cron/senddigests
ccdd61
index edf27a2..c64adc1 100755
ccdd61
--- a/cron/senddigests
ccdd61
+++ b/cron/senddigests
ccdd61
@@ -1,4 +1,4 @@
ccdd61
-#! @PYTHON@
ccdd61
+#! @PYTHON@ -S
ccdd61
 #
ccdd61
 # Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
ccdd61
 #