On 3/3/26 12:55, Macs R We via Mailman-Users wrote:
In my original posting, I included an image of the rejection and message from the log -- it was there when I left but has apparently disappeared since. Let me repost it here:
This list's content filtering removes images. Just copy/paste the text of the log message. Since I don't see a note that content filtering removed the image, I'm guessing it was embedded in a multipart/related part that was a subpart of a multipart/alternative part the content filtering replaced with the first (text/plain) alternative.
I believe I have still not tested for the exact problem I came here to solve, because I don't know any way to force mailman to initiate mail unbidden. I have been relying on the monthly "here's your password" mail to inspect the problem, but that's a long time between happening. Can you suggest to me an easy way to force mailman to issue such mail?
[email protected]/
Member address: [email protected]
Set the list's Bounce processing->bounce_unrecognized_goes_to_list_owner to Yes if it isn't already and add your freemail account as an owner or moderator and then send a mail that doesn't look like a DSN to the list-bounces address.
Or, using Mailman's bin/withlist: ``` $ bin/withlist list1 Loading list list1 (unlocked) The variable `m' is the list1 MailList instance >>> from Mailman.Message import UserNotification >>> recip = '[email protected]' >>> sender = '[email protected]' >>> subject = 'Test email' >>> text = """This is a test message. ... How does it look? ... """ >>> msg = UserNotification(recip, sender, subject, text) >>> msg.send(m) ``` making appropriate changes to recip, sender, subject and text. -- 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]/ Member address: [email protected]
