RE: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?

2003-08-14 Thread Clayton Weise
I think what needs to be understood here is that vpopmail, qmail, and
autoturn (serialmail) are not really all related.  The only common bond they
share is qmail itself.

qmail is the mail server that runs the show, and all it's doing is
delivering emails.  It decides how to, based on it's control files.  In this
case, we're talking about the rcpthosts (and possibly morercpthosts) and
virtualdomains control files.  As well as the /var/qmail/users/assign file,
which gets compiled into the /var/qmail/users/cdb file.  Here's the
breakdown of how delivery works with qmail and where autoturn or vpopmail
come into play.  It should help you to better diagnose where your problem is
coming from.

SMTP connection opens up to your server for a domain you handle, let's say,
example.com .  qmail-smtpd answers the smtp connection and email for
example.com.  It checks if example.com is in rcpthosts, if it is, it accepts
relay for it.  It then checks the smtproutes file for an artificial smtp
route, and then the virtualdomains file.  In the virtualdomains file you
have something that looks like this (if you're using vpopmail):

example.com:example.com

Seems simple enough.  The first part is the FQDN itself, the second part is
the user that it belongs to.  This user is defined in the
/var/qmail/users/assign file, but qmail actually reads the cdb file.  You
build the cdb file with the /var/qmail/bin/qmail-newu program.  Inside your
assign file you have something that looks like this:

+example.com-:example.com:89:89:/home/vpopmail/domains/example.com:-::

The + in the begging signifies a catch-all account for the domain.  qmail
then looks in /home/vpopmail/domains/example.com for a .qmail-default file.
If it finds one, it delivers to whatever that file instructs.  This
typically will contain the following:

| /home/vpopmail/bin/vdelivermail '' bounce-no-mailbox

That command pipes it over to vdelivermail, which delivers the email..and
voila we have email.

Ok.. now where do we fit in serialmail?  Well, in the virtualdomains file,
instead of assigning the domain to the example.com user in the assign
file, we'll give it to autoturn so your virtualdomains file will look like
this instead:

example.com:autoturn-1.2.3.4

Notice how we've assigned it to autoturn, but a specific autoturn user
(1.2.3.4).  1.2.3.4 would be the IP address of the mail server that you're
holding email for.  This MUST be a static IP address.  Inside your assign
file, you have a line that looks like this for autoturn:

+autoturn-:qmaild:82:81:/var/qmail/autoturn:-::

That tells qmail that the autoturn user also is a catch-all user, and that
it lives in /var/qmail/autoturn.  qmail then takes the email destined for
example.com and tries to deliver it to /var/qmail/autoturn.  Inside this
folder, you'd create a .qmail-1:2:3:4 file that looks like this (note they
are colons and not periods in the file name):

./1.2.3.4/

This tells qmail that anything destined for the autoturn-1.2.3.4 user (aka,
anything for example.com) should be delivered to
/var/qmail/autoturn/./1.2.3.4/

The 1.2.3.4 directory is created with the /var/qmail/bin/maildirmake
program.  Just type:

/var/qmail/bin/maildirmake /var/qmail/autoturn/1.2.3.4

Then chown it as the qmaild user by doing:
chown -R qmaild:nofiles /var/qmail/autoturn/1.2.3.4

Hope that helps to clear things up.

-Clayton

-Original Message-
From: Evren Yurtesen [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 04, 2003 10:31 PM
To: Devendra Singh
Cc: [EMAIL PROTECTED]
Subject: Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?


I think you should explain what you did and where you failed and what is
going wrong etc. Now you cant expect us to write you a manual for this
only for you. At least nobody would do that for free only for one
person's benefit. Then again after all that work, you might say that you
still do not understand etc. So it is a difficult situation for all of us.
We do not know your exact problem. We can not tell you how to fix it.

We can guide you but you must go through the door yourself :)

Here is my qmail-smtpd run file which was working when I used serialmail
if it is any help. This was the most difficult part for me.

---
exec /usr/local/bin/tcpserver -p -R -x /usr/local/vpopmail/etc/tcp.smtp.cdb
\
-u82 -g81 -v -c100 0 smtp \
  sh -c '
