[Mailman-Users] Re: Mailman 2 Issues With Processing Email

2024-09-10 Thread Mark Sapiro
eded while pickling an object This says that the specific message object can't be pickled, probably because it contains some circular reference. I don't know how that could happen. -- Mark Sapiro The highway is for gamblers,

[Mailman-Users] Re: static files not found in Mailman3 Web

2024-09-10 Thread Mark Sapiro
est/install/virtualenv.html#nginx-configuration or https://docs.mailman3.org/en/latest/install/virtualenv.html#apache-configuration for examples. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense

[Mailman-Users] Re: Digests are not sent

2024-09-10 Thread Mark Sapiro
m 02:55 schrieb Mark Sapiro : The log I received contains tracebacks like ``` ... admin(24054): File "/usr/lib64/python2.7/email/utils.py", line 168, in getaddresses admin(24054): fieldvalues = [unicode(v) for v in fieldvalues] admin(24054): UnicodeDecodeError: 'ascii&#x

[Mailman-Users] Re: Disabling digests

2024-09-10 Thread Mark Sapiro
s will not receive mail. -- 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 mailma

[Mailman-Users] Re: Digests are not sent

2024-09-09 Thread Mark Sapiro
On 9/8/24 20:56, Mark Sapiro wrote: Find the error and traceback in Mailman's `error` log. See https://wiki.list.org/DOC/Mailman%20and%20CPanel for more information. The log I received contains tracebacks like ``` admin(24054): Traceback (most recent call last): admin(24054): File

[Mailman-Users] Re: Digests are not sent

2024-09-08 Thread Mark Sapiro
rom your cPanel host. -- 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

[Mailman-Users] Re: spamming

2024-08-08 Thread Mark Sapiro
epted, however Google didn't return success. Are you using reCaptcha v3. If so, you need v2. Mailman's reCaptcha support requires v2. Also, V2 may not do the squares thing. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, C

[Mailman-Users] Re: features in Mailman 3 compared to its predecessor, Mailman 2

2024-08-03 Thread Mark Sapiro
ot yet in MM3. MM3 does not support subscribing to topics and it does not support MM2.1's sibling list feature, but MM3 is under active development so feature requests can be implemented. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Califo

[Mailman-Users] Re: Installing Mailman on Ubuntu

2024-07-20 Thread Mark Sapiro
virtualenv.html -- 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...@p

[Mailman-Users] Re: Error messages from Mailman without "real content".

2024-07-17 Thread Mark Sapiro
duplicate the issue is more strongly suggestive that this is a cPanel Mailman issue. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mailman-Users mailing list -- mailman

[Mailman-Users] Re: [EXTERNAL] Re: Error messages from Mailman without "real content".

2024-07-16 Thread Mark Sapiro
trying to treat these strings as ascii. I'm still investigating this locally, but so far I don't see the issue. this could be related to the python version which in my case is 2.7.18 or possibly it's a cPanel issue. -- Mark Sapiro The highway is for gamblers, San Francisco

[Mailman-Users] Re: [EXTERNAL] Re: Error messages from Mailman without "real content".

2024-07-15 Thread Mark Sapiro
er to diagnose this. If this is cPanel, see https://wiki.list.org/DOC/Mailman%20and%20CPanel -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mailman-Users mailing list -- ma

[Mailman-Users] Re: Error messages from Mailman without "real content".

2024-07-15 Thread Mark Sapiro
ning a utf-8 encoded emoji that can't be encoded as iso-8859-1. It may be a cPanel issue as both users who've reported in this thread have cPanel mailman. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use y

[Mailman-Users] Re: Error messages from Mailman without "real content".

2024-07-14 Thread Mark Sapiro
auth.txt except something is wrong in the installation because all those %(listname)s, %(hostname)s, etc. should be replaced with values. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your s

[Mailman-Users] Re: Error messages from Mailman without "real content".

2024-07-14 Thread Mark Sapiro
m templates/de/postauth.txt except something is wrong in the installation because all those %(listname)s, %(hostname)s, etc. should be replaced with values. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your s

[Mailman-Users] Re: Mailman subscribe confirmation

