[Mailman-Users] mailman3 and exim4 problem in debian bullseye

2021-05-05 Thread roberto Burceni

Good evening,
I'm  configuring mailman3 with exim4 on a debian 11.
I followed the official documentation on mailman for exim. It seems to 
be all rights, but I have a problem:
when I send a message to a new lists in exim logs I see that exim uses 
correctly mailman router and transport.

Unfortunately in smtp.log in mailman3 log folder I have the following error:
May 04 16:51:01 2021 (2337) ('127.0.0.1', 34746) sender: 
servizioinformat...@uicbs.it
May 04 16:51:01 2021 (2337) ('127.0.0.1', 34746) Data: b'RCPT 
TO:'
May 04 16:51:01 2021 (2337) ('127.0.0.1', 34746) recip: 
listtest-unsubscr...@uicbs.it

May 04 16:51:01 2021 (2337) ('127.0.0.1', 34746) Data: b'DATA'
May 04 16:51:02 2021 (2337) ('127.0.0.1', 34746) Data: b'QUIT'
May 04 16:51:02 2021 (2337) ('127.0.0.1', 34746) connection lost
May 04 16:51:02 2021 (2337) Connection lost during _handle_client()


This causes that messages are not sent from mailman to users. Have you 
an idea of the problem?


Can it be a memory problem that causes that mailman responses are too 
slow and exim closes the comunication before the end?

Thank you in advance
Best regards

--
Roberto Burceni
Linux System Admin & PHP developer
Esperto accessibilità siti web
E-mail: robe...@robertoburceni.it
Phone: +393358208080
P.iva: 04025840986mbre per il mat

--
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: mailman3 and exim4 problem in debian bullseye

2021-05-05 Thread Mark Sapiro
On 5/4/21 10:25 AM, roberto Burceni wrote:
> Good evening,
> I'm  configuring mailman3 with exim4 on a debian 11.


The list for Mailman3 is mailman-us...@mailman3.org
.
The focus of this list is Mailman 2.1.


> I followed the official documentation on mailman for exim. It seems to
> be all rights, but I have a problem:
> when I send a message to a new lists in exim logs I see that exim uses
> correctly mailman router and transport.
> Unfortunately in smtp.log in mailman3 log folder I have the following
> error:
> May 04 16:51:01 2021 (2337) ('127.0.0.1', 34746) sender:
> servizioinformat...@uicbs.it
> May 04 16:51:01 2021 (2337) ('127.0.0.1', 34746) Data: b'RCPT
> TO:'
> May 04 16:51:01 2021 (2337) ('127.0.0.1', 34746) recip:
> listtest-unsubscr...@uicbs.it
> May 04 16:51:01 2021 (2337) ('127.0.0.1', 34746) Data: b'DATA'
> May 04 16:51:02 2021 (2337) ('127.0.0.1', 34746) Data: b'QUIT'
> May 04 16:51:02 2021 (2337) ('127.0.0.1', 34746) connection lost
> May 04 16:51:02 2021 (2337) Connection lost during _handle_client()


These log messages are normal and not a problem.


> This causes that messages are not sent from mailman to users. Have you
> an idea of the problem?


The above log entries are not the cause of the non-delivery of the messages.

Please follow up on mailman-us...@mailman3.org and provide as much
information as possible such as the contents of Mailman's queues, Any
errors and Tracebacks in mailman.log other than `raise StopIteration`,
whether the messages are archived, etc.


-- 
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] How to let everything from any real address through to a list

2021-05-05 Thread Thomas Gramstad

Hi,

I'm seeking to replace an out-of-domain .forward file, which is
an outdated solution, with a secret mailing list with myself as
the only subscriber. So I have created the mailing list
thomas@domain, and I want the list address to let everything from
any genuine mail address through to me. Spam filtering happens
elsewhere.

So I'm looking at:

List of non-member addresses whose postings should be
automatically accepted.

If I put this regex there: ^\S+@\S+$ would that accomplish what I
want -- letting everything through, only checking that the sender
address exists? (Even that check could be done elsewhere though.)

Thomas Gramstad
--
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: How to let everything from any real address through to a list

2021-05-05 Thread Mark Sapiro
On 5/5/21 3:16 PM, Thomas Gramstad wrote:
> 
> List of non-member addresses whose postings should be
> automatically accepted.
> 
> If I put this regex there: ^\S+@\S+$ would that accomplish what I
> want -- letting everything through, only checking that the sender
> address exists? (Even that check could be done elsewhere though.)


That's one way to do it, although that regexp will pass things that
aren't syntactically valid email addresses.

Another is a bit further down that page, just set
generic_nonmember_action to Accept.

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