Re: qpsmtpd-async weird ParaDNS lookup problem + code fix

2014-08-12 Thread Kaare Rasmussen
Hi Matt How about putting it on Github? Then anybody can look and decide if they want to continue work on it and perhaps make it cpan -ready. To be fair I don't do perl coding any more, so I'm happy for someone to take over ParaDNS maintainence. ParaDNS-XS is in my SVN server. Happy to

Re: qpsmtpd-async weird ParaDNS lookup problem + code fix

2014-08-07 Thread Matt Sergeant
To be fair I don't do perl coding any more, so I'm happy for someone to take over ParaDNS maintainence. ParaDNS-XS is in my SVN server. Happy to share that with anyone who wants it. It's basically ParaDNS using adns backend rather than Net::DNS. It's a bit hacky and probably doesn't work 100%

Re: qpsmtpd-async weird ParaDNS lookup problem + code fix

2014-08-01 Thread David Favor
Matt Sergeant wrote: Do you have ParaDNS::XS installed? If not, try installing it. It's generally likely to be better than plain ParaDNS (and will be used automatically if it's installed). There is no ParaDNS::XS on cpan... At least nothing returned for...

Re: qpsmtpd-async weird ParaDNS lookup problem

2014-07-22 Thread Matt Sergeant
Do you have ParaDNS::XS installed? If not, try installing it. It's generally likely to be better than plain ParaDNS (and will be used automatically if it's installed). On Thu, 17 Jul 2014, David Favor wrote: I've been running qpsmtpd-async for years on all sorts of servers. Likely I have

Re: qpsmtpd-async weird ParaDNS lookup problem

2014-07-19 Thread Charlie Brady
On Fri, 18 Jul 2014, David Favor wrote: What's the actual problem you are trying to solve though? Problem is ParaDNS is failing on all lookups for this server. ... Notice the there lines with prepended '' which show ParaDNS failing. Perhaps you should be looking for assistance on a

Re: qpsmtpd-async weird ParaDNS lookup problem

2014-07-19 Thread David Favor
: qpsmtpd qpsmtpd@perl.org Subject: Re: qpsmtpd-async weird ParaDNS lookup problem Ed McLain wrote: If using dig you can either do: dig -x 127.0.0.1 OR dig 1.0.0.127.in-addr.arpa PTR That is going to query the primary name server listed in /etc/resolv.conf - so unless it has a reverse zone

Re: qpsmtpd-async weird ParaDNS lookup problem (SOLVED + lib/Qpsmtpd/PollServer.pm suggested code change)

2014-07-19 Thread David Favor
The symptom of this problem is qpsmtpd-async just hangs forever in the HELO part of SMTP transaction. After putting reams of debug code in ParaDNS.pm + qpsmtpd, the fix I came up with is a minor change to... lib/Qpsmtpd/PollServer.pm In start_conversation() no nameserver list specified. I

Re: qpsmtpd-async weird ParaDNS lookup problem

2014-07-18 Thread David Favor
Ed McLain wrote: If using dig you can either do: dig -x 127.0.0.1 OR dig 1.0.0.127.in-addr.arpa PTR That is going to query the primary name server listed in /etc/resolv.conf - so unless it has a reverse zone setup for the l27.x block you will not get an answer back or you will get an answer

qpsmtpd-async weird ParaDNS lookup problem

2014-07-17 Thread David Favor
I've been running qpsmtpd-async for years on all sorts of servers. Likely I have something in DNS setup slightly wrong on a new server I'm setting up + what's wrong escapes me. The symptom is qpsmtpd-async hanging forever in the HELO sequence. Both forkserver + prefork work fine + async works

Re: qpsmtpd-async weird ParaDNS lookup problem

2014-07-17 Thread Ed McLain
all support questions to our support team at host...@teklinks.com http://mailto:host...@teklinks.com/ or 205.314.6634. -Original Message- From: David Favor da...@davidfavor.com Date: Thursday, July 17, 2014 at 9:18 AM To: qpsmtpd qpsmtpd@perl.org Subject: qpsmtpd-async weird ParaDNS

Re: qpsmtpd-async weird ParaDNS lookup problem

2014-07-17 Thread David Favor
Ed McLain wrote: For an IP you need to lookup the PTR in reverse notation (1.0.0.127.in-addr.arpa) vs an A record which is name to IP. PTR is IP to Name. Oops... Hit reply rather than reply-all... Resending via reply-all... ___ If I understand correctly, you're asking about this...

Re: qpsmtpd-async weird ParaDNS lookup problem

2014-07-17 Thread Ed McLain
://mailto:host...@teklinks.com/ or 205.314.6634. -Original Message- From: David Favor da...@davidfavor.com Date: Thursday, July 17, 2014 at 10:58 AM To: Edward McLain emcl...@teklinks.com Cc: qpsmtpd qpsmtpd@perl.org Subject: Re: qpsmtpd-async weird ParaDNS lookup problem Ed McLain wrote