2024-07-05 Thread Mark Sapiro
= 'https:///mailman/' (substituting for of course) in mm_cfg.py and then fun fix_url, see https://wiki.list.org/x/4030616 -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense

[Mailman-Users] Re: Read-only file system

2024-07-01 Thread Mark Sapiro
sions for all didn’t fix the problem. It is not clear what directory is the mount pount for this, but it is mounted read-only. No one, not even root, can write to it. Look at /etc/fstab -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use y

[Mailman-Users] Re: List_Members from Command Line Permission

2024-06-28 Thread Mark Sapiro
above should be `p.wait()`, not `p.wait` and should precede the `lines=p.stdout.readlines()` statement.     return(lines) For the permissions issue, you need to run this as the Mailman user or possibly the web server user, i.e. a user that has permission to read the list's confi

[Mailman-Users] Re: [EXTERNAL] Re: Re: problem with non-member Sender rules

2024-06-27 Thread Mark Sapiro
"our servers send emails to root@". Perhaps this issue has something to do with specific From: or Sender: headers in these mails. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your s

[Mailman-Users] Re: [EXTERNAL] Re: problem with non-member Sender rules

2024-06-27 Thread Mark Sapiro
the Message.get_sender() method. See the doc string at https://bazaar.launchpad.net/~mailman-coders/mailman/2.1/view/head:/Mailman/Message.py#L115 for how this is determined and how it is affected by the mm_cfg.USE_ENVELOPE_SENDER setting. -- Mark Sapiro The highway is for gamblers, San

[Mailman-Users] Re: lots of bounces after server move

2024-06-24 Thread Mark Sapiro
it would be worth contacting that server's admin to see if they will whitelist you. Also, setting VERP_PROBES = Yes in mm_cfg.py may keep these members from having delivery disabled and being removed if the probes don't bounce. -- Mark Sapiro The highway is for gamblers,

[Mailman-Users] Re: Bounce Score information

2024-06-09 Thread Mark Sapiro
list members. > Where is the correct place to make suggestions going forward? Mailman 2.1 is not being updated. See https://mail.python.org/archives/list/mailman-annou...@python.org/message/TJLEX52N2ARNOQBC2ZNYMNV5U226R5NM/ -- Mark Sapiro The highway is for gamblers, San Francisco

[Mailman-Users] Re: Bounce Score information

2024-06-07 Thread Mark Sapiro
ce scores and bounce status for each of the members of a list? This information isn't available via the web UI. See above. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan --

[Mailman-Users] Re: from_is_list munging not working

2024-05-19 Thread Mark Sapiro
nfig you posted initially, I might have seen that your list had a pipeline attribute and that it was based on an older version and was missing the WrapMessage handler which is why the From: wasn't munged. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californi

[Mailman-Users] Re: from_is_list munging not working

2024-05-18 Thread Mark Sapiro
gt; Sender filters -> dmarc_moderation_action to Munge From. It should be irrelevant when General Options -> from_is_list = Munge From, but I don't know what cPanel might be doing. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabet

[Mailman-Users] Re: from_is_list munging not working

2024-05-18 Thread Mark Sapiro
rectly th a googlemail user, not from the list, gan google, for reasons alluded to at <https://support.google.com/mail/answer/1311182?hl=en>, added the via stuff. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan ---

[Mailman-Users] Re: recovering mailing list members and .cfg files

2024-05-13 Thread Mark Sapiro
ich should be setting jaok and kook = True and the imports of japanese, korean and korean.aliases should be conditional on those being False. In any case, you can just remove those imports from /oldroot/usr/lib/mailman/bin/paths.py. -- Mark Sapiro The highway is for gamblers, San

[Mailman-Users] Re: New mailman instance

2024-05-08 Thread Mark Sapiro
Mailman 3, notably sibling lists. You can run Mailman 2.1 and Mailman 3 in parallel on the same server. I recommend installing Mailman 3 via https://docs.mailman3.org/en/latest/install/virtualenv.html and testing your things. Mailman 3 is definitely the path going forward. -- Mark Sapiro

[Mailman-Users] Re: New mailman instance

