[vchkpw] qmailscanner

2002-08-26 Thread GoodnGo.de \(R\) Zentrale

Hi all,

do I got that rigth:

qmailscanner needs for virusscanning another virus software like kapersky
antivirus?

Oliver Etzel

flathousing www.flathousing.com
flatrate serverhousing www.housing-flat.de





Re: [vchkpw]passwrod encrypted method

2002-08-26 Thread Peter Palmreuther

Hello zafar,

On Monday, August 26, 2002 at 10:04:27 AM you wrote:

> i want to know that thing ,that when new user add in through vpopmail in
> any domain ,what algorithum vpopmail is use to encrypt password

crypt with MD5

> and now i want to decrypt it through php.

Impossible. It's a one way encryption. Decryption is not possible.

>  plz tell me the encrypted method of vpopmail.

To encrypt passwords using PHP, e.g. to write them to a database (like if
you're using vpopmail w/ MySQL and want users to change the password from
your web site) you can use the following code:

,-= [ adopted from vpopmail-source ] =-
 25) $retval = $rand - 26 + 'A';
if ($rand > 51) $retval = $rand - 52 + '0';
if ($rand == 62) $retval = ';';
if ($rand == 63) $retval = '.';
return($retval);
}

function mkpasswd3(&$clearpass, &$crypted) {
srand ((double)microtime()*100);

$salt = '$1$';
for ($i = 0; $i < 5; $i++) $salt .= randltr();
$salt .= '0';

$crypted = crypt($clearpass, $salt);

if (strlen($crypted) > 0) return(true);
return(false);
}
?>
`-=

and call the functions like in this example:

,-= [  ] =-
$clearpass = 'testtest'
$crypted = '';

if (mkpasswd3($clearpass, $crypted)) printf("%s -> %s\n", $clearpass, $crypted);
else echo("Ohoh");
`-=

To figure out if MD5-support is compiled into your PHP execute this code:

,-= [ test for MD5 encryption support ] =-

`-=

>  i install it with clear password option also.

You won't need to decrypt if clear-password is enabled. The clear password
then will be already present.
But you'll have to remember updating encrypted _AND_ clear password if you
use above PHP functions!!!
-- 
Best regards
Peter Palmreuthermailto:[EMAIL PROTECTED]




[vchkpw] Re: qmailscanner

2002-08-26 Thread GoodnGo.de \(R\) Zentrale

Hi all, hi Özgür,

aha, I am right. :) Very good.

where can I read about? HowTo?

Anybody knows?

Oliver Etzel

flathousing www.flathousing.com
flatrate serverhousing www.housing-flat.de






Re: [vchkpw]passwrod encrypted method

2002-08-26 Thread zafar

sir
thanks for the reply.
i follow ur instructions and generate different encrypted password
values.but that encrypted password is not matched with oldone encrypt by
vpopmail (it is correct or not)tell me about this also,
i try it with this pattern.

$clearpass = 'zafar'
> $crypted = '';
and resulted encrypted passwd paste on the vpasswd file in the respected
domain file.but user login it with the old password i overwrite the
encrypted and clear passwd.but it can't work.
plz tell me which file it use for getting password, and where i change
must,will change confirm.
plz tell me .
thanks for the again reply.
ok wait for ur reply.

- Original Message -
From: "Peter Palmreuther" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, August 26, 2002 3:51 PM
Subject: Re: [vchkpw]passwrod encrypted method


> Hello zafar,
>
> On Monday, August 26, 2002 at 10:04:27 AM you wrote:
>
> > i want to know that thing ,that when new user add in through vpopmail in
> > any domain ,what algorithum vpopmail is use to encrypt password
>
> crypt with MD5
>
> > and now i want to decrypt it through php.
>
> Impossible. It's a one way encryption. Decryption is not possible.
>
> >  plz tell me the encrypted method of vpopmail.
>
> To encrypt passwords using PHP, e.g. to write them to a database (like if
> you're using vpopmail w/ MySQL and want users to change the password from
> your web site) you can use the following code:
>
> ,-= [ adopted from vpopmail-source ] =-
>  function randltr() {
> $retval = 'a';
> $rand = rand() % 64;
> if ($rand < 26) $retval = $rand + 'a';
> if ($rand > 25) $retval = $rand - 26 + 'A';
> if ($rand > 51) $retval = $rand - 52 + '0';
> if ($rand == 62) $retval = ';';
> if ($rand == 63) $retval = '.';
> return($retval);
> }
>
> function mkpasswd3(&$clearpass, &$crypted) {
> srand ((double)microtime()*100);
>
> $salt = '$1$';
> for ($i = 0; $i < 5; $i++) $salt .= randltr();
> $salt .= '0';
>
> $crypted = crypt($clearpass, $salt);
>
> if (strlen($crypted) > 0) return(true);
> return(false);
> }
> ?>
> `-=
>
> and call the functions like in this example:
>
> ,-= [  ] =-
> $clearpass = 'testtest'
> $crypted = '';
>
> if (mkpasswd3($clearpass, $crypted)) printf("%s -> %s\n", $clearpass,
$crypted);
> else echo("Ohoh");
> `-=
>
> To figure out if MD5-support is compiled into your PHP execute this code:
>
> ,-= [ test for MD5 encryption support ] =-
>  printf('CRYPT_MD5: %s%s', CRYPT_MD5, "\n");
> ?>
> `-=
>
> >  i install it with clear password option also.
>
> You won't need to decrypt if clear-password is enabled. The clear password
> then will be already present.
> But you'll have to remember updating encrypted _AND_ clear password if you
> use above PHP functions!!!
> --
> Best regards
> Peter Palmreuthermailto:[EMAIL PROTECTED]
>
>




