On 12/2/22 15:47, Russell Clemings wrote:
Once I've applied the patch, is there a way to test the monthly reminder,
i.e. by sending myself a copy?


Not without patching. There is a -l/--listname option to limit to a list or, if repeated, lists, but no option to limit to a single user.

You could make a patched version of cron/mailpasswds like this
```
--- old/cron/mailpasswds        2018-06-17 23:47:34 +0000
+++ new/cron/mailpasswds        2022-12-03 00:27:46 +0000
@@ -166,6 +166,8 @@
# Now that we've collected user information for this host, send each
         # user the password reminder.
         for addr in userinfo.keys():
+            if addr != 'rclemi...@gmail.com':
+                continue
# If the person is on more than one list, it is possible that they # have different preferred languages, and there's no good way to # know which one they want their password reminder in. Pick the

```
and then run that as the Mailman user to send a reminder to only rclemi...@gmail.com.

--
Mark Sapiro <m...@msapiro.net>        The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
Mailman-Users mailing list -- mailman-users@python.org
To unsubscribe send an email to mailman-users-le...@python.org
https://mail.python.org/mailman3/lists/mailman-users.python.org/
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: https://www.mail-archive.com/mailman-users@python.org/
   https://mail.python.org/archives/list/mailman-users@python.org/

Reply via email to