On 1/18/07 6:35 PM, Gustavo U. Navarro at [EMAIL PROTECTED] wrote: > Postfix is run ok but when run with mailman said one error > > Recipient address rejected: User unknown in local recipient table..
To have mailman work with postfix, all the mailman addresses need to be in the Postfix alias file. That is: > main.cf > alias_maps = hash:/etc/aliases > alias_database = hash:/etc/aliases So far so good maybe. Are you manually putting the aliases in /etc/aliases? But better would be to let mailman take care of it for you. But for that to happen, instead of > in mm_cfg.py > MTA = None # No MTA alias processing required You need: MTA = 'Postfix' And then you need to tell Postfix where they are. In my postfix main.cf, I have: # Needed for Mailman alias_maps=hash:/etc/postfix/aliases, hash:/path_to_mailman/data/aliases -- Larry Stone [EMAIL PROTECTED] http://www.stonejongleux.com/ ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