/var/qmail/bin/qmail-smtpd
cd /var/qmail/autoturn
exec setlock -nx $TCPREMOTEIP/seriallock \
maildirsmtp $TCPREMOTEIP autoturn-$TCPREMOTEIP- $TCPREMOTEIP
AutoTURN
  ' \
`hostname --fqdn` /usr/local/vpopmail/bin/vchkpw /usr/bin/true 21

---


On Tue, 5 Aug 2003, Devendra Singh wrote:

 At 04/08/03 06:27 (+0300), you wrote:
 
 Yes you can use serialmail for some domains and for some not
 please just read the readme files which come with serialmail

Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?

2003-08-14 Thread Evren Yurtesen
I think you should explain what you did and where you failed and what is
going wrong etc. Now you cant expect us to write you a manual for this
only for you. At least nobody would do that for free only for one
person's benefit. Then again after all that work, you might say that you
still do not understand etc. So it is a difficult situation for all of us.
We do not know your exact problem. We can not tell you how to fix it.

We can guide you but you must go through the door yourself :)

Here is my qmail-smtpd run file which was working when I used serialmail
if it is any help. This was the most difficult part for me.
---
exec /usr/local/bin/tcpserver -p -R -x /usr/local/vpopmail/etc/tcp.smtp.cdb \
-u82 -g81 -v -c100 0 smtp \
  sh -c '
/var/qmail/bin/qmail-smtpd
cd /var/qmail/autoturn
exec setlock -nx $TCPREMOTEIP/seriallock \
maildirsmtp $TCPREMOTEIP autoturn-$TCPREMOTEIP- $TCPREMOTEIP AutoTURN
  ' \
`hostname --fqdn` /usr/local/vpopmail/bin/vchkpw /usr/bin/true 21
---


On Tue, 5 Aug 2003, Devendra Singh wrote:

 At 04/08/03 06:27 (+0300), you wrote:
 
 Yes you can use serialmail for some domains and for some not
 please just read the readme files which come with serialmail.
 they have all the elaboration you need. I have made an excellent working
 setup from the readme file in a few hours only. There was even a working
 example if I remember right.
 
 Evren
 
 Dear vpopmail experts,
 
 I did read the Readme and Install many times. But could not understand 
 how to mix and match the Serialmail with vpopmail. I am not a qmail / 
 vpopmail guru.
 
 If anyone has done this before, please help me out. But I was able to 
 configure VODMR (ATRN) and tested it working.
 
 Thanks in anticipation.
 
 Devendra Singh
 




RE: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?

2003-08-07 Thread Devendra Singh
At 05/08/03 13:07 (-0700), Clayton Weise wrote:

I think what needs to be understood here is that vpopmail, qmail, and
autoturn (serialmail) are not really all related.  The only common bond they
share is qmail itself.
qmail is the mail server that runs the show, and all it's doing is
delivering emails.  It decides how to, based on it's control files.  In this
case, we're talking about the rcpthosts (and possibly morercpthosts) and
virtualdomains control files.  As well as the /var/qmail/users/assign file,
which gets compiled into the /var/qmail/users/cdb file.  Here's the
breakdown of how delivery works with qmail and where autoturn or vpopmail
come into play.  It should help you to better diagnose where your problem is
coming from.
SMTP connection opens up to your server for a domain you handle, let's say,
example.com .  qmail-smtpd answers the smtp connection and email for
example.com.  It checks if example.com is in rcpthosts, if it is, it accepts
relay for it.  It then checks the smtproutes file for an artificial smtp
route, and then the virtualdomains file.  In the virtualdomains file you
have something that looks like this (if you're using vpopmail):
example.com:example.com

Seems simple enough.  The first part is the FQDN itself, the second part is
the user that it belongs to.  This user is defined in the
/var/qmail/users/assign file, but qmail actually reads the cdb file.  You
build the cdb file with the /var/qmail/bin/qmail-newu program.  Inside your
assign file you have something that looks like this:
+example.com-:example.com:89:89:/home/vpopmail/domains/example.com:-::

The + in the begging signifies a catch-all account for the domain.  qmail
then looks in /home/vpopmail/domains/example.com for a .qmail-default file.
If it finds one, it delivers to whatever that file instructs.  This
typically will contain the following:
| /home/vpopmail/bin/vdelivermail '' bounce-no-mailbox

That command pipes it over to vdelivermail, which delivers the email..and
voila we have email.
Ok.. now where do we fit in serialmail?  Well, in the virtualdomains file,
instead of assigning the domain to the example.com user in the assign
file, we'll give it to autoturn so your virtualdomains file will look like
this instead:
example.com:autoturn-1.2.3.4

Notice how we've assigned it to autoturn, but a specific autoturn user
(1.2.3.4).  1.2.3.4 would be the IP address of the mail server that you're
holding email for.  This MUST be a static IP address.  Inside your assign
file, you have a line that looks like this for autoturn:
+autoturn-:qmaild:82:81:/var/qmail/autoturn:-::

That tells qmail that the autoturn user also is a catch-all user, and that
it lives in /var/qmail/autoturn.  qmail then takes the email destined for
example.com and tries to deliver it to /var/qmail/autoturn.  Inside this
folder, you'd create a .qmail-1:2:3:4 file that looks like this (note they
are colons and not periods in the file name):
./1.2.3.4/