[vchkpw] error adding Simerson patch

2002-08-26 Thread rm

I was attempting to add the simerson ucspi-tcp-0.88-mysql.patch as
suggested in the vpopmail INSTALL file.

I placed the patch in the ucspi-tcp source directory and entered:
"patch -p1 < ./ucspi-tcp-0.88-mysql.patch"

I get an error the reads:

 missing header for context diff at line 3 of patch
 can't find file to patch at input line 3"
 The text leading up to this was:   
---
|***tcpserver.c.origWed Mar 14 10:21:33 2001
|---tcpserver.cFri Mar 16 13:53:52 2001
-
File to patch:

So it seems I'm doing something wrong - any suggestions?

regis





Re: [vchkpw]passwrod encrypted method

2002-08-26 Thread Peter Palmreuther

Hello zafar,

On Monday, August 26, 2002 at 3:16:32 PM you wrote:

> i follow ur instructions and generate different encrypted password
> values.but that encrypted password is not matched with oldone encrypt by
> vpopmail (it is correct or not)

Yes, this is correct.
Encrypted passwords will differ each time, as the 'SALT' is different each
time.
Encrypting the password with same SALT will produce same encrypted string.
But as salt is chosen (more or less) randomly each time you call the
functions this will produce different output patterns.

> and resulted encrypted passwd paste on the vpasswd file in the respected
> domain file.but user login it with the old password i overwrite the
> encrypted and clear passwd.but it can't work.

Than the new password ain't used.
If something would be wrong with encryption functions the user would _not_
be able to log in, neither with new nor with old password.
If user can still log in after you've tried to set the new password you
were not successful in setting the new password.
Did you only set the password in 'vpasswd' file or did you recreate
'vpasswd.cdb' after changing the password?

vmkpasswd $domain

should be your command.
-- 
Best regards
Peter Palmreuthermailto:[EMAIL PROTECTED]




Re: [vchkpw]passwrod encrypted method

2002-08-26 Thread zafar

hello
i change in the vpasswd file and try to check it without
handling vpasswd.cdb file,
r i remove it first and then change it.
or something else i do.
thanks for the command but i want that i read this file and
change the passwd in this file.
tell me little detail for doing,
i have some confusion
thanks for the cooperation.
wait for ur reply.
- Original Message -
From: "Peter Palmreuther" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, August 26, 2002 6:21 PM
Subject: Re: [vchkpw]passwrod encrypted method


