Hello,

Ideally I'm envisioning an architecture that is similar to getpaid where there is the core product engine and then pluggable external mailing list managers. Sympa is currently the only planned MLM.

I see some similar products online, such as the nabble integration on plone.org <http://plone.org> and listen over at openplans.org <http://openplans.org>. Listen looks close, but my buildout is currently failling so I haven't played with it yet. Does anyone have any thoughts, comments or suggestions? I'd appreciate any input or pointers. Thanks
In our project we are using listen. Here is our buildout.cfg:

eggs =
  ...
  Products.listen

parts =
  ...
   MailBoxer
   mailing

[mailing]
recipe = infrae.subversion
urls = https://svn.plone.org/svn/plone/plone.mail/trunk plone.mail
location = parts/mailing
as_eggs = true

[MailBoxer]
recipe = infrae.subversion
urls = https://svn.plone.org/svn/collective/MailBoxerTempDev/trunk MailBoxer
location = products/MailBoxer


Also You need configure your mailserver. We are using postfix.
in /etc/postfix/main.cf you must put this line:
    virtual_alias_maps = hash:/etc/postfix/virtual

in /etc/postfix/virtual:
example.com      example_lists
@example.com     example_lists,

in /etc/aliases:
example_lists: "|/etc/postfix/smtp2zope.py http://example.com:8090/example/send_listen_mail 200000"


Also you need copy smtp2zope.py to your /etc/postfix directory.


Good luck,
Jaro

_______________________________________________
Product-Developers mailing list
Product-Developers@lists.plone.org
http://lists.plone.org/mailman/listinfo/product-developers

Reply via email to