I'm trying to get buildbot running on centos5, and getting the following error:
File "/usr/lib/python2.4/site-packages/buildbot/status/mail.py", line 14, in ?
from twisted.mail.smtp import sendmail, ESMTPSenderFactory
ImportError: No module named mail.smtp
I have the following twisted packages installed (and don't see anything else relevant to install):
$ rpm -qa | grep twisted
python-twisted-web-0.7.0-1.el5
python-twisted-core-2.5.0-4.el5
python-twisted-words-0.5.0-3.el5
I'm more familiar with debian where I can do:
$ apt-file find twisted/mail/smtp
python-twisted-mail: /usr/share/pyshared/twisted/mail/smtp.py
Two questions:
- Is there something I can pull from yum that will provide this file or do I need to resort to manual tactics for this part of twisted?
- Is there anything analogous to the
apt-file
command above for rpm/yum-based systems?
Thanks.
(I considered superuser, but this seems so tightly coupled to programming that I expect better answers here...)