[Mailman-Users] Re: Non-member regexps

2021-02-11 Thread Mark Sapiro
Please do not use this list for Mailman 3 questions. The list for
Mailman 3 is mailman-us...@mailman3.org
https://lists.mailman3.org/mailman3/lists/mailman-us...@mailman3.org/

On 2/11/21 1:59 PM, Johannes Rohr wrote:
> Does the @[NAME] expression, that accepts posts to mailing list X by
> subscribers of mailing list Y still work in mailman3? Strictly speaking,
> it is not a regexp, but I rely on it heavily.


No. That is not in Mailman 3 at this time.


> I am testing out mailman3 and I have to say, migration works much better
> than I expected! Kudos!!
> 
> However, regexps from "accept_these_nonmembers" have not been migrated,
> so I wonder if they are still recognized.


They are and they should have been migrated. If you have recent versions
of Mailman core (specifically import21) and postorius, you should see
them in Settings -> Message Acceptance.

Specifically, import21 should migrate non-regexp addresses in
*_these_nonmembers as non-members with the appropriate moderation action
and regexps into the corresponding MM 3 lists *_these_nonmembers.


-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter 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/


[Mailman-Users] Re: Non-member regexps

2021-02-11 Thread Johannes Rohr
Does the @[NAME] expression, that accepts posts to mailing list X by
subscribers of mailing list Y still work in mailman3? Strictly speaking,
it is not a regexp, but I rely on it heavily.

I am testing out mailman3 and I have to say, migration works much better
than I expected! Kudos!!

However, regexps from "accept_these_nonmembers" have not been migrated,
so I wonder if they are still recognized.

Cheers,

Johannes

Am 29.09.20 um 17:26 schrieb Mark Sapiro:
> On 9/29/20 5:38 AM, Daniel Krause via Mailman-Users wrote:
>> Good Day
>>
>> We are using mailman 3, and would like to whitelist a domain for acceptance
>> of messages as non-members.
>> It seems possible from my online searches, I have also tried with an online
>> python regex tester(https://www.regextester.com/94044), but I have not
>> managed to be successful.
>>
>> Below are 2 examples I have tried
>>
>> ^.+@noldor\.co\.za$
> This looks good.
>
>
>> ^[a-zA-Z0-9_.+-]+@(?:(?:[a-zA-Z0-9-]+\.)?[a-zA-Z]+\.)?noldor\.co\.za$
> This is unduly complex. These regexps are matched case insensitively so
> it isn't necessary to include both a-z and A-Z. Also, I don't thing you
> need to be concerned about invalid addresses, so
>
>   ^.+@(?:.+\.)?noldor\.co\.za$
>
> would do, or even simpler
>
>   ^.*[@.]noldor\.co\.za$
>
>
>> ^.+@gmail.com$
> This would allow user@gmailxcom, but probably not an issue.
>
>
>> ^.*gmail\.com$
> This is good.
>
> How are you unsuccessful? If you have say
>
>   ^.+@noldor\.co\.za$
>
> in accept_these_nonmembers, what happens when an address from that
> domain posts to the list?
>
> Note that while determination of whether a message is from a list member
> checks addresses in several things (default From:, envelope sender,
> Reply-To:, Sender), *_these_nonmembers checks only the first address
> found in From:, Sender:, envelope sender in that order by default, but
> if USE_ENVELOPE_SENDER is set True in mm_cfg.py, the order is Sender:,
> From:, envelope sender.
>
--
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/


[Mailman-Users] OpenPGP and S/MIME aware Mailman

2021-02-11 Thread Dennis Putnam
Does anyone have any experience with this that can provide a review 
and/or advice? TIA.


http://non-gnu.uvt.nl/mailman-pgp-smime/

--
This email has been checked for viruses by Avast antivirus software.
https://www.avast.com/antivirus
--
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/


[Mailman-Users] Re: MM3 - allow users to see other list members in

2021-02-11 Thread Mark Sapiro
Please do not use this list for Mailman 3 questions. The list for
Mailman 3 is mailman-us...@mailman3.org


On 2/11/21 1:59 AM, Stefan Bauer via Mailman-Users wrote:
> 
> is there a way to display all list members on the list overview page?


In Postorius, currently the roster is only visible to list owners
regardless of roster visibility settings. See
. The email `who`
command does honor roster visibility settings.

-- 
Mark Sapiro The highway is for gamblers,
San Francisco Bay Area, Californiabetter 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/


[Mailman-Users] MM3 - allow users to see other list members in

2021-02-11 Thread Stephen J. Turnbull
Stefan Bauer via Mailman-Users writes:

 > is there a way to display all list members on the list overview
 > page?

Not on that page itself.

If you are the list owner (or site owner), on the List Identity page
in List Settings, you can set Members List Visibility to moderators
only, to mailing list members (it says "only" but I'm pretty sure
moderators can see the list membership too), or to anyone.

In each case there will be a "Users" link on the List Overview page
for folks who are allowed to see the membership.

It is generally not a good idea to set it to anyone, as the "anyones"
most interested in your list membership are spammers.  Also, people
sometimes set their display names to embarrassing or somewhat private
things, that they wouldn't use if they thought the whole list could
see it.  Whether there is a risk or how much risk you want to take is
for you to judge, of course.  That's just the generic case.

Steve

--
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/


[Mailman-Users] Re: MM3 - allow users to see other list members in

2021-02-11 Thread Stefan Bauer via Mailman-Users
Yes, as this is an internal web-interface only known to team-members & staff.




Stefan
--
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/


[Mailman-Users] Re: MM3 - allow users to see other list members in

2021-02-11 Thread Brian Carpenter



On 2/11/21 4:59 AM, Stefan Bauer via Mailman-Users wrote:

is there a way to display all list members on the list overview page?



currently without logging in, one only sees the lists itself.


Are you wanting to publicly display the email addresses of your list 
members via the list overview page?


--
Brian Carpenter
Harmonylists.com
Emwd.com
--
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/


[Mailman-Users] MM3 - allow users to see other list members in

2021-02-11 Thread Stefan Bauer via Mailman-Users
Hi,



is there a way to display all list members on the list overview page?



currently without logging in, one only sees the lists itself.




Thank you.

Stefan
--
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/