This tells qmail that anything destined for the autoturn-1.2.3.4 user (aka,
anything for example.com) should be delivered to
/var/qmail/autoturn/./1.2.3.4/
The 1.2.3.4 directory is created with the /var/qmail/bin/maildirmake
program.  Just type:
/var/qmail/bin/maildirmake /var/qmail/autoturn/1.2.3.4

Then chown it as the qmaild user by doing:
chown -R qmaild:nofiles /var/qmail/autoturn/1.2.3.4
Hope that helps to clear things up.

-Clayton

-Original Message-
From: Evren Yurtesen [mailto:[EMAIL PROTECTED]
Sent: Monday, August 04, 2003 10:31 PM
To: Devendra Singh
Cc: [EMAIL PROTECTED]
Subject: Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?
I think you should explain what you did and where you failed and what is
going wrong etc. Now you cant expect us to write you a manual for this
only for you. At least nobody would do that for free only for one
person's benefit. Then again after all that work, you might say that you
still do not understand etc. So it is a difficult situation for all of us.
We do not know your exact problem. We can not tell you how to fix it.
We can guide you but you must go through the door yourself :)

Here is my qmail-smtpd run file which was working when I used serialmail
if it is any help. This was the most difficult part for me.

---
exec /usr/local/bin/tcpserver -p -R -x /usr/local/vpopmail/etc/tcp.smtp.cdb
\
-u82 -g81 -v -c100 0 smtp \
  sh -c '
/var/qmail/bin/qmail-smtpd
cd /var/qmail/autoturn
exec setlock -nx $TCPREMOTEIP/seriallock \
maildirsmtp $TCPREMOTEIP autoturn-$TCPREMOTEIP- $TCPREMOTEIP
AutoTURN
  ' \
`hostname --fqdn` /usr/local/vpopmail/bin/vchkpw /usr/bin/true 21

---
On Tue, 5 Aug 2003, Devendra Singh wrote:

 At 04/08/03 06:27 (+0300), you wrote:

 Yes you can use serialmail for some domains and for some not
 please just read the readme files which

RE: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?

2003-08-05 Thread Evren Yurtesen
I think this is waste of time. The AUTOTURN file in serialmail
distribution already explains the same thing in a little different way.
In 7 easy steps actually. If you cant figure it from that file how to run
serialmail at all. Then you are in big big trouble. I mean, when I did
this first time it was enough to just copy paste from the file and change
few things. If there is anything easier in this life than doing little
copy paste :)

But quite good documentation anyhow. Clayton, perhaps you should put this
text to web :) I enjoyed reading it.

Evren


