On 11/4/24 19:28, Bill Oliver wrote:

a) See who is disabled, and
b) un-disable them by hand

or... do I just have to wait seven days for them to automatically get
un-disabled?

They do not get automatically re-enabled ever the user or you has to manually re-enable delivery.

For an individual user, in Postorius you can click the user in the members list and see their delivery status and reset it.

To deal with the whole list membership for a list, you can do
```
$ shell -l l...@example.com
Welcome to the GNU Mailman shell
Use commit() to commit changes.
Use abort() to discard changes since the last commit.
Exit with ctrl+D does an implicit commit() but exit() does not.
The variable 'm' is the l...@example.com mailing list
>>> for member in m.members.members:
...     if member.delivery_status == DeliveryStatus.by_bounces:
...         member.preferences.delivery_status = DeliveryStatus.enabled
...
>>> commit()
>>>
```
If you just want to list them
```
>>> for member in m.members.members:
...     if member.delivery_status == DeliveryStatus.by_bounces:
...         print(member)
...
>>>
```



--
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@mailman3.org
To unsubscribe send an email to mailman-users-le...@mailman3.org
https://lists.mailman3.org/mailman3/lists/mailman-users.mailman3.org/
Archived at: 
https://lists.mailman3.org/archives/list/mailman-users@mailman3.org/message/4QQWTTFZ7NLSMD4DDPC5VZIF62HBKPVT/

This message sent to arch...@mail-archive.com

Reply via email to