Re: [vchkpw] i am unable to send mail form Micro Soft Outlook {pop3}

2003-01-25 Thread george

 hello

 I am very new to the qmail just i configard today, I successs every
 thing but when i reboot i am able to receive mails form mail server, but
 i am unable to send the mail box and I am facing problam only form PoP3
 ie , when i try  to send a mail from M.S.Outlook or Smiliar program , it
 is giving error form out look i am getting this error

 The connection to the server has failed. Account: '192.168.102.2',
 Server: '192.168.102.2', Protocol: SMTP, Port: 25, Secure(SSL): No,
 Socket Error: 10061, Error Number: 0x800CCC0E

 but at /var/log/qmail/smtp/current file

 i am getting diffirent error

 the error is

 @40003e328be62e8f6d0c tcpserver: fatal: unable to bind: address
 already used @40003e328be730513594 tcpserver: fatal: unable to bind:
 address already used @40003e328be832638364 tcpserver: fatal: unable
 to bind: address already used @40003e328be933e560a4 tcpserver:
 fatal: unable to bind: address already used @40003e328bea35ac8c14
 tcpserver: fatal: unable to bind: address already used

maybe you try to start tcpserver from multiple places...
what pop3 are you using? pop3-ssl it is started ?

 but i did't use this ip any where , i am getting this error , please
 guide to solve my problem



 Mahesh















 -
 Do you Yahoo!?
 Yahoo! Mail Plus - Powerful. Affordable. Sign up now







[vchkpw] maildrop and bounced mails

2003-01-25 Thread qlist
Hi,

I use maildrop to filter incomming mails domainwide. Here is the config:
root@ns:~# cat /home/vpopmail/domains/intertet.net/.qmail-default
| maildrop mailfilter
-
root@ns:~# cat /home/vpopmail/domains/intertet.net/mailfilter
VPOP=| /home/vpopmail/bin/vdelivermail '' bounce-no-mailbox
VHOME=`/home/vpopmail/bin/vuserinfo -d $EXT@$HOST`

exception {
include $VHOME/.mailfilter
}
exception {
to $VPOP


Everything is normal when the user exists, but if say send a mail to a
non-existent user it bounces but a copy if this mail is saved in
/var/spool/mail/vpopmail in mbox format.
logs says:
@40003e328fd53440a7d4 new msg 16420
@40003e328fd53440b38c info msg 16420: bytes 606 from
[EMAIL PROTECTED] qp 30370 uid 1016
@40003e328fd5344ee074 starting delivery 16312: msg 16420 to local
[EMAIL PROTECTED]
@40003e328fd5344ef3fc status: local 1/10 remote 20/20
@40003e328fd5394d49e4 delivery 16312: failure:
Sorry,_no_mailbox_here_by_that_name._vpopmail_(#5.1.1)/
@40003e328fd5394d5d6c status: local 0/10 remote 20/20
@40003e328fd5396f8b6c bounce msg 16420 qp 30377
@40003e328fd5396f9ef4 end msg 16420
--

Do have any idea to solve this problem?
Ertan Yusufoglu





[vchkpw] Re: i am unable to send mail form Micro Soft Outlook {pop3}

2003-01-25 Thread Peter Palmreuther
Hello Mahesh,

On Saturday, January 25, 2003 at 2:11:43 PM you wrote:

 @40003e328bea35ac8c14 tcpserver: fatal: unable to bind: address already used

 but i did't use this ip any where

Make sure the line starting with 'smtp' in /etc/inetd.conf or and
SMTP-service in xinetd-configuration is disabled and you reloaded /
restarted (x)inetd. Seems your tcpserver-SMTP can't bind because a
different one already is running on port 25.

If in doubt use

 $netstat -tulpen |grep :25

and search for the LISTENing process that is either bind to

192.168.102.2:25 or 0.0.0.0:25

Somewhere at the end of the line regarding to that listener the PID
and process name is given. Make sure it is terminated. If it is
(x)inetd make sure to change it's configuration as mentioned above and
HUP or restart them, killing (x)inetd permanently ain't what you want.
-- 
Best regards
Peter Palmreuther





[vchkpw] Re: maildrop and bounced mails

2003-01-25 Thread Peter Palmreuther
Hello qlist,

On Saturday, January 25, 2003 at 2:42:10 PM you wrote:

 exception {
 to $VPOP
[...]
 Everything is normal when the user exists, but if say send a mail to a
 non-existent user it bounces but a copy if this mail is saved in
 /var/spool/mail/vpopmail in mbox format.

I don't use maildrop by myself, but your description sounds as if
maildrop don't recognize the 'to $VPOP' being a _final_ delivery.
Have you ever tried using an additional explicit exit statement?
-- 
Best regards
Peter Palmreuther





Re: [vchkpw] maildrop and bounced mails

2003-01-25 Thread Dzuy Nguyen
Try

if($EXITCODE == 100)
{
exit
}

after the VPOP exception block.

qlist wrote:

Hi,

I use maildrop to filter incomming mails domainwide. Here is the config:
root@ns:~# cat /home/vpopmail/domains/intertet.net/.qmail-default
| maildrop mailfilter
-
root@ns:~# cat /home/vpopmail/domains/intertet.net/mailfilter
VPOP=| /home/vpopmail/bin/vdelivermail '' bounce-no-mailbox
VHOME=`/home/vpopmail/bin/vuserinfo -d $EXT@$HOST`

exception {
include $VHOME/.mailfilter
}
exception {
to $VPOP


Everything is normal when the user exists, but if say send a mail to a
non-existent user it bounces but a copy if this mail is saved in
/var/spool/mail/vpopmail in mbox format.
logs says:
@40003e328fd53440a7d4 new msg 16420
@40003e328fd53440b38c info msg 16420: bytes 606 from
[EMAIL PROTECTED] qp 30370 uid 1016
@40003e328fd5344ee074 starting delivery 16312: msg 16420 to local
[EMAIL PROTECTED]
@40003e328fd5344ef3fc status: local 1/10 remote 20/20
@40003e328fd5394d49e4 delivery 16312: failure:
Sorry,_no_mailbox_here_by_that_name._vpopmail_(#5.1.1)/
@40003e328fd5394d5d6c status: local 0/10 remote 20/20
@40003e328fd5396f8b6c bounce msg 16420 qp 30377
@40003e328fd5396f9ef4 end msg 16420
--

Do have any idea to solve this problem?
Ertan Yusufoglu