On Tue, 5 Aug 2003, Clayton Weise wrote:

 I think what needs to be understood here is that vpopmail, qmail, and
 autoturn (serialmail) are not really all related.  The only common bond they
 share is qmail itself.
 
 qmail is the mail server that runs the show, and all it's doing is
 delivering emails.  It decides how to, based on it's control files.  In this
 case, we're talking about the rcpthosts (and possibly morercpthosts) and
 virtualdomains control files.  As well as the /var/qmail/users/assign file,
 which gets compiled into the /var/qmail/users/cdb file.  Here's the
 breakdown of how delivery works with qmail and where autoturn or vpopmail
 come into play.  It should help you to better diagnose where your problem is
 coming from.
 
 SMTP connection opens up to your server for a domain you handle, let's say,
 example.com .  qmail-smtpd answers the smtp connection and email for
 example.com.  It checks if example.com is in rcpthosts, if it is, it accepts
 relay for it.  It then checks the smtproutes file for an artificial smtp
 route, and then the virtualdomains file.  In the virtualdomains file you
 have something that looks like this (if you're using vpopmail):
 
 example.com:example.com
 
 Seems simple enough.  The first part is the FQDN itself, the second part is
 the user that it belongs to.  This user is defined in the
 /var/qmail/users/assign file, but qmail actually reads the cdb file.  You
 build the cdb file with the /var/qmail/bin/qmail-newu program.  Inside your
 assign file you have something that looks like this:
 
 +example.com-:example.com:89:89:/home/vpopmail/domains/example.com:-::
 
 The + in the begging signifies a catch-all account for the domain.  qmail
 then looks in /home/vpopmail/domains/example.com for a .qmail-default file.
 If it finds one, it delivers to whatever that file instructs.  This
 typically will contain the following:
 
 | /home/vpopmail/bin/vdelivermail '' bounce-no-mailbox
 
 That command pipes it over to vdelivermail, which delivers the email..and
 voila we have email.
 
 Ok.. now where do we fit in serialmail?  Well, in the virtualdomains file,
 instead of assigning the domain to the example.com user in the assign
 file, we'll give it to autoturn so your virtualdomains file will look like
 this instead:
 
 example.com:autoturn-1.2.3.4
 
 Notice how we've assigned it to autoturn, but a specific autoturn user
 (1.2.3.4).  1.2.3.4 would be the IP address of the mail server that you're
 holding email for.  This MUST be a static IP address.  Inside your assign
 file, you have a line that looks like this for autoturn:
 
 +autoturn-:qmaild:82:81:/var/qmail/autoturn:-::
 
 That tells qmail that the autoturn user also is a catch-all user, and that
 it lives in /var/qmail/autoturn.  qmail then takes the email destined for
 example.com and tries to deliver it to /var/qmail/autoturn.  Inside this
 folder, you'd create a .qmail-1:2:3:4 file that looks like this (note they
 are colons and not periods in the file name):
 
 ./1.2.3.4/
 
 This tells qmail that anything destined for the autoturn-1.2.3.4 user (aka,
 anything for example.com) should be delivered to
 /var/qmail/autoturn/./1.2.3.4/
 
 The 1.2.3.4 directory is created with the /var/qmail/bin/maildirmake
 program.  Just type:
 
 /var/qmail/bin/maildirmake /var/qmail/autoturn/1.2.3.4
 
 Then chown it as the qmaild user by doing:
 chown -R qmaild:nofiles /var/qmail/autoturn/1.2.3.4
 
 Hope that helps to clear things up.
 
 -Clayton
 
 -Original Message-
 From: Evren Yurtesen [mailto:[EMAIL PROTECTED] 
 Sent: Monday, August 04, 2003 10:31 PM
 To: Devendra Singh
 Cc: [EMAIL PROTECTED]
 Subject: Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?
 
 
 I think you should explain what you did and where you failed and what is
 going wrong etc. Now you cant expect us to write you a manual for this
 only for you. At least nobody would do that for free only for one
 person's benefit. Then again after all that work, you might say that you
 still do not understand etc. So it is a difficult situation for all of us.
 We do not know your exact problem. We can not tell you how to fix it.
 
 We can guide you but you must go through the door yourself :)
 
 Here is my qmail-smtpd run file which was working when I used serialmail
 if it is any help. This was the most difficult part for me

Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?

2003-08-04 Thread Evren Yurtesen
Yes you can use serialmail for some domains and for some not
please just read the readme files which come with serialmail.
they have all the elaboration you need. I have made an excellent working
setup from the readme file in a few hours only. There was even a working
example if I remember right.

Evren


