Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython

opencore-listen is unavailable in PyPM, because there aren't any builds for it in the package repositories. Click the linked icons to find out why.

 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
Windows (64-bit)
Mac OS X (10.5+)
Linux (32-bit)
Linux (64-bit)
 
Links
License
GPL

Listen

Listen is a mailing list management application that integrates into the Plone Content Management System. It is based on the venerable MailBoxer Zope Product by Maik Jablonski, and offers most of the features of that product. Key features include:

  • Easily create mailing lists through the Plone interface.
  • Lists may be moderated or unmoderated, open to all or restricted to

System Message: WARNING/2 (<string>, line 12)

Bullet list ends without a blank line; unexpected unindent.

subscribers only.

  • Optional archiving of mail with or without attachments.
  • Fully threaded archive display, including a forum-like view.
  • Portal members and visitors can easily subscribe/unsubscribe themselves

System Message: WARNING/2 (<string>, line 19)

Bullet list ends without a blank line; unexpected unindent.

through the Plone interface.

  • Each list maintains its own catalog featuring a full text index of messages.
  • Members can make responses with quotation to archived messages through the

System Message: WARNING/2 (<string>, line 24)

Bullet list ends without a blank line; unexpected unindent.

Plone interface.

  • Automatic masking of member email addresses with links to author pages.
  • Provides a registry of lists on a Zope instance allowing lists to be added

System Message: WARNING/2 (<string>, line 29)

Bullet list ends without a blank line; unexpected unindent.

without any additional SMTP server configuration.

  • Performs well due to use of simple Zope types and z3/Five techniques.

System Message: WARNING/2 (<string>, line 32)

Bullet list ends without a blank line; unexpected unindent.

Capable of higher mail volume that MailBoxer itself, and much greater volume than Archetypes-based mailing list systems.

This product makes heavy use of Zope3 features within Plone via Five; it uses views, adapters, Zope3 schemas (add and edit views), local utilities, factories, and events. It is not an ideally componentized application because of its dependence on MailBoxer, which is used as the base class for the primary content type, and provides more logic/functionality than an ideal content class would. Hopefully, those parts which make heavy use of Five technologies can serve as a helpful example for those intending to use Five in their own products.

Requirements

Plone 2.1+ (and all that entails) Zope 2.8.4+ Five 1.4 plone.app.form MailBoxer (svn version from https://svn.plone.org/svn/collective/MailBoxerTempDev/trunk) ManagableIndex 1.1 (also OFolder http://www.dieter.handshake.de/pyprojects/zope/index.html#ManagableIndex) plone.mail (https://svn.plone.org/svn/plone/plone.mail/trunk)

Installation and setup

Place this product folder in your Zope instance's Products folder and restart Zope. Go to the portal_quickinstaller in the ZMI and install the product. Now you may create mailing lists by using the add menu in any container in Plone, or (preferably) using the add view for the Mailing List class which can be accessed with a url of the following form:

http://mysite.example.com/my_portal/path/+/listen.add_mailinglist

Hopefully, Five add forms will be integrated into the Plone ui in the near future so that the more correct way is also the easy way to add a list.

Your SMTP server must be configured to route mail to the mailing list(s). For a simple single list instance the easiest way to do this is the standard MailBoxer way:

1) Copy the smtp2zope.py script from your MailBoxer folder to the relevant SMTP server (if you are using sendmail with smrsh, then you need to place/link it in a folder accessible to smrsh; for postfix place/link it in /etc/postfix).

2) Add an alias for the mailing list of the form: my_list@lists.mydomain.com "|/etc/smrsh/smtp2zope.py http://my_site.example.com/path/to/list/manage_mailboxer 200000"

System Message: WARNING/2 (<string>, line 89); backlink

Inline substitution_reference start-string without end-string.

for postfix: my_list: "|/etc/postfix/smtp2zope.py http://my_site.example.com/path/to/list/manage_mailboxer 200000"

System Message: WARNING/2 (<string>, line 92); backlink

Inline substitution_reference start-string without end-string.

Where the number at the end restricts the maximum size of a message intended for the list, this is optional, but highly recommended.

If you would like to be able to setup arbitrary lists on your server and have them automatically handled by your SMTP server the setup is slightly more involved and dependent on the particulars of your SMTP server. The end result is that you need to map a catch-all domain to a similar command which uses a tool in your Zope instance to decide where to route the mail. In sendmail the process is as follows:

  1. same as step 1 above.
  2. Add an entry to your virtusertable to create the catch-all domain:

@lists.my_domain.com my_zope_lists

3) Add an alias pointing to the script with the URL for the global list lookup utility:

my_zope_lists "|/etc/smrsh/smtp2zope.py http://my_site.example.com/send_listen_mail 200000"

System Message: WARNING/2 (<string>, line 114); backlink

Inline substitution_reference start-string without end-string.

That should be about it. Site members and anonymous users can subscribe themselves to the list, the list creator and/or site manager can choose whether the list is moderated or closed and how it is archived.

Qmail

If you are using Qmail instead of postfix or sendmail, setting up the aliases is slightly different. You need to create a file .qmail-mylist, where mylist is the name of the list (i.e. mylist@example.com).

So on my system (which serves multiple domains), I had to create the file in this directory: /var/qmail/mailnames/example.com Depending on your setup, it might go somewhere else (i.e. /var/qmail/alias)

The contents of the file look like this:

/etc/smrsh/smtp2zope.py http://my_site.example.com/send_listen_mail 200000

Unlike with postfix/sendmail, you don't need to run a command 'newaliases'. The new alias should be active immediately after you create the file.

Migration

The following applies to listen lists created using instances of listen older than 3/21/2006:

Due to issues with unicode/ASCII and message thread handling a migration method was introduced for listen lists which will rebuild the archive catalog and fix improperly stored strings in archived mail. There are two steps involved in migrating your lists and fixing these issues, first go to the url for your search catalog http://site/path/to/list/utilities/ISearchableArchive/manage_main, and delete the existing 'mail_lexicon' and add a new ZCTextIndex Lexicon with:

System Message: WARNING/2 (<string>, line 151)

Literal block expected; none found.

id: mail_lexicon Case Normalizer: True Stop Words: Don't remove stop words Word Splitter: Unicode Whitespace splitter

Then go to the following URL to reindex your archive http://site/path/to/list/fixupMessages

Enjoy!

Alec Mitchell <apm13@columbia.edu>

Subscribe to package updates

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.