Again, thank you for your reply!
You wrote:
On 3/6/26 12:52, Lars Bjørndal wrote:
[...]
I have an announce only Mailman3 list. When I log into the web interface as an admin user, and go to the specified list, and choose Settings, I find the Message Acceptance tab. There, I find the edit field Accept these non-members. But this field is empty, although I know that some people have permissions and are able to post to this list. How can I find the list of these non-members and add more people or delete someone?
[...]
These are nonmembers whose moderation action is accept or defer. If your Postorius is >= 1.3.6, and the number of nonmembers is manageable you can just view the nonmembers list in Postorius and see their moderation action.
[...]
Otherwise a
mailman shellinteraction like$ mailman shell -l list.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 list.example.com mailing list > > > for nm in m.nonmembers.members: ... if nm.moderation_action in (Action.accept, Action.defer): ... print(f'{nm} {nm.moderation_action}') ... > > >will print those nonmembers with Action.accept or Action.defer.
All addresses, both addresses that I know has sent messages to the list and others, are marked as MemberRole.nonmember> Action.defer
When I view non-members in postorius, I get some differences:
Some ar marked: Regular List default, and others Regular Default processing.
The list is imported from Mm 2.1 a long time ago. I don't know if that matters.
What's the difference between Action.accept and Action.defer?
Action.accept accepts the message immediately with no further checks. Action.defer passes the membership checks but still goes on to check other things like
mis-addressed email commands messages with implicit destination messages with too many explicit recipients messages that are bigger than a specified maximum messages with no, or empty, Subject headers messages with digest Subject or boilerplate quote messages matching a bounce_matching_header line
Hm, this is a mystery to me. Is there othere places I can search for addresses that are aloud to send to the list?
Thanks, Lars