repoze / repoze.sendmail

Send e-mails transactionally (originally cloned from zope.sendmail)
http://pypi.python.org/pypi/repoze.sendmail/
11 stars 25 forks source link

Current Popen implementation hangs #19

Closed jvanasco closed 11 years ago

jvanasco commented 11 years ago

This bug got introduced on the switch from my os to the current subprocess.

The last line in mailer.py currently reads:

    return subprocess.Popen(*args, **kw)  # pragma NO COVER

It simply needs to be edited to:

    return subprocess.Popen(*args, stdin=subprocess.PIPE , **kw)  # pragma NO COVER

automerging screwed up my fork, so I don't want to offer a pull request.

mcdonc commented 11 years ago

Thanks!