This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author jackjansen
Recipients
Date 2003-03-04.20:45:52
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=45365

That confirms my suspicion that this is a third-party error: filedescriptors 2 and 3 are readwrite on BSD, write-only on Linux.

A final test to confirm this: on BSD, add code like this just before calling popen():
os.close(1)
os.close(2)
os.open("/dev/null", "w")
os.open("/dev/null", "w")

If this makes the hang go away then the real problem is that whatever program executes your .forward (qmail?) erroneously opens a read-write pipe for your stdout and stderr. You can't do this with pipe() AFAIK, but maybe with socketpair() or something.
History
Date User Action Args
2007-08-23 14:11:33adminlinkissue694062 messages
2007-08-23 14:11:33admincreate