Skip to main content

Interface to Mailman Web-API

Project description

django-mailman is a simple way to manage one or more mailman mailing lists which are not installed on your server. It uses the webinterface to subscribe or unsubscribe a mailinglist member. Additional you are able to request a list of all subscribed members for a specific mailing list.

Requirements

django-mailman is tested and works with mailman version 2.1.5. It’s possible that mailman also works with the 2.1.x series, but I guess it wouldn’t work with the 3.x series which is under development at the moment

django-mailman requires Django 1.4 or later.

Configuration

First of all, you must add this project to your list of INSTALLED_APPS in settings.py:

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    ...
    'django_mailman',
    ...

)

Run manage.py syncdb. This creates the appropriate tables in your database that are necessary for operation.

Usage

from django_mailman.models import List

Create new List

Code:

list_name = 'testlist'
list_pwd = 'pwd'
list_email = 'testlist@mydomain.com'
list_url = 'http://mailman.listdomain.com'
list_encoding = 'iso-8859-1' # must match the encoding of your mailman installation

list = List(name=list_name, password=list_pwd, email=list_email,
    main_url=list_url, encoding=list_encoding)

Subscribe new member

list.subscribe(‘membername@maildomain.com’, ‘first-name’, ‘last-name’)

Unsubscribe member

list.unsubscribe(‘membername@maildomain.com’)

Show a list of all subscribed members

list.get_all_members()

This method will return a list of all members in the following format: [[u’first-name last-name’, u’membername@maildomain.com’]]

Admin Moderation Url

If you would like to provide some functionality to log into your mailman moderation area you could request the complete url from your list.

list.get_admin_moderation_url()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-mailman-eso-0.4.1.tar.gz (8.1 kB view details)

Uploaded Source

File details

Details for the file django-mailman-eso-0.4.1.tar.gz.

File metadata

  • Download URL: django-mailman-eso-0.4.1.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.4.2 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.8.0 tqdm/4.30.0 CPython/3.8.10

File hashes

Hashes for django-mailman-eso-0.4.1.tar.gz
Algorithm Hash digest
SHA256 56daf426082b9b3e471ae249662d29fa7a16d4f7ca7aa510eba922cb369091c2
MD5 3c8b9bc87b05b97d758e74e84613bce5
BLAKE2b-256 b1b6e5f8cc583140fc3b17cc68eabcbedd828eb0e74159e34f61f1a6845562f0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page