Perhaps you could try Ethereal (or other network analyzer) to capture the
actual packets. The "Sorry ..." error message is supposed to be an
indication that the initial TCP session cannot be establish. The actual
packet trace should help to isolate the problem. 

-----Original Message-----
From: Kjetil Paulsen [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 12, 2008 4:23 PM
To: [email protected]
Subject: Re: [qmailtoaster] No remote delivery

can't get the send to log with recordio (tried 'exec /var/qmail/rc
/usr/bin/recordio' in supervise/send/run) still only shows the standard
@40000000491b48fe124e41a4 delivery 1: deferral:
Sorry,_I_wasn't_able_to_establish_an_SMTP_connection._(#4.4.1)

here is what it logged from one message in /var/log/qmail/smtp/current


40000000491b471f21c5ed6c 17626 > 220 blue.gnumen.net - Welcome to Qmail
Toaster Ver. 1.2 SMTP Server ESMTP  40000000491b471f236ecb0c 17626 < EHLO
[10.0.0.97]
 40000000491b471f23706534 17626 > 250-blue.gnumen.net - Welcome to Qmail
Toaster Ver. 1.2 SMTP Server  40000000491b471f2370691c 17626 > 250-STARTTLS
 40000000491b471f23706d04 17626 > 250-PIPELINING  40000000491b471f237070ec
17626 > 250-8BITMIME  40000000491b471f237070ec 17626 > 250-SIZE 20971520
 40000000491b471f237074d4 17626 > 250 AUTH LOGIN PLAIN CRAM-MD5
 40000000491b471f25236c64 17626 < AUTH CRAM-MD5  40000000491b471f252479ec
17626 > 334 PDE3NjI4LjEyMjY1MjQ0MzdAYmx1ZS5nbnVtZW4ubmV0Pg==
 40000000491b471f2755540c 17626 <
a2pldGlsQGdudW1lbi5uZXQgODRmNGM3OTJlMmM1ZmNmZjYyNzE2YjEyNGM1YTY5NTc=
 40000000491b471f27d2f434 17626 > 235 ok, go ahead (#2.0.0)
 40000000491b471f2a15b844 17626 < MAIL FROM:<[EMAIL PROTECTED]> SIZE=354
@40000000491b471f35b25c5c CHKUSER accepted sender: from
<[EMAIL PROTECTED]:[EMAIL PROTECTED]:> remote
<[10.0.0.97]:unknown:84.234.141.2> rcpt <> : sender accepted
40000000491b471f35b38d0c 17626 > 250 ok
 40000000491b471f364ff804 17626 < RCPT TO:<[EMAIL PROTECTED]>
@40000000491b47253b308cbc CHKUSER relaying rcpt: from
<[EMAIL PROTECTED]:[EMAIL PROTECTED]:> remote
<[10.0.0.97]:unknown:84.234.141.2> rcpt <[EMAIL PROTECTED]> :
client allowed to relay
@40000000491b47253b309874 spamdyke[17626]: ALLOWED from:
[EMAIL PROTECTED] to: [EMAIL PROTECTED] origin_ip: 84.234.141.2
origin_rdns: 2.84-234-141.customer.lyse.net auth: [EMAIL PROTECTED]
 40000000491b47253b31a9e4 17626 > 250 ok
 40000000491b47253b9015c4 17626 < DATA
 40000000491b47260001da9c 17626 > 354 go ahead
 40000000491b4726006710c4 17626 < Message-ID: <[EMAIL PROTECTED]>
40000000491b4726006714ac 17626 < Date: Wed, 12 Nov 2008 22:13:56 +0100
 40000000491b472600671894 17626 < From: Kjetil Paulsen <[EMAIL PROTECTED]>
40000000491b472600671c7c 17626 < User-Agent: Thunderbird 2.0.0.17
(Macintosh/20080914)
 40000000491b472600672064 17626 < MIME-Version: 1.0
40000000491b47260067244c 17626 < To: [EMAIL PROTECTED]
40000000491b47260067244c 17626 < Subject: testing AGAIN
@40000000491b472600672834 17626 < Cont+
 40000000491b472600673fa4 17626 < ent-Type: text/plain; charset=ISO-8859-1;
format=flowed  40000000491b47260067438c 17626 < Content-Transfer-Encoding:
7bit
 40000000491b472600674774 17626 <
 40000000491b472600674774 17626 < nope
 40000000491b472600674b5c 17626 < .
@40000000491b4726009e60ec
simscan:[17628]:RELAYCLIENT:0.0106s:-:84.234.141.2:[EMAIL PROTECTED]:kjetil.
[EMAIL PROTECTED]:
 40000000491b4726011b35f4 17626 > 250 ok 1226524444 qp 17631
 40000000491b47260140e664 17626 < QUIT
 40000000491b4726014850d4 17626 > 221 blue.gnumen.net - Welcome to Qmail
Toaster Ver. 1.2 SMTP Server
@40000000491b4726014858a4 17626 > [EOF]




On Wed, Nov 12, 2008 at 8:59 PM, Jake Vickers <[EMAIL PROTECTED]> wrote:
> Kjetil Paulsen wrote:
>>
>> hints on which arguments to use and where to place this command? 
>> never used it before...
>>
>>
>
> You just plug it in your supervise file, and it logs details to the 
> standard
> logfile:
>
> #!/bin/sh
> QMAILDUID=`id -u vpopmail`
> NOFILESGID=`id -g vpopmail`
> MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
> BLACKLIST=`cat /var/qmail/control/blacklists` 
> SMTPD="/var/qmail/bin/qmail-smtpd"
> TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
> RBLSMTPD="/usr/bin/rblsmtpd"
> HOSTNAME=`hostname`
> VCHKPW="/home/vpopmail/bin/vchkpw"
> REQUIRE_AUTH=0
>
> exec /usr/bin/softlimit -m 22000000 \
>    /usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c "$MAXSMTPD" \
>    -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp \
>    /usr/bin/recordio \
>    $RBLSMTPD $BLACKLIST $SMTPD $VCHKPW /bin/true 2>&1
>
> (Notice the second to last line). You may also want to plug this in 
> your send's run file as well.
> It will generate a lot of logs, so you shouldn't need it plugged in long.
>
>
> ---------------------------------------------------------------------
>    QmailToaster hosted by: VR Hosted <http://www.vr.org>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: 
> [EMAIL PROTECTED]
>
>



--
/**
 kjetil
 */
---------------------------------------------------------
Kjetil H.Paulsen         | Movegen 35, 2770 Jaren, Norway
[EMAIL PROTECTED]           | Cell: +47 95138757
[EMAIL PROTECTED] | http://gofaster.no
---------------------------------------------------------
-Many secrets of art and nature
               are thought by the unlearned to be magical-

---------------------------------------------------------------------
     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