Mark Heer wrote: > >I'd like to have all archives sent to one system. Currently we use hypermail >for this but as we move to mailman it will be necessary to retain this sort of > architecture. Can mailman be configured to have mailserver1 and mailserver2 >send archives >to adminmachine3 ? (all 3 running mailman). One posssibility as noted in the >faq is using MHonArc - but could I use similar >PUBLIC_EXTERNAL_ARCHIVER configs to point to adminmachine3 using mailman's >pipermail?
Just off the top of my head, you could try something on machines 1 and 2 like PUBLIC_EXTERNAL_ARCHIVER = 'ssh -e none [EMAIL PROTECTED] "script %(listname)s"' (all on one line), and similarly for PRIVATE_EXTERNAL_ARCHIVER, where script would be on machine3 and would be something like #!/bin/sh f=`mktemp` cat > $f bin/arch $1 $f rm $f Of course, it wouldn't have to be ssh and could be it's own script, but just something to push the message to a script on machine 3 which would copy the message to a file and feed it to bin/arch for the correct list. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ 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