> Hello zafar,
>
> On Monday, August 26, 2002 at 3:16:32 PM you wrote:
>
> > i follow ur instructions and generate different encrypted password
> > values.but that encrypted password is not matched with oldone encrypt by
> > vpopmail (it is correct or not)
>
> Yes, this is correct.
> Encrypted passwords will differ each time, as the 'SALT' is different each
> time.
> Encrypting the password with same SALT will produce same encrypted string.
> But as salt is chosen (more or less) randomly each time you call the
> functions this will produce different output patterns.
>
> > and resulted encrypted passwd paste on the vpasswd file in the respected
> > domain file.but user login it with the old password i overwrite the
> > encrypted and clear passwd.but it can't work.
>
> Than the new password ain't used.
> If something would be wrong with encryption functions the user would _not_
> be able to log in, neither with new nor with old password.
> If user can still log in after you've tried to set the new password you
> were not successful in setting the new password.
> Did you only set the password in 'vpasswd' file or did you recreate
> 'vpasswd.cdb' after changing the password?
>
> vmkpasswd $domain
>
> should be your command.
> --
> Best regards
> Peter Palmreuthermailto:[EMAIL PROTECTED]
>
>




Re: [vchkpw]passwrod encrypted method

2002-08-26 Thread Peter Palmreuther

Hello zafar,

On Monday, August 26, 2002 at 4:48:52 PM you wrote:

> i change in the vpasswd file and try to check it without
> handling vpasswd.cdb file,
> r i remove it first and then change it.
> or something else i do.
> thanks for the command but i want that i read this file and
> change the passwd in this file.

'Something else' is the wrong doing.
You should do exactly what vpopmail expects you to do:

- change the (encrypted and plain text) password in 'vpasswd'.
- run vmkpasswd $domain (substitute '$domain' with name of the domain
  you're processing the vpasswd file for)

The former will make changes in the file readable by human beings like you,
the latter will "transport" the changes to binary file (vpasswd.cdb) used
by 'vchkpw' for authenticating user.

You will _have to_ do both steps, unless you're familiar with using
cdb library and changing vpasswd.cdb directly by yourself (I assume you're
not).

So again: assuming domain name is 'test.com' and username to change the
password for is 'user' you'll have to change the line corresponding to
'user' in file '~vpopmail/domains/test.com/vpasswd' and set the new
password, both encrypted and plain text.
Then you'll have to execute 'vmkpasswd test.com' for changes getting
manifested in '~vpopmail/domains/vpasswd.cdb' which is used by 'vchkpw' to
do (normal) POP3 authentication.
-- 
Best regards
Peter Palmreuthermailto:[EMAIL PROTECTED]




RE: [vchkpw] When to use MySQL with Vpopmail?

2002-08-26 Thread Robert Kropiewnicki


Many thanks to Steve and Bill for providing me with a better
understanding of when MySQL might be a better solution than using CDB.
Considering I am not a DBA, nor do I have any working experience with
MySQL, I'd rather not have to use it at the moment if I can get away
with it.  Your explanations help me get a better grasp of when it may
become necessary.

You guys rock!

Robert Kropiewnicki
Network Administrator
StructuredWeb Inc.
Phone: 201-325-3146
[EMAIL PROTECTED]





Re: [vchkpw] Vpopmail/qmail spam filter using SpamAssassin (andother stuff)

2002-08-26 Thread Jeff Koch

Hi Jon:

This is wonderful. The options you've added are great. One question. Is 
there a way to automatically setup the .qmail- file whenever 
qmailadmin adds a new user?

Best Regards, Jeff Koch
Intersessions.com
--

On Mon, 26 Aug 2002, Jon Coulter wrote:

> Out of my pure hatred for spam, love for qmail/vpopmail/perl, and
> dislike of the complexity of all current 'spam filtering'
> implementations for qmail (and/or vpopmail), I decided to write my own
> perl app to do all the things I wanted (and more) when filtering email.
> 
> Using procmail and the standard spamassassin methods required patches
> for qmail (seekable patch) and all kinds of other ridicules setup, and
> then still didn't work with vpopmail (at least I couldn't get it to). So
> I thought, "Why are we hacking up source codes and changing how stuff is
> processed to accomplish this? After all, qmail's mentality is chaining
> programs together to complete the task, so why don't we filter this
> way?"
> 
> So here is my spam-filter.pl script, been in production for quite some
> time with me, and I haven't had any problems. There is quite detailed
> usage file ( http://www.ledscripts.com/dev/install.txt ) plus reading
> the source itself will likely tell you a lot. Anyhow, you can get it at:
> 
> http://www.ledscripts.com/dev/vpopmail-spam-filter.html
> 
> Please try and comment. I really think its implementations like this
> that will finally help some of us clean up our mailboxes :)
> 
> By the way, this is not something that should be used on a heavy-load
> machine. If interest is high enough, I'll do something similar to what
> the spamassassin people did with spamd/spamc.
> 
> Anyway, good luck!
> 
> Jon Coulter
> [EMAIL PROTECTED] 
> 




