did you try Craig Smith's solution for the same issue he was having?

From: "Craig Smith" <[EMAIL PROTECTED]>
To: <[email protected]>
Reply-To: [email protected]
Subject: RE: [qmailtoaster] Slow pop3 login
Date: Mon, 6 Nov 2006 11:30:13 -0000
X-Mailer: Microsoft Office Outlook 11

Is this problem still occuring?  Sorry I've read most of the posts, and I
see the dns related items may be at fault,however there may be another
cause.  I had this same problem when I first setup my box, it worked great,
but pop3 authentication took just over 2 mins.

It turns out it was a setting in the run file.  I don't see any mention of
checking the run file so I thought I would let you know just in case.

original run is/was as follows.

#!/bin/sh

PASSPROG="/home/vpopmail/bin/vchkpw"
HOSTNAME=`hostname --fqdn`

exec /usr/bin/softlimit -m 9000000 \
/usr/bin/tcpserver -v -R -c 200 0 110 \
/var/qmail/bin/qmail-popup $HOSTNAME \
$PASSPROG /var/qmail/bin/qmail-pop3d Maildir 2>&1




I changed mine to

#!/bin/sh

PASSPROG="/home/vpopmail/bin/vchkpw"
HOSTNAME="hostname"

exec /usr/bin/softlimit -m 9000000 \
/usr/bin/tcpserver -l0 -H -v -R -c 200 0 110 \
/var/qmail/bin/qmail-popup $HOSTNAME \
$PASSPROG /var/qmail/bin/qmail-pop3d Maildir 2>&1

I added the -l0 and the -H as I had read on several groups about the slow
response.  I believe the -H tells pop3 not to perform reverse dns or
something similar.  That was the general consensus for sorting out the slow
response, and in my case it worked a charm.

Try adding the -H to /var/qmail/supervise/pop3/run contents.  As ever make a
copy before editing. ;-)

I hope that helps.

On 11/6/06, Michael Amster <[EMAIL PROTECTED]> wrote:
Like I asked other people, do you have reverse DNS working for that
server?  Looks like no:

[EMAIL PROTECTED] ~]# dig ccws01.computerconcept.net

; <<>> DiG 9.3.2 <<>> ccws01.computerconcept.net
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 22742
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;ccws01.computerconcept.net.    IN      A

;; ANSWER SECTION:
ccws01.computerconcept.net. 83199 IN    A       65.83.25.10

;; Query time: 11 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Mon Nov  6 15:55:41 2006
;; MSG SIZE  rcvd: 60

[EMAIL PROTECTED] ~]# dig 65.83.25.10

; <<>> DiG 9.3.2 <<>> 65.83.25.10
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 60193
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;65.83.25.10.                   IN      A

;; ANSWER SECTION:
65.83.25.10.            655360  IN      A       65.83.25.10

;; Query time: 0 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Mon Nov  6 15:55:53 2006
;; MSG SIZE  rcvd: 45


Jeremy Runner wrote:

>
>
> Eric "Shubes" wrote:
>
>> [EMAIL PROTECTED] wrote:
>>
>>
>>> Can someone try to telnet in my qmailtoaster just to experience the
>>> slow
>>> login I am referring to.
>>>
>>> telnet ccws01.computerconcept.net 110
>>>
>>> Make sure you grab a snack first.
>>>
>>> Thanks.
>>>
>>>
>>
>>
>>
>>
>>> [EMAIL PROTECTED] ~]$ time telnet ccws01.computerconcept.net 110
>>> Trying 65.83.25.10...
>>> Connected to ccws01.computerconcept.net (65.83.25.10).
>>> Escape character is '^]'.
>>> +OK <[EMAIL PROTECTED]>
>>> quit
>>> +OK
>>> Connection closed by foreign host.
>>>
>>> real    1m40.689s
>>> user    0m0.016s
>>> sys     0m0.008s
>>> [EMAIL PROTECTED] ~]$
>>>
>>
>>
>> Note, I got Connected message right away, but it took well over a
>> minute to
>> come up with the first +OK.
>>
>> FWIW, it appears that you're not replying to ping. Might want to open
>> that
>> up for troubleshooting. It looks to me though like it's getting there
>> just
>> fine. What's happening between the "Connected..." and "+OK" though?
>> That's
>> where your problem lies.
>>
>
>
> Exactly.  That's what I've seen.  I have installed on 2 different
> machines with the exact same problem  Would this still be dns
> problem?  I didn't think so but thats the only area where I know I
> have a problem.
>
> ---------------------------------------------------------------------
>     QmailToaster hosted by: VR Hosted <http://www.vr.org>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


---------------------------------------------------------------------
     QmailToaster hosted by: VR Hosted <http://www.vr.org>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
    QmailToaster hosted by: VR Hosted <http://www.vr.org>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to