[vchkpw] Unable to access mail using POP and domain issues with vpopmail

2003-09-02 Thread Balaji NJL
Hi All,

At last third time seemed to be lucky for me. i was
able to install qmail. this time i followed the steps
described in this page
http://hibrida.interaksi.web.id/man/qmail/step-dnata.html#QMAIL
and i literally did a cut and paste of all commands.
My qmail-smtpd is working fine, vpopmail, qmailadmin,
sqwebmail is also working fine. i am able to send and
receive mails. i am facing few issues. 

this is my setup. My mail server name is
mail.ojoobala.com and i want to receive mails for
ojoobala.com too. So i added both of them in rcpthosts
file and added ojoobala.com in locals file.

rcpthosts
mail.ojoobala.com
ojoobala.com

locals
ojoobala.com


i configured vpopmail as

./vadddomain mail.ojoobala.com

So when i send mail to [EMAIL PROTECTED] it goes
into directory
/home/vpopmail/mail.ojoobala.com/name/current. And
when i send it to [EMAIL PROTECTED] it goes into
/home/name/Mailbox. Due to this i am only able to
access [EMAIL PROTECTED] via sqwebmail. sqwebmail
doesnt even authenticate [EMAIL PROTECTED] it just
authenticates [EMAIL PROTECTED] i want to access
both [EMAIL PROTECTED] and [EMAIL PROTECTED] via
sqwebmail. How can do this.

Secondly i am unable to access my mails using POP
outlook express (Dont scream, pl). when i configure
Outlook using [EMAIL PROTECTED] the error message
that i am getting is '$home/Mailbox' doesnt exist. But
when i try with [EMAIL PROTECTED] it fails in
authentication.

my pop3 run script is

exec /usr/local/bin/softlimit -m 200 \
/usr/local/bin/tcpserver -v -R -H -l 0 0 110
/var/qmail/bin/qmail-popup \
mail.oojoobala.com /home/vpopmail/bin/vchkpw
/var/qmail/bin/qmail-pop3d Maildir 21

How can i acess my both accounts
[EMAIL PROTECTED] and [EMAIL PROTECTED] using
POP.

thanks a lot,
-Balaji



__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com



RE: [vchkpw] Unable to access mail using POP and domain issues with vpopmail

2003-09-02 Thread Shane Chrisp
Hi Balaji,

It doesn't look like you have your popd server running as the vpopmail user.
Try:

#!/bin/sh
VPOPMAILUID=`id -u vpopmail`
VPOPMAILGID=`id -g vpopmail`

exec /usr/local/bin/softlimit -m 200 \
/usr/local/bin/tcpserver -v -R -H -l 0 \
-u$VPOPMAILUID -g$VPOPMAILGID 0 110 0 110 \
/var/qmail/bin/qmail-popup \
mail.oojoobala.com /home/vpopmail/bin/vchkpw
/var/qmail/bin/qmail-pop3d Maildir 21


Check that the home dir's have been created with the correct permissions of
vpopmail:vchkpw as well.

Regarding your other issue, you can use valiasdomain to link the 2 domains 
together, however, it is more common to setup your domain name as only the
domain part. As long as you MX records are correct, the email will send the
mail to that system. eg: for Bind

ojoobala.com.   IN  MX  10  mail.ojoobala.com.

tells the internet to send any mail for ojoobala.com to the host
mail.ojoobala.com.

Hope this helps.

Shane