Re: [vchkpw] Vpopmail/qmail spam filter using SpamAssassin (andother stuff)

2002-08-26 Thread Jeff Koch


Problem with qmail-scanner is that it does not allow the Spam preferences 
to be controlled on a per domain or per user basis. 


Best Regards, Jeff Koch
Intersessions.com
--

On Mon, 26 Aug 2002, Iain wrote:

> On Mon, 26 Aug 2002 03:20, Jon Coulter wrote:
> > Out of my pure hatred for spam, love for qmail/vpopmail/perl, and
> > dislike of the complexity of all current 'spam filtering'
> > implementations for qmail (and/or vpopmail), I decided to write my own
> > perl app to do all the things I wanted (and more) when filtering email.
> >
> 
> What's wrong with qmail-scanner ?
> 
> -- 
> PGP info: http://www.myspinach.org/~iain/pgpinfo.html
> 




RE: [vchkpw] Vpopmail/qmail spam filter using SpamAssassin (and other stuff)

2002-08-26 Thread Jon Coulter

Not without doing some source code hacking of qmailadmin and/or the
vpopmail programs
(of course, I don't know qmailadmin very well, so there might be an
option to run other programs at create-time, which would allow you to
run a shell script or something to create it, but I doubt that such a
feature exists).

You can do domain-level filtering because of the way vpopmail works. You
just use this in the .qmail-default file (I'd suggest with the -S
option, and use it as a 'stop processing' usage, rather using -X and
-C). This can be effective if you're not worried about false-positives
thrown out with the trash (so, I don't really recommend using it in this
way :))

Example .qmail-default:
--
# drop mail if its spam
| /usr/local/vpopmail/bin/spam-filter.pl -S

# if it gets this far, its non-spam
# so just allow vpopmail to do its thing
| /usr/local/vpopmail/bin/vdelivermail '' bounce-no-mailbox
--

Also note that I said this was not designed for production. I mean, I
believe its stable, but the pure overhead of starting up the perl script
on each incoming email (because of the time it takes Mail::SpamAssassin
to load) can be quite high, and you need to be sure you're server can
handle it (my p3 GHz w/ 512mb takes about 1-3 second to do it all, so
that I can live with. One of my development machines, an old p2 200
w/128mb takes about 8-12 seconds to run it, and 90% cpu usage -- that's
something you can't have on a production box... But then again, that's a
pretty weak 'production' box if it was one). This is the same problem
users that use the 'spamassassin' command line program have (and
qmail-scanner too, though perhaps to a lesser extent, because
Mail::SpamAssassin is what takes so long to load). The spamassassin
people 'solved' this problem by creating the spamd/spamc combo, spamd is
the 'spamassassin' command line program, but it goes into daemon mode
and runs all the time. Then spamc is a C program that essentially pipes
the incoming mail to the already-running spamd and reads back the
results. The likely way I'll solve my problem is that I'll allow their
spamd to run in daemon mode, but then I'll use spam-filter.pl to connect
to it and send it data, rather then spamc. We'll see, maybe I'll look
into that solution later today.

P.S., glad you enjoy it. I'm quite glad to have it, because my spam to
real-mail ratio is about 100:1 (I know, very sad... Had the email
account for years)

Jon Coulter
[EMAIL PROTECTED] 

-Original Message-
From: Jeff Koch [mailto:[EMAIL PROTECTED]] 
Sent: Monday, August 26, 2002 9:35 AM
To: Jon Coulter
Cc: [EMAIL PROTECTED]
Subject: Re: [vchkpw] Vpopmail/qmail spam filter using SpamAssassin (and
other stuff)


Hi Jon:

This is wonderful. The options you've added are great. One question. Is 
there a way to automatically setup the .qmail- file whenever 
qmailadmin adds a new user?

Best Regards, Jeff Koch
Intersessions.com
--

On Mon, 26 Aug 2002, Jon Coulter wrote:

> Out of my pure hatred for spam, love for qmail/vpopmail/perl, and 
> dislike of the complexity of all current 'spam filtering' 
> implementations for qmail (and/or vpopmail), I decided to write my own

> perl app to do all the things I wanted (and more) when filtering 
> email.
> 
> http://www.ledscripts.com/dev/vpopmail-spam-filter.html
> 
--- snip ---




RE: [vchkpw] Off the Topic sqwebmail install problems on Solaris 8

2002-08-26 Thread Mike Jimenez









Chris,

I looked through the Makefile
for Sqwebmail and could not find anything with  " –L”
options?

Thanks

 



Mike Jimenez



 

-Original Message-
From: chris
[mailto:[EMAIL PROTECTED]] 
Sent: Sunday, August 25, 2002 12:35 PM
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: Re: [vchkpw] Off the
Topic sqwebmail install problems on Solaris 8

 



Solaris needs a " -R
/path/to/various/libs/used " as well as the " -L " that you'll
see in the Makefile.  Look through the Makefile and add a " -R
/copy/the/-L/paths/into/this/path " to wherever you see a " -L
/some/path/to/a/library"





 





I know this isn't word for word...
I'm in a bit of a hurry...  if you don't get it, write back and I'll
elaborate.





 





Chris Bunnell 
Senior Engineer - Network Implementation
Avantac Technologies, Inc. - Formerly Sonic Internet Services
9719 Lincoln Village Drive #503
Sacramento, CA. 95827
(916) 854-5940
www.avantac.com
Powered by Sun.  My other OS is your Linux box.
"While others are dot flopping, we're not stopping."







- Original Message - 





From: Mike Jimenez 





To: [EMAIL PROTECTED]






Sent: Friday, August 23, 2002 2:17 PM





Subject: [vchkpw]
Off the Topic sqwebmail install problems on Solaris 8





 



Hello,

I know this is not the correct list
for this but I cant seem to find any one on sqwebmail that can help me out with
my problem.

I am trying to compile
“sqwebmail-3.3.7.20020819” with “vpopmail-5.2” and my
configure part goes thru fine without any errors but when I run make I get the
following error can any offer some input as to what might be going on?

Thanks

 

Here is my configure script

./configure --enable-softtimeout=3600
--with-ispell=/usr/bin/ispell --enable-cgibindir=/apache/cgi-bin
--enable-imagedir=/apache/htdocs --without-authpam --without-authuserdb
--enable-webpass=no --without-authpwd --without-authshadow
--enable-mimetypes=/apache/conf 

 

 

Here is my error message after
running make

 

ld: fatal: library -lvpopmail: not
found

ld: fatal: File processing errors.
No output written to sqwebmail

collect2: ld returned 1 exit status

*** Error code 1

make: Fatal error: Command failed
for target `sqwebmail'

Current working directory
/export/home/installers/sqwebmail-3.3.7.20020819/sqwebmail

*** Error code 1

make: Fatal error: Command failed
for target `all-recursive'

Current working directory
/export/home/installers/sqwebmail-3.3.7.20020819/sqwebmail

*** Error code 1

make: Fatal error: Command failed
for target `all-recursive-am'

Current working directory
/export/home/installers/sqwebmail-3.3.7.20020819/sqwebmail

*** Error code 1

make: Fatal error: Command failed
for target `all-recursive'

 

 

=

Mike Jimenez

System Administrator

Visual Perspectives Internet, Inc.
(VPI.Net)

Tel: (949) 595-8622 -- Fax: (949)
595-8629

http://www.vpi.net

=

 










[vchkpw] remote mail retreival

2002-08-26 Thread David

Hi All,

I was wondering how many of you retreive mail from a remote server for
clients/customers, and using what? I have been  looking at Fetchmail,
but would be interested in hearing from anyone that has done this with
any program on a qmail/Courier-IMAP/vpopmail combo (receiving system,
not remote.. :)).

Thanks for your time

David Cook




[vchkpw] Quotas and "upgrades"

2002-08-26 Thread Phil Dibowitz

One regrettable thing about my installation was I didn't enable a default quota.

So I'm going to go back and recompile so as to add that. But from what I've 
read fromt he docs, the only thing this will do is ensure that in the FUTURE 
new boxes made have a default quota.