2024-05-08 Thread Mark Sapiro
On 5/8/24 00:51, Ivan Tejeiro Izquierdo wrote: POSTFIX_STYLE_VIRTUAL_DOMAINS = 'listas.colegioderegistradores.es' This is the issue. POSTFIX_STYLE_VIRTUAL_DOMAINS is a list of strings, not a string. It needs to be POSTFIX_STYLE_VIRTUAL_DOMAINS = ['listas.colegioderegistradore

[Mailman-Users] Re: New mailman instance

2024-05-07 Thread Mark Sapiro
o, on the list's General Options page what is the setting for Host name this list prefers for email. (Details for host_name) -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense

[Mailman-Users] Re: Editing Mailman's text files

2024-05-07 Thread Mark Sapiro
o the mailman server has to diagnose/fix this. With luck, your hosting company can do this. If they need help, they can get it here. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan --

[Mailman-Users] Re: New mailman instance

2024-05-06 Thread Mark Sapiro
I.e., the list's `host_name` must not be in `POSTFIX_STYLE_VIRTUAL_DOMAINS`. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mailman-Users mailing list -- mai

[Mailman-Users] Re: New mailman instance

2024-05-06 Thread Mark Sapiro
Mark Sapiro wrote: Is the list's domain listed in POSTFIX_STYLE_VIRTUAL_DOMAINS in mm_cfg.py? On 5/5/24 23:58, Ivan Tejeiro Izquierdo wrote: Yes Mark, and in add_virtualhost. Does the domain in POSTFIX_STYLE_VIRTUAL_DOMAINS match the list's host_name as shown on the list adm

[Mailman-Users] Re: New mailman instance

2024-05-03 Thread Mark Sapiro
ed in POSTFIX_STYLE_VIRTUAL_DOMAINS in mm_cfg.py? -- 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-

[Mailman-Users] Re: Retaining Sender's Email ID

2024-05-02 Thread Mark Sapiro
ffice365.com if this is possible and if so, what they require in the SMTP transaction to accomplish it. Then we could look at what Mailman/Postfix can do to enable it. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use y

[Mailman-Users] Re: all gmail subscribers removed - 'disabled address'

2024-05-01 Thread Mark Sapiro
e to apply 'munge from' unconditionally by setting General Options -> from_is_list. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mailman-Users mailing

[Mailman-Users] Re: Admin Requests Time Out

2024-04-27 Thread Mark Sapiro
ile LISTNAME ``` This will probably work, but may have undesired effects such as trying to post to that URL from a public page. You just have to try it and see. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Califo

[Mailman-Users] Re: Admin Requests Time Out

2024-04-24 Thread Mark Sapiro
On 4/24/24 08:36, Dennis Putnam wrote: On 4/23/2024 2:31 PM, Mark Sapiro wrote: Look in the logs of your web server. Look at the source of the admindb page you are trying to submit. In particular you are looking for a FORM tag like ``` ``` Does that URL look correct? If not see lines 67-95

[Mailman-Users] Re: Admin Requests Time Out

2024-04-23 Thread Mark Sapiro
~mailman-coders/mailman/2.1/view/head:/Mailman/Defaults.py.in -- 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 unsu

[Mailman-Users] Re: Need help diagnosing an intermittent DMARC mung failure

2024-04-20 Thread Mark Sapiro
for a domain. In addition, Mailman's `error` log will have entries when there are DNS exceptions in looking up DMARC policy, but all these result in mitigations being applied as though the policy was `reject`. -- Mark Sapiro The highway is for gamblers, San Francisco Bay

[Mailman-Users] Re: searchable archive

2024-04-18 Thread Mark Sapiro
On 4/18/24 08:08, Laack, Andrea P. via Mailman-Users wrote: I am setting up a Mailman 2 instance and am looking for a searchable archiver. Is there anything available for Mailman 2 that provides searching? See https://wiki.list.org/x/4030514 -- Mark Sapiro The highway is for

[Mailman-Users] Re: Create a list with multiple admins?

2024-04-14 Thread Mark Sapiro
have access to that Mailman system. My post with the patch attached is at https://mail.python.org/archives/list/mailman-users@python.org/message/F225LUWUCCGDJVGALHCWBNJTARWDVO66/ -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B

[Mailman-Users] Re: Admin Panel Spam Filters: Filtering Message Body for Keywords?

2024-04-14 Thread Mark Sapiro
tions... -> Spam filters -> Details for header_filter_rules if you haven't already. **Question:  Is there a way to use [Spam filters] (or any other setting in the GUI admin panel) to filter for keywords in the body of the incoming email message?** No. -- Mark Sapiro The highway

[Mailman-Users] Re: Noobie: Where's default_moderation_action?

2024-04-12 Thread Mark Sapiro
for Mailman 2.1.39. Am I overlooking it somewhere? Privacy options... -> Sender filters -> default_member_moderation -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -

[Mailman-Users] Re: Error member gets when sending to one of my lists?

2024-03-18 Thread Mark Sapiro
On 3/18/24 00:55, Odhiambo Washington wrote: Ah. I thought they were running MM2. A very reasonable thought considering this is a Mailman 2 support list. Also, as Steve points out, the error probably doesn't come from LMTP runner(aiosmtpd) which issues a different message. -- Mark S

[Mailman-Users] Re: Error member gets when sending to one of my lists?

2024-03-17 Thread Mark Sapiro
may be relevant. -- 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-

[Mailman-Users] Re: Create a list with multiple admins?

2024-03-14 Thread Mark Sapiro
l#owners-and-moderators>). -- 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 ma

[Mailman-Users] Re: Outlook blocked again, but strange response

2024-03-11 Thread Mark Sapiro
read, but if you are patient and persistent, you eventually get the result you want. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mailman-Users mailing list -- mail

[Mailman-Users] Re: mailman httpd location question

2024-03-09 Thread Mark Sapiro
x27;/' and without) work? Is there any parameter configuring this in mailman2? No. This is all in your web server. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -

[Mailman-Users] Re: Apple and Microsoft emails bounced

2024-03-08 Thread Mark Sapiro
posted if the mail has a valid DKIM signature. Where there additional headers beyond the From:, Subject:,Date:, To: and Reply-To: that you posted? Most of the `best practices` are things controlled by the host. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Cali

[Mailman-Users] Re: Digest not being received in a timely fashion

2024-03-08 Thread Mark Sapiro
some other issue between the outgoing MTA and the next hop. These can be diagnosed via the MTA's logs. Otherwise the delays may be further downstream. It's a true shame that EMWD is not able to provide the support that they did when Brian was still alive. -- Mark Sapiro The

[Mailman-Users] Re: Apple and Microsoft emails bounced

2024-03-07 Thread Mark Sapiro
h that. When Brain was still alive, EMWD was extremely responsive to these issues, but I don't know what their current support situation is. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan

[Mailman-Users] Re: Apple and Microsoft emails bounced

2024-03-07 Thread Mark Sapiro
acy options... -> dmarc_moderation_action to Munge From and dmarc_quarantine_moderation_action to Yes. See <https://wiki.list.org/DEV/DMARC>. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan --

[Mailman-Users] Re: Text encoding of digests

2024-02-21 Thread Mark Sapiro
On 2/21/24 15:00, Christian via Mailman-Users wrote: Hello Mark Sapiro. On Wed, 21 Feb 2024 14:50:37 -0800, you wrote: A better solution is to set the character set for English to UTF-8, but that requires access to mm_cfg.py on the server, see <https://wiki.list.org/x/15958250>. As yo

[Mailman-Users] Re: Text encoding of digests

2024-02-21 Thread Mark Sapiro
t requires access to mm_cfg.py on the server, see <https://wiki.list.org/x/15958250>. Of course setting the list's preferred_language to German will have other effects which may be unwanted such as changing the default language of the web UI and translating the digest boilerplate. -- Ma

[Mailman-Users] Re: Mails are sent in tranches of 100

2024-02-16 Thread Mark Sapiro
processes. This means that sending takes quite a long time. Where can I change this behavior? I would like all mails to be sent immediately. You may find some of the results from <https://wiki.list.org/FrontPage?action=fullsearch&value=performance&titlesearch=Titles> helpful.

[Mailman-Users] Re: Attach footer only once?

2024-02-12 Thread Mark Sapiro
but finding and removing the offending text from all incoming message parts including text/html and other text/* parts in addition to text/plain is still non-trivial. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabe

[Mailman-Users] Re: Attach footer only once?

2024-02-10 Thread Mark Sapiro
n my inbox.") And more importantly, threads are not linear. A posts. B replies all to A. C replies all to A. C's post does not include B's reply. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Califo

[Mailman-Users] Re: Sorry about duplicate information

2024-02-09 Thread Mark Sapiro
est has come in... ;) Or check the archives at <https://mail.python.org/archives/list/mailman-users@python.org/>. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan ---

[Mailman-Users] Re: Attach footer only once?

2024-02-09 Thread Mark Sapiro
so much negative feedback that I gave up. You could try putting a `-- ` line at the beginning of the footer to make it look like a signature. At least some MUAs do not include signatures in quoted material in replies. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area

[Mailman-Users] Re: confirm mails / administrative mails are discarded in mailman3

2024-01-03 Thread Mark Sapiro
ore the member is subscribed. Similarly if Invitation is checked, an invitation should be sent and responded to before the member is subscribed. I don't know why this wouldn't be the case. -- Mark Sapiro The highway is for gamblers, San Francisco Bay

[Mailman-Users] Re: Issues with a DMARC record leading to message being shunted

2023-12-23 Thread Mark Sapiro
/ADWTZKJHXPC6DPD7H2CJBD5EMG6T6ZSR/ -- 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

[Mailman-Users] Re: spamming

2023-12-13 Thread Mark Sapiro
On 12/13/23 18:34, Jim Dory wrote: On 12/13/23 17:07, Mark Sapiro wrote: On 12/13/23 17:48, Jim Dory wrote: My bad.. rather than Bad Request error (oiy, my memory), the actual error when enabling the RECAPTCHA strings is this:     Bug in Mailman version   We're sorry, we hit

[Mailman-Users] Re: spamming

2023-12-13 Thread Mark Sapiro
OC/Mailman%20and%20CPanel If all else fails you can edit /usr/local/cpanel/3rdparty/mailman/scripts/driver and set `STEALTH_MODE = 0` -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -

[Mailman-Users] Re: spamming

2023-12-13 Thread Mark Sapiro
e a Bad Request error. If after fixing the template, you still can't log in, We would like to see the full traceback from Mailman's logs/error log. It's possible this is a cPanel issue. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Califo

[Mailman-Users] Re: List migration Mailman 2.1 to a new server - cannot clarify how to import user subscription attributes settings

2023-12-08 Thread Mark Sapiro
st settings, memberships and member settings. The latter allows you to rebuild the pipermail archive with bin/arch. Also see https://wiki.list.org/x/4030682 -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense

[Mailman-Users] Re: archive

2023-12-05 Thread Mark Sapiro
;From ' lines in message bodies. -- 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 a

[Mailman-Users] Re: Captcha not working

2023-11-28 Thread Mark Sapiro
at https://bazaar.launchpad.net/~mailman-coders/mailman/2.1/view/head:/templates/en/listinfo.html#L119 -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mailman-Users

[Mailman-Users] Re: Mailman 3 Issue - Unable to Authenticate with Mailman Core REST API

2023-11-26 Thread Mark Sapiro
and to archive the message. It has nothing to do with REST API authentication. Let me know if additional information or specific configurations are needed. Thanks in advance for your support! What's in logs?, both mailman.log and django's log? -- Mark Sapiro The highway

[Mailman-Users] Re: Excessive or fatal bounces issue

2023-11-22 Thread Mark Sapiro
t possible to have l...@domain.ext instead of list-boun...@domain.ext? See https://wiki.list.org/x/4030534 particularly the note at the bottom of the page. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -

[Mailman-Users] Re: Sharing PHP or Scripts to a list

2023-11-22 Thread Mark Sapiro
tags, etc. will be displayed as written. -- 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 se

[Mailman-Users] Re: Web page hosts that offer Mailman

2023-11-21 Thread Mark Sapiro
%20services -- 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

[Mailman-Users] Re: Unable to post messages to a Mailman 2 List

2023-11-20 Thread Mark Sapiro
e365 I'm guessing this is for outbound mail, not inbound. What is the MTA running on ncsinet.in? You need things in the MTA to deliver to Mailman. See https://www.list.org/mailman-install/mail-server.html -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Calif

[Mailman-Users] Re: Unable to post messages to a Mailman 2 List

2023-11-19 Thread Mark Sapiro
o the new one? See https://wiki.list.org/x/4030682 As far as redirecting is concerned, You could add/update the MX record for the old domain to point to the new server -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B.

[Mailman-Users] Re: Hide list address?

2023-11-16 Thread Mark Sapiro
derstanding’s, answer was also not possible. It is possible if your provider adds OWNERS_CAN_ENABLE_PERSONALIZATION = Yes to Mailman/mm_cfg.py. The fact they say it isn't possible means either they won't do that or they don't know how. -- Mark Sapiro The highway

[Mailman-Users] Re: Unable to post messages to a Mailman 2 List

2023-11-16 Thread Mark Sapiro
n post LISTNAME` -- 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-l

[Mailman-Users] Re: Problems with mailman installation

2023-11-08 Thread Mark Sapiro
object has no attribute 'lower' This is the expected result. I note the original error was 'No such file or directory'. I suspect the issue is that the compiled wrappers don't understand the chroot and are trying to run the driver script at /usr/lib/scripts/driver

[Mailman-Users] Re: Problems with mailman installation

2023-11-08 Thread Mark Sapiro
sr/lib/cgi-bin/mailman/listinfo manually. If you get a response with a group mismatch error, what does it say? -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mai

[Mailman-Users] Re: mailman3-web is broken after deleting site "example.com"

2023-11-08 Thread Mark Sapiro
test/faq.html#the-domain-name-displayed-in-hyperkitty-shows-example-com-or-something-else -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mailman-Users mailing list --

[Mailman-Users] Re: Making Sure a Weekly Digest is Just Weekly

2023-11-05 Thread Mark Sapiro
s cPanel. See https://wiki.list.org/DOC/Mailman%20and%20CPanel - Mailman's files should be in /usr/local/cpanel/3rdparty/mailman -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -

[Mailman-Users] Re: Making Sure a Weekly Digest is Just Weekly

2023-11-04 Thread Mark Sapiro
recommend Mailman 3. See https://docs.mailman3.org/en/latest/install/install.html Mailman 2.1 is past end of life and will only become more difficult to support as time goes on. In particular, it requires Python 2 which is also end of life and is being dropped from many distros. -- Mar

[Mailman-Users] Re: Good Commercial Mailman Hosts?

2023-11-03 Thread Mark Sapiro
On 11/3/23 07:36, Michael Reeder -- Hygeia MS wrote: Hello, I'm hoping you all could point me towards some good commercial providers that offer Mailman lists to customers? There is a list at https://wiki.list.org/COM/Mailman%20hosting%20services -- Mark Sapiro The highway i

[Mailman-Users] Re: Making Sure a Weekly Digest is Just Weekly

2023-11-03 Thread Mark Sapiro
gests will never be sent based on size. What you want is to set digest_send_periodic to Yes and adjust mailman's crontab to run cron/senddigests weekly. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan --

[Mailman-Users] Re: Someone tried to unsubscribe me

2023-10-25 Thread Mark Sapiro
? There are various ways to request unsubscription of an arbitrary address. See for example https://your.lists.server/mailman/options/re-renches This is why unsubscription by any means that is not authenticated with your list password requires confirmation. -- Mark Sapiro The highway is for

[Mailman-Users] Re: spamming

2023-10-23 Thread Mark Sapiro
ch will override the defaults from Defaults.py. Also see https://wiki.list.org/DOC/Mailman%20and%20CPanel for info about cPanel. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -

[Mailman-Users] Re: Identifying a subscriber from a masked FBL report

2023-09-11 Thread Mark Sapiro
ail address. This is intended to enable identification of the recipient otherwise redacted from "spam report" feedback loop messages. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabett

[Mailman-Users] Re: Footers as Attachments

2023-09-07 Thread Mark Sapiro
this as an attachment rather than inline, that's an issue with the MUA. See https://wiki.list.org/x/4030707 for more. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan ---

[Mailman-Users] Re: Mailman 3 moderator login page as mailman 2.1 one

2023-09-05 Thread Mark Sapiro
nclude links. These templates are not the default because Mailman core which sends the messages doesn't know if you even have a web UI or what its URL is. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense

[Mailman-Users] Re: List emergency moderation

2023-09-04 Thread Mark Sapiro
set_mod -u But they are not being un-moderated. Is it because of the emergency moderation flag? If "Emergency moderation of all list traffic" is set to Yes, all posts are moderated regardless of the moderation status of the poster. -- Mark Sapiro The highway is for gam

[Mailman-Users] Re: How to determine moderation flag from config.pck

2023-08-22 Thread Mark Sapiro
On 8/22/23 2:50 PM, Russell Clemings wrote: What's the logic behind that? I should have mentioned that I'll be doing this in PHP so I'll have to replicate it. It works the same in PHP. See https://www.php.net/manual/en/language.operators.bitwise.php -- Mark Sapiro

[Mailman-Users] Re: How to determine moderation flag from config.pck

2023-08-22 Thread Mark Sapiro
derated? Automatically, I mean. I know the "moderated" value is 128, but I don't understand how (or if it's even possible) to pull out the value for a single flag. For example, in Python ``` for user, opts in user_options.items(): if opts & 128: print(user

[Mailman-Users] Re: Subscribe without Account is missing

2023-08-09 Thread Mark Sapiro
account at >python.org first. The presence of the anonymous subscribe form on the list's info page is controlled by a site wide setting. This is set to not show the form for python.org lists because it was heavily abused to maliciously subscribe third parties. -- Mark Sapiro Sen

[Mailman-Users] Re: Missing emails

2023-08-04 Thread Mark Sapiro
Munge From or Wrap Message dmarc_quarantine_moderation_action is Yes and if the issue is with mail From: the gmail.com domain dmarc_moderation_addresses contains ^.*@gmail\.com$ Also your list domain should publish an spf record and should DKIM sign all outgoing mail. -- Mark Sapiro

[Mailman-Users] Re: Questions About "An embedded message was scrubbed..."

2023-08-04 Thread Mark Sapiro
email table and non-plain text parts are stored in a hyperkitty_attachment table. See https://mail.python.org/archives/list/hy...@python.org/message/KK6DQWWZEJOGQCF4YNEZUQA3MCBCGQQF/ for an example of what this looks like in HyperKitty. -- Mark Sapiro The highway is for gamblers, Sa

[Mailman-Users] Re: Questions About "An embedded message was scrubbed..."

2023-08-04 Thread Mark Sapiro
is a limitation of the archiver. -- 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 ema

[Mailman-Users] Re: Excessive or fatal bounces issue

2023-08-03 Thread Mark Sapiro
formation about DMARC. -- 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

[Mailman-Users] Re: List Won't Send Mail

2023-07-28 Thread Mark Sapiro
l for more information, particularly the numbered items nearer the end. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mailman-Users mailing list -- mailman-us

[Mailman-Users] Re: Hyperkitty Archived

2023-07-18 Thread Mark Sapiro
tps://lists.mailman3.org/mailman3/lists/mailman-us...@mailman3.org/> and post there. That is the appropriate list for Mailman 3/Postorius/HyperKitty. Things to check are errors in Mailman's var/logs/mailman.log and whether messages are queued in Mailman's var/archives/hyperkitty/spool/ dire

[Mailman-Users] Re: Signature issue - was Re: Re: Where's the installation directions / source, etc, please?

2023-07-18 Thread Mark Sapiro
On 7/18/23 06:44, Juergen Dollinger wrote: Mark Sapiro wrote: gpg --receive-keys 953B8693 I never needed that key because I use the Debian Package, but there seems to be something wrong with the key (or the keyserver keys.openpgp.org): I was able to retrieve my key from keys.openpgp.org

[Mailman-Users] Re: Python 2.7.15, etc, vs Python3...

2023-07-17 Thread Mark Sapiro
ou can look for a repository that allows you to install it as a package for your OS. -- Mark Sapiro The highway is for gamblers, San Francisco Bay Area, Californiabetter use your sense - B. Dylan -- Mailman-Users mailing list -- ma

  1   2   3   4   5   6   7   8   9   10   >