Looks good now, thanks. On Fri, Dec 2, 2022 at 4:34 PM Mark Sapiro <[email protected]> wrote:
> 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 != '[email protected]': > + 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 > [email protected]. > > -- > Mark Sapiro <[email protected]> The highway is for gamblers, > San Francisco Bay Area, California better use your sense - B. Dylan > > ------------------------------------------------------ > Mailman-Users mailing list -- [email protected] > To unsubscribe send an email to [email protected] > 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/[email protected]/ > https://mail.python.org/archives/list/[email protected]/ > -- =============================================== Russell Clemings <[email protected]> =============================================== ------------------------------------------------------ Mailman-Users mailing list -- [email protected] To unsubscribe send an email to [email protected] 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/[email protected]/ https://mail.python.org/archives/list/[email protected]/
