I must have missed your earlier questions in the month. I have been on the road.
The setttings that are referred to for setting up a Mailman maillist in Satchmo are in the Site Settings page that you get to from the admin panels. usual found at http://yourdomainhere/settings/ In the admin Site Settings page under the Newsletter settings I have selected Mailman from the drop down. and then have put the name of the mail-list and the slug. In my settings.py file I only have satchmo_ext.newsletter', activated I do not have #'satchmo_ext.newsletter.mailman', active. And looking at my database tables for the livesettings, it is calling the satchmo_ext.newsletter.mailman. I believe that once I had selected the mailman option and saved it brought up the fields for entering the maillist and its slug. I found the biggest keys to getting it working was to get Mailman working first. Setup of that will be dependant on what OS you are running and what your mail server is. One thing that helped a lot with the Mailman setup was creating a subdomian for it to run from. Otherwise you run a risk of it taking over all the mail of the domain. so I created a http://maillists.yourdomainhere so that when I setup a maillist for my Satchmo site the slug became http://maillists.yourdomainhere.com/mailman/listinfo and all the emails would show that they came from maillists.yourdomainhere. For installing Mailman I highly recommend using the one that comes with your systems repository. I'm running a Red hat Federa server and while the Mailman that is in their repository is a few versions back. Using Yum or Apt-get to manage and install the package worked a lot smoother. I had tried to manually install the most recent version, and had no end of trouble getting it to integrate with my mail Server. You can find a very detailed install info here: http://www.gnu.org/software/mailman/mailman-install/index.html especially section 6 Setting up your Mail Server. And then the following stuff about getting the mailing list working. Once Mailman is up and running and you have created your lists, Satchmo integrated with it very well for me. Up until I mad Mailmand working was another story. Hope this helps. If you have more questions I'll do what I can to remember what worked for me with getting it running. On Oct 22, 4:16 pm, Josh <[email protected]> wrote: > bump > > On Oct 15, 1:30 pm, Josh <[email protected]> wrote: > > > > > This also might be relevant from the bottom of the error page: > > > /usr/local/lib/python2.6/site-packages/django/utils/module_loading.py > > in module_has_submodule > > > 7. """See if 'module' is in 'package'.""" > > 8. name = ".".join([package.__name__, module_name]) > > 9. if name in sys.modules: > > 10. return True > > 11. for finder in sys.meta_path: > > 12. if finder.find_module(name): > > 13. return True > > > 14. for entry in package.__path__: # No __path__, then not a > > package. ... > > > 15. try: > > 16. # Try the cached finder. > > 17. finder = sys.path_importer_cache[entry] > > 18. if finder is None: > > 19. # Implicit import machinery should be used. > > 20. try: > > > ▼ Local vars > > Variable Value > > module_name > > 'admin' > > name > > 'satchmo_ext.newsletter.mailman.admin' > > package > > <module 'satchmo_ext.newsletter.mailman' from '/usr/local/lib/ > > python2.6/site-packages/Satchmo-0.9_2-py2.6.egg/satchmo_ext/newsletter/ > > mailman.pyc'> > > > If im reading that right it seems like its looking for mailman.admin > > which as far as I know doesn't exist. Correct me if I'm wrong. Does > > anyone know how to get this working? > > > Josh > > > On Oct 15, 12:57 pm, Josh <[email protected]> wrote: > > > > I had not been working on this for awhile but need to get it working > > > now. I'm still having some trouble. In the docs > > > (http://www.satchmoproject.com/docs/dev/configuration.html) it says you > > > have > > > to enter the name of the list in your local settings file. But it > > > doesn't tell how to do this. Howery or anyone, do you know how to do > > > this? could anyone that has mailman working offer some insight? As > > > soon as a i add 'satchmo_ext.newsletter.mailman' to my settings I get: > > > > AttributeError at / > > > > 'module' object has no attribute '__path__' > > > > Thanks > > > -Josh > > > > On Sep 18, 6:33 am, Howery <[email protected]> wrote: > > > > > Didn't mean to change subject back. -- You received this message because you are subscribed to the Google Groups "Satchmo users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/satchmo-users?hl=en.