So my question is: Is there an easy way to give every user (or just all the 
users in a single domain would be sufficient) a quota at the same time? I 
don't want to have to use vsetuserquota on all of our users...

Thanks,
-- 
Phil Dibowitz [EMAIL PROTECTED]
Freeware and Technical Pages  Insanity Palace of Metallica
http://home.earthlink.net/~jaymzh666/ http://www.ipom.com/

"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety."
  - Benjamin Franklin, 1759




Re: [vchkpw] Quotas and "upgrades"

2002-08-26 Thread Rick Macdougall

Hi,

vmoduser -q 1000S @somedomain.com

Regards,

Rick

- Original Message -
From: "Phil Dibowitz" <[EMAIL PROTECTED]>
To: "vchkpw" <[EMAIL PROTECTED]>
Sent: Monday, August 26, 2002 6:50 PM
Subject: [vchkpw] Quotas and "upgrades"


> One regrettable thing about my installation was I didn't enable a default
quota.
>
> So I'm going to go back and recompile so as to add that. But from what
I've
> read fromt he docs, the only thing this will do is ensure that in the
FUTURE
> new boxes made have a default quota.
>
> So my question is: Is there an easy way to give every user (or just all
the
> users in a single domain would be sufficient) a quota at the same time? I
> don't want to have to use vsetuserquota on all of our users...
>
> Thanks,
> --
> Phil Dibowitz [EMAIL PROTECTED]
> Freeware and Technical Pages  Insanity Palace of Metallica
> http://home.earthlink.net/~jaymzh666/ http://www.ipom.com/
>
> "They that can give up essential liberty to obtain a little temporary
> safety deserve neither liberty nor safety."
>   - Benjamin Franklin, 1759
>
>




[vchkpw] Re: error adding Simerson patch

2002-08-26 Thread rm

On Mon, 2002-08-26 at 07:44, rm wrote:
> I was attempting to add the simerson ucspi-tcp-0.88-mysql.patch as
> suggested in the vpopmail INSTALL file.
> 
> I placed the patch in the ucspi-tcp source directory and entered:
> "patch -p1 < ./ucspi-tcp-0.88-mysql.patch"
> 
> I get an error the reads:
> 
>missing header for context diff at line 3 of patch
>can't find file to patch at input line 3"
>The text leading up to this was:   
>   ---
>   |***tcpserver.c.origWed Mar 14 10:21:33 2001
>   |---tcpserver.cFri Mar 16 13:53:52 2001
>   -
>   File to patch:
> 
> So it seems I'm doing something wrong - any suggestions?
> 
> regis


OK OK, I figured what I was doing wrong and the patch applied ok. 
But...
 
 When I try to "make" ucspi-tcp it starts to compile fine, then it
chokes
 at:
./makelib byte.a byte_chr.o byte_copy.o bytecr.o \
byte_diff.o bytecr.o byte_zero.o case_diffb.o \
case_diffs.o fmt_ulong.o ip4_fmt.o ip4_scan.o scan_ulong.o \ 
str_chr.o str_diff.o str_len.o str_start.o uint16_pack.o \
uint16_upack.o uint32_pack.o uint32_unpack.o
( ( ./compile trylsock.c && \
./load trylsock -lsocket -lnsl ) >/dev/null 2>&1 \
&& echo -lsocket -lnsl || exit 0 ) > socket.lib
rm -f trylsock.o trylsock
./load tcpserver rules.o db.o remoteinfo.o timeoutconn.o cdb.a \
dns.a time.a unix.a byte.a 'cat socket.lib'
db.o: IN function 'open_db':
db.o(.text+0x14): undefined reference to 'mysql_close'

 Then goes on to list 11 other "undfined references" to mysql common
 mysql functions mysql_init; _real_connenct; _error; _query; etc. and
 finally quits with:

collect2: ld returned 1 exit status
make: *** [tcpserver] Error 1
 
 Mysql is installed and working properly, I edited the conf-ld and
 conf-cc files to include the correct path to mysql.  I did notice that
 the compile command in conf-ld begins with gcc -s.  I don't know what
 the s indicates or if that could be a problem.
 
 Anyone else have problems applying this patch?  Any ideas?
 
 regis 







[vchkpw] vpopmail integrate with windows 2000 active directory

2002-08-26 Thread Yee Siew Chin