On Sat, 2 Aug 2003, Devendra Singh wrote:

 
 Date: Fri, 1 Aug 2003 14:00:00 +0300 (WET)
 From: Evren Yurtesen [EMAIL PROTECTED]
 To: Devendra Singh [EMAIL PROTECTED]
 cc: [EMAIL PROTECTED], Sunil Soni [EMAIL PROTECTED]
 X-Filtered-With: RenAttach 1.1.1 (www.pc-tools.net) - goodlist filter
 Subject: Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?
 
 
 you shouldnt have a domain in vpopmail when you use serialmail...
 so you can delete the lines.
 qmail will queue all the email which come to a domain into the
 autoturn directory you give to it, the client should have a static ip
 address which will connect to qmail-smtp, when the client connects,
 serialmail knows this client from the autoturn directory and will push all
 the emails from that clients autoturn directory to the client. etc.
 This approach has the drawback of queing mails for users which do not
 exist.
 
 Evren
 
 On Fri, 1 Aug 2003, Devendra Singh wrote:
 
   Hi !
  
   I have Installed qmail 1.03+vpopmail 5.3.20+mysql with SMTP-AUTH patch 
  with
   several Virtual Domains. I have also Installed serialmail.
  
   But, How do I invoke the serialmail for one domain.
  
   The AUTOTURN documentation says to put the line:
  
+autoturn-:qmaild:7770:2108:/var/qmail/autoturn:-::
  
   into the file /var/qmail/users/assign and asks to run qmail-pw2u
  
   but I already have following into the file /var/qmail/users/assign
  
   
  +del3.intermesh.net-:del3.intermesh.net:89:89:/home/vpopmail/domains/del3.intermesh.net:-::
   
  +del4.intermesh.net-:del4.intermesh.net:89:89:/home/vpopmail/domains/del4.intermesh.net:-::
   .
  
   How do I make the serialmail functional for the del4.intermesh.net
   (remember that I also have functional SMTP-AUTH Patch) ?
  
   My existing /var/qmail/supervise/qmail-smtpd/run is as below
  
 
 Does that mean that i have to remove all entries from the 
 /var/qmail/users/assign ? Would I be able to use autoturn for some 
 domains and normal pop3 / imap for others ?
 
 If anyone could elaborate a further more !
 
 What's your opinion about an alternative called vodmr from 
 http://romana.now.ie/vodmr ?
 
 




Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?

2003-08-04 Thread Devendra Singh
At 04/08/03 06:27 (+0300), you wrote:

Yes you can use serialmail for some domains and for some not
please just read the readme files which come with serialmail.
they have all the elaboration you need. I have made an excellent working
setup from the readme file in a few hours only. There was even a working
example if I remember right.
Evren
Dear vpopmail experts,

I did read the Readme and Install many times. But could not understand 
how to mix and match the Serialmail with vpopmail. I am not a qmail / 
vpopmail guru.

If anyone has done this before, please help me out. But I was able to 
configure VODMR (ATRN) and tested it working.

Thanks in anticipation.

Devendra Singh

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.506 / Virus Database: 303 - Release Date: 01/08/03


Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?

2003-08-03 Thread Devendra Singh

Date: Fri, 1 Aug 2003 14:00:00 +0300 (WET)
From: Evren Yurtesen [EMAIL PROTECTED]
To: Devendra Singh [EMAIL PROTECTED]
cc: [EMAIL PROTECTED], Sunil Soni [EMAIL PROTECTED]
X-Filtered-With: RenAttach 1.1.1 (www.pc-tools.net) - goodlist filter
Subject: Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?
you shouldnt have a domain in vpopmail when you use serialmail...
so you can delete the lines.
qmail will queue all the email which come to a domain into the
autoturn directory you give to it, the client should have a static ip
address which will connect to qmail-smtp, when the client connects,
serialmail knows this client from the autoturn directory and will push all
the emails from that clients autoturn directory to the client. etc.
This approach has the drawback of queing mails for users which do not
exist.
Evren

On Fri, 1 Aug 2003, Devendra Singh wrote:

 Hi !

 I have Installed qmail 1.03+vpopmail 5.3.20+mysql with SMTP-AUTH patch 
with
 several Virtual Domains. I have also Installed serialmail.

 But, How do I invoke the serialmail for one domain.

 The AUTOTURN documentation says to put the line:

  +autoturn-:qmaild:7770:2108:/var/qmail/autoturn:-::

 into the file /var/qmail/users/assign and asks to run qmail-pw2u

 but I already have following into the file /var/qmail/users/assign

 
+del3.intermesh.net-:del3.intermesh.net:89:89:/home/vpopmail/domains/del3.intermesh.net:-::
 
