summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorklm1998-08-14 21:56:06 +0000
committerklm1998-08-14 21:56:06 +0000
commit6f8e2e09b62f01accce618274e70ce40673ed37c (patch)
tree84813246f6e0907808fcd65a45f727c6d7d0b75f
parent4364eddfa05708ff291ef83a8d8a906507e8cbb6 (diff)
downloadmailman-6f8e2e09b62f01accce618274e70ce40673ed37c.tar.gz
mailman-6f8e2e09b62f01accce618274e70ce40673ed37c.tar.zst
mailman-6f8e2e09b62f01accce618274e70ce40673ed37c.zip
Add "Precedence: bulk" header to password reminders, so they don't
trigger 'vacation' style programs. (Sorta amusingly, this just prevents the admin from getting their own vacation notice...)
-rwxr-xr-xcron/checkdbs3
1 files changed, 2 insertions, 1 deletions
diff --git a/cron/checkdbs b/cron/checkdbs
index 1ec839ed4..0b5a91079 100755
--- a/cron/checkdbs
+++ b/cron/checkdbs
@@ -42,7 +42,8 @@ def main(verbose=0):
list.SendTextToUser(subject = '%d %s admin request(s) waiting' %
(count, list.real_name),
recipient = list.GetAdminEmail(),
- text = text + "\n" + pending_requests(list))
+ text = text + "\n" + pending_requests(list),
+ add_headers = ["Precedence: bulk"])
def pending_requests(list):
import time, string