"David Gibbs" <[EMAIL PROTECTED]> wrote in message b0d7d8$k5k$[EMAIL PROTECTED]">news:b0d7d8$k5k$[EMAIL PROTECTED]... > I solved the problem by changing the HTML to Plaintext command to links...
Actually, I found a simpler solution that doesn't require installing any software. Turns out that Redhat decided, in their infinite wisdom, to change the temporary directory that lynx uses to be the users home directory. Since qrunner is suid to mailman, the processes environment information it runs with is not actually mailman's (home directory, etc) ... so if you start qrunner when signed on as root, the processes home directory is still root's home directory (in my case '/root').... so, you have a process that has a home directory that it has no authority to write to. To fix the problem, we have to change the temporary directory that lynx uses. Change the HTML_TO_PLAIN_TEXT_COMMAND to the following ... HTML_TO_PLAIN_TEXT_COMMAND = 'export LYNX_TEMP_SPACE=/tmp && /usr/bin/lynx -force_html -dump %(filename)s' This causes the temporary directory that lynx will use to be /tmp (which, btw, is the default for a freshly built lynx). Now, this works fine ... I just tested it and got fine results... HOWEVER, I really don't like the way lynx formats the dumped html file... it's got extra spaces between each line. Don't know why. I'm going to stick with links for now. :) david ------------------------------------------------------ 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/ This message was sent to: archive@jab.org Unsubscribe or change your options at http://mail.python.org/mailman/options/mailman-users/archive%40jab.org