how can i integrate vpopmail to authenticate with
windows 2000 active directory?

rgds,
yee


__
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com



Re: [vchkpw] Re: error adding Simerson patch

2002-08-26 Thread Dave Weiner

>  Mysql is installed and working properly, I edited the conf-ld and
>  conf-cc files to include the correct path to mysql.  I did notice that
>  the compile command in conf-ld begins with gcc -s.  I don't know what
>  the s indicates or if that could be a problem.
>
>  Anyone else have problems applying this patch?  Any ideas?

Did you install MySQL from source?  If you didn't, have you installed the
mysql-devel or equivilant package?

>
>  regis
>

Dave




Re: [vchkpw]passwrod encrypted method

2002-08-26 Thread zafar

hello sir
thanks for mailing.
sir i do everything according to ur instruction.i found a error when i run
vmkpasswd command of segmentation fault.i do't understand that error.
 r u have any information about that error.
plz tell me the solution of this error.
thanks with regards

- Original Message -
From: "Peter Palmreuther" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, August 26, 2002 7:18 PM
Subject: Re: [vchkpw]passwrod encrypted method


> Hello zafar,
>
> On Monday, August 26, 2002 at 4:48:52 PM you wrote:
>
> > i change in the vpasswd file and try to check it without
> > handling vpasswd.cdb file,
> > r i remove it first and then change it.
> > or something else i do.
> > thanks for the command but i want that i read this file and
> > change the passwd in this file.
>
> 'Something else' is the wrong doing.
> You should do exactly what vpopmail expects you to do:
>
> - change the (encrypted and plain text) password in 'vpasswd'.
> - run vmkpasswd $domain (substitute '$domain' with name of the domain
>   you're processing the vpasswd file for)
>
> The former will make changes in the file readable by human beings like
you,
> the latter will "transport" the changes to binary file (vpasswd.cdb) used
> by 'vchkpw' for authenticating user.
>
> You will _have to_ do both steps, unless you're familiar with using
> cdb library and changing vpasswd.cdb directly by yourself (I assume you're
> not).
>
> So again: assuming domain name is 'test.com' and username to change the
> password for is 'user' you'll have to change the line corresponding to
> 'user' in file '~vpopmail/domains/test.com/vpasswd' and set the new
> password, both encrypted and plain text.
> Then you'll have to execute 'vmkpasswd test.com' for changes getting
> manifested in '~vpopmail/domains/vpasswd.cdb' which is used by 'vchkpw' to
> do (normal) POP3 authentication.
> --
> Best regards
> Peter Palmreuthermailto:[EMAIL PROTECTED]
>
>




[vchkpw] weird problem

2002-08-26 Thread Paul Theodoropoulos


i've hit this problem only a couple of times, and don't know the solution. 
i'm running vpopmail 5.3.8. this happened a couple of times with the 
previous true release version as well. i was able to get that one person 
going again, but unfortunately i don't remember how i did it!

root-klaatu % telnet pop.vistabroadband.com pop3
Trying 64.84.48.47...
Connected to pop.vistabroadband.com.
Escape character is '^]'.
+OK <[EMAIL PROTECTED]>
user [EMAIL PROTECTED]
+OK
pass xx
-ERR unable to scan $HOME/Maildir
Connection closed by foreign host.
root-klaatu %

this only seems to happen when there are several thousand messages in the 
email account. however, the user is well within quota.

thoughts?

Paul Theodoropoulos
http://www.anastrophe.com
Help Cure Alzheimer's with your PC's spare time:
http://folding.stanford.edu





[vchkpw] Vacation Messages *and* redirect

2002-08-26 Thread Phil Dibowitz

Hey all,

I'd like to have a user whose email is redirected to /dev/null, and who has an 
  auto-responder (vacation message).

I'm not quite sure how to go about this, can someone tell me if it's possible, 
and maybe tell me how to do it, or point me to a link if it's documented 
already...

Thanks,
-- 
Phil Dibowitz [EMAIL PROTECTED]
Freeware and Technical Pages  Insanity Palace of Metallica
http://home.earthlink.net/~jaymzh666/ http://www.ipom.com/

"They that can give up essential liberty to obtain a little temporary
safety deserve neither liberty nor safety."
  - Benjamin Franklin, 1759