[vchkpw] Filesystems suggestions?

2003-06-08 Thread Remo Mattei
Any one has any suggestions on linux with xfs, reiserfs or ext3.
I just would like some fee back on people using xfs and reiserfs since I
have used ext3 for the last 4 years now :)


-- Remo Mattei   --cell 801-209-8554
   http://www.italy1.com
   Freelance Networking-Security/Consultant
   MCSE, MCP, MCP+I, MCT
   Linux Trainer  Firewall Development
   [EMAIL PROTECTED]




[vchkpw] quotawarn file -- what does it do?

2003-06-08 Thread Moshe Jacobson
I have noticed that when a user gets a nearing-quota warning (from
.quotawarn.msg), that a file called quotawarn is created in their
maildir. However, when they go back in and delete all their messages,
the quotawarn file remains there.  Is this behavior correct?  What
purpose does this file serve?  Does it ever get deleted again?

Thanks,
Moshe

-- 
Moshe Jacobson 
http://runslinux.net 
AIM: Jehsom




Re: [vchkpw] Bug in vconvert?

2003-06-08 Thread Remo Mattei
Looks fine to me :0


-- Remo Mattei   --cell 801-209-8554
   http://www.italy1.com
   Freelance Networking-Security/Consultant
   MCSE, MCP, MCP+I, MCT
   Linux Trainer  Firewall Development
   [EMAIL PROTECTED]


 From: Jonas Thomsen [EMAIL PROTECTED]
 Organization: JT-COM
 Date: Sun, 8 Jun 2003 18:16:17 +0200
 To: [EMAIL PROTECTED]
 Subject: [vchkpw] Bug in vconvert?
 
 Hi all!
 
 I've just migrated from vpopmail 5.2.1 using CDB to vpopmail 5.3.20
 using MySql. During this migration I discovered a small bug in vconvert.
 When running 'vconvert -c -m', vconvert reads the
 /var/qmail/users/assign file, which on my system ends with a line
 containing a .\n When vconvert reaches this line, the check for
 tmpbuf[1] != '\n' in line 120 fails, but this does not stop the next
 line (conv_domain( tmpbuf[1] )) from being executed. Of course this
 does not work - it tries to convert a domain called \n. My fix is the
 following code:
 
 if ( tmpbuf[1] != '\n' ) {
  printf(converting %s ..., tmpbuf[1] );
   if ( conv_domain( tmpbuf[1] ) != 0 ) {
   printf(domain conversion failed\n);
   } else {
   printf(done\n);
   }
 }
 
 Is there a problem with this fix?
 
 
 
 Kind regards
 
 Jonas Thomsen,
 JT-COM
 Eugen Warmings Vej 37, 1. th. - DK-8000 Aarhus C.
 Tlf. +45 87 30 16 10 - Fax: +45 87 30 16 11
 http://www.jt-com.dk
 
 
 
 



[vchkpw] Making clear passwd work after upgrade

2003-06-08 Thread Lou Hevly
Greetings:

I have recently upgraded from vpopmail-4.9.10 to vpopmail-5.2.1.  
I configured with the clear passwd option, but notice that it won't 
work with accounts created under 4.9.10 (works fine with new accounts):

$ vuserinfo [EMAIL PROTECTED]
name:   lou
passwd: v52/wEzhdSDH2
clear passwd:
uid:1
gid:0
etc.

Is there any way to convert the passwords of old vpopmail accounts 
so that they are readable by the new vuserinfo?

Thanks.
-- 
Lou Hevly
Manresa, Catalonia
http://visca.com




Re: [vchkpw] Making clear passwd work after upgrade

2003-06-08 Thread Vladimir Kabanov
in short: no,
you have to ask users to change their passwords, if they want to use apop or
cram-md5 auth methods

best,
Vladimir Kabanov.

