Hi Mark and Stephen,
Thanks for your examples. They helped me confirm that I needed to look into a different area than the Apache config. Ultimately I needed to use the extra code that is commented out in the wsqi.py file that is part of the mailman-suite Django project. Why I didn't realize this sooner? Chock it up to inexperience with python and trying the wrong combination of things at the wrong times.
Just for the sake of anyone else looking through the archives I was able to get away with just using the following in my virtual hosts file. <VirtualHost *:80> #Mailman3 stuff ServerName mailman.local
Alias /static /Applications/MAMP/Library/lib/python2.7/site-packages/mailman-suite/mailman-suite_project/static <Directory "/Applications/MAMP/Library/lib/python2.7/site-packages/mailman-suite/mailman-suite_project/static"> Order deny,allow Allow from all </Directory>
WSGIScriptAlias / /Applications/MAMP/Library/lib/python2.7/site-packages/mailman-suite/mailman-suite_project/wsgi.py <Directory "/Applications/MAMP/Library/lib/python2.7/site-packages/mailman-suite/mailman-suite_project"> <Files wsgi.py> Order deny,allow Allow from all </Files> </Directory> </VirtualHost>
-Erin