Questions tagged [mailman]

Mailman is a Python-based open-source platform for managing email lists and discussion groups.

Mailman is a Python-based free platform for managing email lists and discussion groups ("listserv"s). Mailman includes a web-based interface for users and administrators, as well as email-based tools and commands. Mailman supports archiving, bounce processing, filtering, digest delivery, spam filters, and more.

78 questions
1
vote
0 answers

use mysql for mailman3

I set up mailman3 using the mailman-suite configuration. I expected that mailman uses the database provided there (like sqlite or mysql), but it seems to have its own database file mailman.db in var/data. I followed the instructions here and added…
Asara
  • 2,791
  • 3
  • 26
  • 55
1
vote
1 answer

New Bounce Processing Templates in Mailman

When mailman receives a bounceback in a format that it doesn't recognize, it discards the message and sends an "Uncaught bounce notification" to the list administrator. How would it be possible to define new templates or rules for mailman to process…
anschauung
  • 3,697
  • 3
  • 24
  • 34
1
vote
1 answer

email not being added to mailing list

Am trying to using Services Mailman php api to add emails to a mailing list created at the backend with the site cpanel but no email is being added. Here is my code require './Services/Mailman.php'; $mm = new Services_Mailman(…
kellymandem
  • 1,709
  • 3
  • 17
  • 27
1
vote
0 answers

Attachment file name displays incorrect - Elixir

I have problem in sending email with attachment which file name includes Chinese character by mailman. The file name of attachment in email looks incorrect. What should I do to make file name display as normal in attachment. snapshot about…
ElliotCui
  • 385
  • 2
  • 9
1
vote
1 answer

Redirection: mod_wsgi and django

following this guide, I have setup Mailman 3 with Apache and mod_wsgi on a Debian server. The .conf-file of my virtualhost: ErrorLog /var/log/mailman-web/mailman-web.log CustomLog /var/log/mailman-web/mailman-web_access.log combined WSGISocketPrefix…
Oguzhan Er
  • 13
  • 3
1
vote
1 answer

GET request working through Python but not through Postman

I am trying to use the Mailman 3 REST API, but I need to call it from Spring's Rest Template in a java class, or for testing purpose from Postman. In Python, I can call the API by: >>> from httplib2 import Http >>> headers = { ... …
roynalnaruto
  • 329
  • 2
  • 6
  • 17
1
vote
2 answers

Capistrano gives "/usr/bin/env: ruby: No such file or directory" when performing cap deploy

I am trying to deploy mailman with daemon and capistrano for my rails app into the production, but I receive this error on my local machine: SSHKit::Runner::ExecuteError: Exception while executing on host 173.63.11.34: Exception while executing on…
Ryzal Yusoff
  • 957
  • 2
  • 22
  • 49
1
vote
2 answers

How to use os.spawnv to send email copy using Python?

First let me say that I know it's better to use the subprocess module, but I'm editing other people's code and I'm trying to make as few changes as possible, which includes avoiding the importing any new modules. So I'd like to stick to the…
Chirael
  • 3,025
  • 4
  • 28
  • 28
1
vote
0 answers

Getting error while trying to poll multiple accounts from database using mailman server in RoR

Hi I am trying to access multiple accounts from database using mailman server in RoR. But I'm getting the following error script/mailman_server:7:in `
': uninitialized constant EmailConfig (NameError) Here is what I tried to achieve my task: …
Anitha
  • 1,045
  • 3
  • 18
  • 31
1
vote
0 answers

Mailman auto-approve postings by members of nested lists

I have an umbrella configuration on mailman, and postings to the top list from members of the nested lists will be held for approval, something I do not want, I want them to be auto-approved. The main problem is that there are email addresses from…
Thin_icE
  • 11
  • 1
1
vote
1 answer

How to connect to Mailman mailing list using .Net

I have to develop a .Net application in which i have to add or remove a user from Mailman mailing list.My Question is whether there is any .Net connector or Dll to connect to mailman mailing list using .Net.
chaithu
  • 564
  • 2
  • 12
  • 25
1
vote
1 answer

Have a Python CGI call a Perl CGI, passing original info (to limit searching private Mailman archives to logged-in users)

I need to have a Python CGI script do some stuff (a little bit of security checking), and then end up calling a Perl CGI script, passing anything it received (e.g., POST info) onto the Perl script. For background, my reason for doing this is that…
Chirael
  • 3,025
  • 4
  • 28
  • 28
1
vote
0 answers

How to make a script like e.g. 'script/mailman_server' work for multiple users in a Rails app

I have a Rails app that uses the mailman gem (link) to collect inbound pop3 mails and do stuff with them. It all works just fine, but now I wish to have multiple users sign up and receive mails from their pop3 configuration. Mailman is run in…
Cjoerg
  • 1,271
  • 3
  • 21
  • 63
1
vote
2 answers

Turn a ruby script into an always running job

I have created a program that I need to run constantly. It currently lives at scripts/mailman. I start it by doing this: sudo bundle exec rails runner script/mailman & It seams to stop after I logout of the server. Here is the contents of my…
user985723
  • 628
  • 2
  • 8
  • 18
1
vote
2 answers

Unable to check checkbox via Perl LWP::UserAgent

How should I check a checkbox like this:
with Perl's LWP::UserAgent module? This code doesn't do it (the output is as if it was submitted without…
Terry
  • 176
  • 9