-Original Message-
From: Balaji NJL [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 3 September 2003 1:04 AM
To: [EMAIL PROTECTED]
Subject: [vchkpw] Unable to access mail using POP and domain 
issues with vpopmail


Hi All,

At last third time seemed to be lucky for me. i was
able to install qmail. this time i followed the steps
described in this page
http://hibrida.interaksi.web.id/man/qmail/step-dnata.html#QMAIL
and i literally did a cut and paste of all commands.
My qmail-smtpd is working fine, vpopmail, qmailadmin,
sqwebmail is also working fine. i am able to send and
receive mails. i am facing few issues. 

this is my setup. My mail server name is
mail.ojoobala.com and i want to receive mails for
ojoobala.com too. So i added both of them in rcpthosts
file and added ojoobala.com in locals file.

rcpthosts
mail.ojoobala.com
ojoobala.com

locals
ojoobala.com


i configured vpopmail as

./vadddomain mail.ojoobala.com

So when i send mail to [EMAIL PROTECTED] it goes
into directory
/home/vpopmail/mail.ojoobala.com/name/current. And
when i send it to [EMAIL PROTECTED] it goes into
/home/name/Mailbox. Due to this i am only able to
access [EMAIL PROTECTED] via sqwebmail. sqwebmail
doesnt even authenticate [EMAIL PROTECTED] it just
authenticates [EMAIL PROTECTED] i want to access
both [EMAIL PROTECTED] and [EMAIL PROTECTED] via
sqwebmail. How can do this.

Secondly i am unable to access my mails using POP
outlook express (Dont scream, pl). when i configure
Outlook using [EMAIL PROTECTED] the error message
that i am getting is '$home/Mailbox' doesnt exist. But
when i try with [EMAIL PROTECTED] it fails in
authentication.

my pop3 run script is

exec /usr/local/bin/softlimit -m 200 \
/usr/local/bin/tcpserver -v -R -H -l 0 0 110
/var/qmail/bin/qmail-popup \
mail.oojoobala.com /home/vpopmail/bin/vchkpw
/var/qmail/bin/qmail-pop3d Maildir 21

How can i acess my both accounts
[EMAIL PROTECTED] and [EMAIL PROTECTED] using
POP.

thanks a lot,
-Balaji



__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com







RE: [vchkpw] Unable to access mail using POP and domain issues with vpopmail

2003-09-02 Thread Shane Chrisp
Err, typo, get rid of the extra 0 110..

#!/bin/sh
VPOPMAILUID=`id -u vpopmail`
VPOPMAILGID=`id -g vpopmail`

exec /usr/local/bin/softlimit -m 200 \
/usr/local/bin/tcpserver -v -R -H -l 0 \
-u$VPOPMAILUID -g$VPOPMAILGID 0 110 \
/var/qmail/bin/qmail-popup \
mail.oojoobala.com /home/vpopmail/bin/vchkpw
/var/qmail/bin/qmail-pop3d Maildir 21

Shane

-Original Message-
From: Shane Chrisp [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 3 September 2003 1:18 AM
To: [EMAIL PROTECTED]
Subject: RE: [vchkpw] Unable to access mail using POP and 
domain issues with vpopmail


Hi Balaji,

It doesn't look like you have your popd server running as the 
vpopmail user.
Try:

#!/bin/sh
VPOPMAILUID=`id -u vpopmail`
VPOPMAILGID=`id -g vpopmail`

exec /usr/local/bin/softlimit -m 200 \
/usr/local/bin/tcpserver -v -R -H -l 0 \
-u$VPOPMAILUID -g$VPOPMAILGID 0 110 0 110 \
/var/qmail/bin/qmail-popup \
mail.oojoobala.com /home/vpopmail/bin/vchkpw
/var/qmail/bin/qmail-pop3d Maildir 21


Check that the home dir's have been created with the correct 
permissions of
vpopmail:vchkpw as well.

Regarding your other issue, you can use valiasdomain to link 
the 2 domains 
together, however, it is more common to setup your domain name 
as only the
domain part. As long as you MX records are correct, the email 
will send the
mail to that system. eg: for Bind

ojoobala.com.  IN  MX  10  mail.ojoobala.com.

tells the internet to send any mail for ojoobala.com to the host
mail.ojoobala.com.

Hope this helps.

Shane

-Original Message-
From: Balaji NJL [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 3 September 2003 1:04 AM
To: [EMAIL PROTECTED]
Subject: [vchkpw] Unable to access mail using POP and domain 
issues with vpopmail


Hi All,

At last third time seemed to be lucky for me. i was
able to install qmail. this time i followed the steps
described in this page
http://hibrida.interaksi.web.id/man/qmail/step-dnata.html#QMAIL
and i literally did a cut and paste of all commands.
My qmail-smtpd is working fine, vpopmail, qmailadmin,
sqwebmail is also working fine. i am able to send and
receive mails. i am facing few issues. 

this is my setup. My mail server name is
mail.ojoobala.com and i want to receive mails for
ojoobala.com too. So i added both of them in rcpthosts
file and added ojoobala.com in locals file.

rcpthosts
mail.ojoobala.com
ojoobala.com

locals
ojoobala.com


i configured vpopmail as

./vadddomain mail.ojoobala.com

So when i send mail to [EMAIL PROTECTED] it goes
into directory
/home/vpopmail/mail.ojoobala.com/name/current. And
when i send it to [EMAIL PROTECTED] it goes into
/home/name/Mailbox. Due to this i am only able to
access [EMAIL PROTECTED] via sqwebmail. sqwebmail
doesnt even authenticate [EMAIL PROTECTED] it just
authenticates [EMAIL PROTECTED] i want to access
both [EMAIL PROTECTED] and [EMAIL PROTECTED] via
sqwebmail. How can do this.

Secondly i am unable to access my mails using POP
outlook express (Dont scream, pl). when i configure
Outlook using [EMAIL PROTECTED] the error message
that i am getting is '$home/Mailbox' doesnt exist. But
when i try with [EMAIL PROTECTED] it fails in
authentication.

my pop3 run script is

exec /usr/local/bin/softlimit -m 200 \
/usr/local/bin/tcpserver -v -R -H -l 0 0 110
/var/qmail/bin/qmail-popup \
mail.oojoobala.com /home/vpopmail/bin/vchkpw
/var/qmail/bin/qmail-pop3d Maildir 21

How can i acess my both accounts
[EMAIL PROTECTED] and [EMAIL PROTECTED] using
POP.

thanks a lot,
-Balaji



__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com











Re: [vchkpw] no such user. URGENT!

2003-09-02 Thread Raboo Treed
Just run it while standing in /qmail/users dir, I think

- Original Message - 
From: T. Albert [EMAIL PROTECTED]
To: Raboo Treed [EMAIL PROTECTED]
Cc: Tom Collins [EMAIL PROTECTED]
Sent: Tuesday, September 02, 2003 11:13 AM
Subject: Re: [vchkpw] no such user. URGENT!


 Hi,

 ok, letsay i've rebuild my assign file, how should i run the qmail-newu ?
 should i just run the script ? or ... ? thanx.

 On Tuesday 02 September 2003 02:36 am, Raboo Treed wrote:
  don't forget the files in /var/qmail/control also...
 
  btw, what in between heaven and earth made you accidently delete
/var/qmail
 
  :-)
 
  - Original Message -
  From: Tom Collins [EMAIL PROTECTED]
  To: vpopmail list [EMAIL PROTECTED]
  Sent: Monday, September 01, 2003 9:11 PM
  Subject: Re: [vchkpw] no such user. URGENT!
 
   On Monday, September 1, 2003, at 11:34  AM, T. Albert wrote:
i accidently deleted my /var/qmail, and now my vpopmail didnot
recognize the
virtual domains. i have a backup of my /var/qmail (not the recent
one). and
now some of my domains can't be recognize. how can i fix this ? OR
is there a way i can rebuild my assign file ?
  
   You can manually add domains to /var/qmail/users/assign (just follow
   the format of the domains that are in there) and then run qmail-newu
to
   create users/cdb.
  
   --
   Tom Collins
   [EMAIL PROTECTED]
   http://sniffter.com/ - info on the Sniffter hand-held Network Tester






RE: [vchkpw] Unable to access mail using POP and domain issues with vpopmail

2003-09-02 Thread Chris Pugh
Hi Balaji,

As an aside .. check your DNS records for
both oojoobala.com  mail.oojoobala.com!!!

Neither resolve properly .. 

Cheers!


Chris.


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com



Re: [vchkpw] Unable to access mail using POP and domain issues with vpopmail

2003-09-02 Thread VeNoMouS
something else as well, you put ojoobala.com into locals, from my
understanding with vpopmail this is a no no dont it bypass vpopmail and try
to develier to local users on this???, when using vpopmail leave locals
blank.

- Original Message - 
From: Shane Chrisp [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, September 03, 2003 5:23 AM
Subject: RE: [vchkpw] Unable to access mail using POP and domain issues with
vpopmail


 Err, typo, get rid of the extra 0 110..

 #!/bin/sh
 VPOPMAILUID=`id -u vpopmail`
 VPOPMAILGID=`id -g vpopmail`

 exec /usr/local/bin/softlimit -m 200 \
 /usr/local/bin/tcpserver -v -R -H -l 0 \
 -u$VPOPMAILUID -g$VPOPMAILGID 0 110 \
 /var/qmail/bin/qmail-popup \
 mail.oojoobala.com /home/vpopmail/bin/vchkpw
 /var/qmail/bin/qmail-pop3d Maildir 21

 Shane

 -Original Message-
 From: Shane Chrisp [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 3 September 2003 1:18 AM
 To: [EMAIL PROTECTED]
 Subject: RE: [vchkpw] Unable to access mail using POP and
 domain issues with vpopmail
 
 
 Hi Balaji,
 
 It doesn't look like you have your popd server running as the
 vpopmail user.
 Try:
 
 #!/bin/sh
 VPOPMAILUID=`id -u vpopmail`
 VPOPMAILGID=`id -g vpopmail`
 
 exec /usr/local/bin/softlimit -m 200 \
 /usr/local/bin/tcpserver -v -R -H -l 0 \
 -u$VPOPMAILUID -g$VPOPMAILGID 0 110 0 110 \
 /var/qmail/bin/qmail-popup \
 mail.oojoobala.com /home/vpopmail/bin/vchkpw
 /var/qmail/bin/qmail-pop3d Maildir 21
 
 
 Check that the home dir's have been created with the correct
 permissions of
 vpopmail:vchkpw as well.
 
 Regarding your other issue, you can use valiasdomain to link
 the 2 domains
 together, however, it is more common to setup your domain name
 as only the
 domain part. As long as you MX records are correct, the email
 will send the
 mail to that system. eg: for Bind
 
 ojoobala.com. IN MX 10 mail.ojoobala.com.
 
 tells the internet to send any mail for ojoobala.com to the host
 mail.ojoobala.com.
 
 Hope this helps.
 
 Shane
 
 -Original Message-
 From: Balaji NJL [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 3 September 2003 1:04 AM
 To: [EMAIL PROTECTED]
 Subject: [vchkpw] Unable to access mail using POP and domain
 issues with vpopmail
 
 
 Hi All,
 
 At last third time seemed to be lucky for me. i was
 able to install qmail. this time i followed the steps
 described in this page
 http://hibrida.interaksi.web.id/man/qmail/step-dnata.html#QMAIL
 and i literally did a cut and paste of all commands.
 My qmail-smtpd is working fine, vpopmail, qmailadmin,
 sqwebmail is also working fine. i am able to send and
 receive mails. i am facing few issues.
 
 this is my setup. My mail server name is
 mail.ojoobala.com and i want to receive mails for
 ojoobala.com too. So i added both of them in rcpthosts
 file and added ojoobala.com in locals file.
 
 rcpthosts
 mail.ojoobala.com
 ojoobala.com
 
 locals
 ojoobala.com
 
 
 i configured vpopmail as
 
 ./vadddomain mail.ojoobala.com
 
 So when i send mail to [EMAIL PROTECTED] it goes
 into directory
 /home/vpopmail/mail.ojoobala.com/name/current. And
 when i send it to [EMAIL PROTECTED] it goes into
 /home/name/Mailbox. Due to this i am only able to
 access [EMAIL PROTECTED] via sqwebmail. sqwebmail
 doesnt even authenticate [EMAIL PROTECTED] it just
 authenticates [EMAIL PROTECTED] i want to access
 both [EMAIL PROTECTED] and [EMAIL PROTECTED] via
 sqwebmail. How can do this.
 
 Secondly i am unable to access my mails using POP
 outlook express (Dont scream, pl). when i configure
 Outlook using [EMAIL PROTECTED] the error message
 that i am getting is '$home/Mailbox' doesnt exist. But
 when i try with [EMAIL PROTECTED] it fails in
 authentication.
 
 my pop3 run script is
 
 exec /usr/local/bin/softlimit -m 200 \
 /usr/local/bin/tcpserver -v -R -H -l 0 0 110
 /var/qmail/bin/qmail-popup \
 mail.oojoobala.com /home/vpopmail/bin/vchkpw
 /var/qmail/bin/qmail-pop3d Maildir 21
 
 How can i acess my both accounts
 [EMAIL PROTECTED] and [EMAIL PROTECTED] using
 POP.
 
 thanks a lot,
 -Balaji
 
 
 
 __
 Do you Yahoo!?
 Yahoo! SiteBuilder - Free, easy-to-use web site design software
 http://sitebuilder.yahoo.com
 
 
 
 
 
 
 







[vchkpw] System virtual User Authentication

2003-09-02 Thread Zafar Rizvi



hi All
I post that questoin many Times but did not get any 
valid reply. 
Theproblem was that i have running some 
virtual domains on linux server with qmail.I have some default linux users and 
many vritual domain users. The virtual domain user successfully authenticated 
with vchkpw but defualt users failed to authenticate himself through pop and 
imap.
As i have done while installing vpopmail , and 
enable-passwed=y but did not get any success.

So my question is that Can i authenticate both 
virtual domain and defualt user with pop3 and imap. ?

ANy Answer/help

Thanks
ZafAr


Re: [vchkpw] System virtual User Authentication

2003-09-02 Thread John Simpson
On Wednesday, Sep 3, 2003, at 00:25 US/Eastern, Zafar Rizvi wrote:
So my question is that Can i authenticate both virtual domain and 
defualt user with pop3 and imap. ?
i did this on a machine using userdb. i had to write a script which:

- read ~vpopmail/domains/*/vpasswd.cdb
- read /etc/passwd
- read /etc/shadow
- wrote /etc/userdb
- called makeuserdb to rebuild userdb's database files
while reading /etc/passwd i skipped users whose login group-id wasn't 
one of two specific groups. while reading /etc/shadow i only grabbed 
the encrypted passwords for those users i had selected from /etc/passwd.

and when writing out the /etc/userdb entries for the system users, i 
added @domain.name to the end of their userid, which meant that when 
users logged into POP3, IMAP, or webmail, they had to use a full email 
address just like the virtual users.

---
| John Simpson - KG4ZOW - Programmer at Large |
| [EMAIL PROTECTED]http://www.jms1.net/ |
---


PGP.sig
Description: PGP signature


[vchkpw] Re: System virtual User Authentication

2003-09-02 Thread Peter Palmreuther
Hello Zafar,

On Wednesday, September 3, 2003 at 6:25:59 AM you wrote (at least in
part):

 As i have done while installing vpopmail , and enable-passwed=y but did not get any 
 success.

And what do the logs say[tm]?

 So my question is that Can i authenticate both virtual domain and
 defualt user with pop3 and imap. ?

Yes. That's what '--enable-passwd' is good for.
-- 
Best regards
Peter Palmreuther

The most beautifull girl in the world...MADONNA.028