
5 May
2008
5 May
'08
8:03 a.m.
Let me rephrase, the exception comes from a code that looks like this:
calc = twisted.relaymanager.MXCalculator() calc.getMX("gmail.com").addCallback(sendEmail, mail)
def sendEmail(mail): . . .
It seems that the failure comes from twited.relaymanager.MXCalculator.
On Mon, May 5, 2008 at 3:32 PM, Alvin Delagon adelagon@gmail.com wrote:
Can anyone explain what is causing this exception?
twisted.names.error.DNSQueryRefusedError: <twisted.names.dns.Message instance at 0xb78470cc>
I'm using twisted.mail.smtp which subclasses twisted.names.dns. I keep getting this failure during smtp.sendmail(). Thank you in advance. :)
Alvin Delagon