- Original Message - 
From: Lou Hevly [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, June 08, 2003 10:35 PM
Subject: [vchkpw] Making clear passwd work after upgrade


 Greetings:

 I have recently upgraded from vpopmail-4.9.10 to vpopmail-5.2.1.
 I configured with the clear passwd option, but notice that it won't
 work with accounts created under 4.9.10 (works fine with new accounts):

 $ vuserinfo [EMAIL PROTECTED]
 name:   lou
 passwd: v52/wEzhdSDH2
 clear passwd:
 uid:1
 gid:0
 etc.

 Is there any way to convert the passwords of old vpopmail accounts
 so that they are readable by the new vuserinfo?

 Thanks.
 -- 
 Lou Hevly
 Manresa, Catalonia
 http://visca.com







[vchkpw] Setting up domains

2003-06-08 Thread John Morrow








I have the following setup using qmail 1.03, vpopmail 5.3.20

 Machine name: Linux1.clanmorrow.com

 Smtp: smtp.clanmorrow.com

 Pop3: pop3.clanmorrow.com



Everything work so far, I can send mail out to the internet
and receive mail. What I

I would like to be able to receive mail addressed to [EMAIL PROTECTED] and 

[EMAIL PROTECTED]
to the same maildir. If I send to [EMAIL PROTECTED]

the mail get caught in the queue.

I can do this with Imail from IPSwitch by making an alias
pointing to both names.

Could someone please help me in solving this problem.



John Morrow








[vchkpw] Question on 553 error

2003-06-08 Thread Remo Mattei
Hi guys can someone give me more info on why someone that is trying to send
a message to me gets this error?

 553 sorry, your envelope sender has been denied


I am almost positive that her email client is not setup  correctly Any
fee back are welcomed.
Thanks, 


-- Remo Mattei   --cell 801-209-8554
   http://www.italy1.com
   Freelance Networking-Security/Consultant
   MCSE, MCP, MCP+I, MCT
   Linux Trainer  Firewall Development
   [EMAIL PROTECTED]




[vchkpw] Bug in vconvert?

2003-06-08 Thread Jonas Thomsen
Hi all!

I've just migrated from vpopmail 5.2.1 using CDB to vpopmail 5.3.20
using MySql. During this migration I discovered a small bug in vconvert.
When running 'vconvert -c -m', vconvert reads the
/var/qmail/users/assign file, which on my system ends with a line
containing a .\n When vconvert reaches this line, the check for
tmpbuf[1] != '\n' in line 120 fails, but this does not stop the next
line (conv_domain( tmpbuf[1] )) from being executed. Of course this
does not work - it tries to convert a domain called \n. My fix is the
following code:

if ( tmpbuf[1] != '\n' ) {
  printf(converting %s ..., tmpbuf[1] );
if ( conv_domain( tmpbuf[1] ) != 0 ) {
printf(domain conversion failed\n);
} else {
printf(done\n);
}
}

Is there a problem with this fix?



Kind regards

Jonas Thomsen,
JT-COM
Eugen Warmings Vej 37, 1. th. - DK-8000 Aarhus C.
Tlf. +45 87 30 16 10 - Fax: +45 87 30 16 11
http://www.jt-com.dk 





Re: [vchkpw] Setting up domains

2003-06-08 Thread Rick Macdougall
Hi,

vaddaliasdomain smtp.clanmorrow.com clanmorrow.com

Regards,

Rick

John Morrow wrote:

I have the following setup using qmail 1.03, vpopmail 5.3.20

 Machine name: Linux1.clanmorrow.com

 Smtp:  smtp.clanmorrow.com

 Pop3:  pop3.clanmorrow.com

 

Everything work so far, I can send mail out to the internet and receive 
mail. What I

I would like to be able to receive mail addressed to 
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] and

[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] to the 
same maildir.  If I send to [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

the mail get caught in the queue.

I can do this with Imail from IPSwitch by making an alias pointing to 
both names.

Could someone please help me in solving this problem.

 

John Morrow





RE: [vchkpw] Question on 553 error

2003-06-08 Thread David Hubbard
If you search google for the error message you're wondering
about, the second match is the third-party patch that
is causing your qmail to produce the message.  

David

 -Original Message-
 From: Remo Mattei [mailto:[EMAIL PROTECTED] 
 Sent: Saturday, June 07, 2003 9:47 PM
 To: David Hubbard; [EMAIL PROTECTED]
 Subject: Re: [vchkpw] Question on 553 error
 
 
 This user is not even on my box :)
 She is just sending message to one of my client which is on 
 this box :) Thanks and I am open for more suggestions ..
 -- Remo Mattei   --cell 801-209-8554
http://www.italy1.com
Freelance Networking-Security/Consultant
MCSE, MCP, MCP+I, MCT
Linux Trainer  Firewall Development
[EMAIL PROTECTED]
 
 
  From: David Hubbard [EMAIL PROTECTED]
  Date: Sat, 7 Jun 2003 20:11:44 -0400
  To: [EMAIL PROTECTED]
  Subject: RE: [vchkpw] Question on 553 error
  
  That's an error from the SMTP server; unless you have
  smtp auth or something like that built into it, vpopmail 
 would not be 
  involved.
  
  David
  
  -Original Message-
  From: Remo Mattei [mailto:[EMAIL PROTECTED]
  Sent: Sat 6/7/2003 7:31 PM
  To: '[EMAIL PROTECTED]'
  Cc:
  Subject: [vchkpw] Question on 553 error
  
  
  
  Hi guys can someone give me more info on why someone that 
 is trying to 
  send a message to me gets this error?
  
  553 sorry, your envelope sender has been denied
  
  
  I am almost positive that her email client is not setup  
 correctly 
  Any fee back are welcomed. Thanks,
  
  
  -- Remo Mattei   --cell 801-209-8554
http://www.italy1.com
Freelance Networking-Security/Consultant
MCSE, MCP, MCP+I, MCT
Linux Trainer  Firewall Development
[EMAIL PROTECTED]

  
  
  
  
 



RE: [vchkpw] Question on 553 error

2003-06-08 Thread David Hubbard
That's an error from the SMTP server; unless you have
smtp auth or something like that built into it, vpopmail
would not be involved.
 
David

-Original Message- 
From: Remo Mattei [mailto:[EMAIL PROTECTED] 
Sent: Sat 6/7/2003 7:31 PM 
To: '[EMAIL PROTECTED]' 
Cc: 
Subject: [vchkpw] Question on 553 error 



Hi guys can someone give me more info on why someone that is trying to send
a message to me gets this error?

 553 sorry, your envelope sender has been denied


I am almost positive that her email client is not setup  correctly Any
fee back are welcomed.
Thanks,


-- Remo Mattei   --cell 801-209-8554
   http://www.italy1.com
   Freelance Networking-Security/Consultant
   MCSE, MCP, MCP+I, MCT
   Linux Trainer  Firewall Development
   [EMAIL PROTECTED]