diff options
| author | klm | 1998-08-14 21:56:06 +0000 |
|---|---|---|
| committer | klm | 1998-08-14 21:56:06 +0000 |
| commit | 6f8e2e09b62f01accce618274e70ce40673ed37c (patch) | |
| tree | 84813246f6e0907808fcd65a45f727c6d7d0b75f | |
| parent | 4364eddfa05708ff291ef83a8d8a906507e8cbb6 (diff) | |
| download | mailman-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-x | cron/checkdbs | 3 |
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 |