+del4.intermesh.net-:del4.intermesh.net:89:89:/home/vpopmail/domains/del4.intermesh.net:-::
 .

 How do I make the serialmail functional for the del4.intermesh.net
 (remember that I also have functional SMTP-AUTH Patch) ?

 My existing /var/qmail/supervise/qmail-smtpd/run is as below

Does that mean that i have to remove all entries from the 
/var/qmail/users/assign ? Would I be able to use autoturn for some 
domains and normal pop3 / imap for others ?

If anyone could elaborate a further more !

What's your opinion about an alternative called vodmr from 
http://romana.now.ie/vodmr ?


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.506 / Virus Database: 303 - Release Date: 01/08/03


[vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?

2003-08-01 Thread Devendra Singh
Hi !

I have Installed qmail 1.03+vpopmail 5.3.20+mysql with SMTP-AUTH patch with 
several Virtual Domains. I have also Installed serialmail.

But, How do I invoke the serialmail for one domain.

The AUTOTURN documentation says to put the line:

+autoturn-:qmaild:7770:2108:/var/qmail/autoturn:-::

into the file /var/qmail/users/assign and asks to run qmail-pw2u

but I already have following into the file /var/qmail/users/assign

+del3.intermesh.net-:del3.intermesh.net:89:89:/home/vpopmail/domains/del3.intermesh.net:-::
+del4.intermesh.net-:del4.intermesh.net:89:89:/home/vpopmail/domains/del4.intermesh.net:-::
.
How do I make the serialmail functional for the del4.intermesh.net 
(remember that I also have functional SMTP-AUTH Patch) ?

My existing /var/qmail/supervise/qmail-smtpd/run is as below

#!/bin/sh
# when QMAILQUEUE is set, all mail will be sent to the nominated script
echo 'Starting qmail-smtpd...'
QMAILQUEUE=/var/qmail/bin/qmail-scanner-queue.pl export QMAILQUEUE
QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
VPOPMAILUID=`id -u vpopmail`
VPOPMAILGUID=`id -g vpopmail`
# softlimit needs to be set at something large such as 1500
# to allow virusscanning software to run successfully
exec /usr/local/bin/softlimit -m 1500 \
/usr/local/bin/tcpserver -H -l0\
-v -x /etc/tcp.smtp.cdb \
  -c 512 -R -u $VPOPMAILUID -g $VPOPMAILGUID 0 smtp \
/usr/local/bin/rblsmtpd -b -C \
  -r 'relays.ordb.org:Your message was rejected because the mail server 
you use is configured to allow OPEN RELAY - More detailed information 
regarding this problem is available from 
http://www.ordb.org/lookup/?%IP%http://www.ordb.org/lookup/?%IP% - Please 
forward this error through to your email server support staff for easy 
resolution.' \
  -r 'inputs.relays.osirusoft.com:Your message was rejected because the 
mail server you use is either configured to allow OPEN RELAY - More 
information regarding this problems is available at
http://relays.osirusoft.com/cgi-bin/rbcheck.cgi?addr=%IP%http://relays.osirusoft.com/cgi-bin/rbcheck.cgi?addr=%IP% 
- Please forward this error to your email server support staff for 
resolution.' \
  -r 'proxies.relays.monkeys.com:Your message was rejected because the 
message was sent from an OPEN PROXY - More information regarding this 
problems is available 
at 
http://www.monkeys.com/upl/listed-ip-0.cgi?ip=%IP%http://www.monkeys.com/upl/listed-ip-0.cgi?ip=%IP% 
- Please forward this error to your email server support staff for 
resolution.' \
/var/qmail/bin/qmail-smtpd del3.intermesh.net /home/vpopmail/bin/vchkpw 
/bin/true 

I am posting this to the list with lot of head scratching, in anticipation.

Thanks in advance !

__
 Devendra Singh
 IndiaMART InterMESH Limited
 B-1, Sector 8, Noida, UP - 201301, India
 Voice : +91-120-2543945, 2543946, 2543947
 Fax: +91-120-2543943
 Mobile: +91-9818342483
 http://www.indiamart.com
 http://www.indiangiftsportal.com
  __ 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.484 / Virus Database: 282 - Release Date: 27/05/03


Re: [vchkpw] ETRN / serialmail-AUTOTURN with vpopmail - How to ?

2003-08-01 Thread Evren Yurtesen
you shouldnt have a domain in vpopmail when you use serialmail...
so you can delete the lines.
qmail will queue all the email which come to a domain into the
autoturn directory you give to it, the client should have a static ip
address which will connect to qmail-smtp, when the client connects,
serialmail knows this client from the autoturn directory and will push all
the emails from that clients autoturn directory to the client. etc.
This approach has the drawback of queing mails for users which do not
exist.

Evren

On Fri, 1 Aug 2003, Devendra Singh wrote:

 Hi !
 
 I have Installed qmail 1.03+vpopmail 5.3.20+mysql with SMTP-AUTH patch with 
 several Virtual Domains. I have also Installed serialmail.
 
 But, How do I invoke the serialmail for one domain.
 
 The AUTOTURN documentation says to put the line:
 
  +autoturn-:qmaild:7770:2108:/var/qmail/autoturn:-::
 
 into the file /var/qmail/users/assign and asks to run qmail-pw2u
 
 but I already have following into the file /var/qmail/users/assign
 
 +del3.intermesh.net-:del3.intermesh.net:89:89:/home/vpopmail/domains/del3.intermesh.net:-::
 +del4.intermesh.net-:del4.intermesh.net:89:89:/home/vpopmail/domains/del4.intermesh.net:-::
 .
 
 How do I make the serialmail functional for the del4.intermesh.net 
 (remember that I also have functional SMTP-AUTH Patch) ?
 
 My existing /var/qmail/supervise/qmail-smtpd/run is as below
 
 
 #!/bin/sh
 # when QMAILQUEUE is set, all mail will be sent to the nominated script
 echo 'Starting qmail-smtpd...'
 QMAILQUEUE=/var/qmail/bin/qmail-scanner-queue.pl export QMAILQUEUE
 
 QMAILDUID=`id -u qmaild`
 NOFILESGID=`id -g qmaild`
 
 VPOPMAILUID=`id -u vpopmail`
 VPOPMAILGUID=`id -g vpopmail`
 
 # softlimit needs to be set at something large such as 1500
 # to allow virusscanning software to run successfully
 
 exec /usr/local/bin/softlimit -m 1500 \
 /usr/local/bin/tcpserver -H -l0\
 -v -x /etc/tcp.smtp.cdb \
-c 512 -R -u $VPOPMAILUID -g $VPOPMAILGUID 0 smtp \
 /usr/local/bin/rblsmtpd -b -C \
-r 'relays.ordb.org:Your message was rejected because the mail server 
 you use is configured to allow OPEN RELAY - More detailed information 
 regarding this problem is available from 
 http://www.ordb.org/lookup/?%IP%http://www.ordb.org/lookup/?%IP% - Please 
 forward this error through to your email server support staff for easy 
 resolution.' \
-r 'inputs.relays.osirusoft.com:Your message was rejected because the 
 mail server you use is either configured to allow OPEN RELAY - More 
 information regarding this problems is available at
 http://relays.osirusoft.com/cgi-bin/rbcheck.cgi?addr=%IP%http://relays.osirusoft.com/cgi-bin/rbcheck.cgi?addr=%IP%
  
 - Please forward this error to your email server support staff for 
 resolution.' \
-r 'proxies.relays.monkeys.com:Your message was rejected because the 
 message was sent from an OPEN PROXY - More information regarding this 
 problems is available 
 at 
 http://www.monkeys.com/upl/listed-ip-0.cgi?ip=%IP%http://www.monkeys.com/upl/listed-ip-0.cgi?ip=%IP%
  
 - Please forward this error to your email server support staff for 
 resolution.' \
 /var/qmail/bin/qmail-smtpd del3.intermesh.net /home/vpopmail/bin/vchkpw 
 /bin/true 
 
 I am posting this to the list with lot of head scratching, in anticipation.
 
 Thanks in advance !
 
 
 __
   Devendra Singh
   IndiaMART InterMESH Limited
   B-1, Sector 8, Noida, UP - 201301, India
   Voice : +91-120-2543945, 2543946, 2543947
   Fax: +91-120-2543943
   Mobile: +91-9818342483
   http://www.indiamart.com
   http://www.indiangiftsportal.com
__