ahhh I AM SO STUPID i have it checked, I AM SO LOL; thank you for your great work and help!
cya and have a nice day ----- Original Message ----- From: "eLgino" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 13, 2003 10:50 PM Subject: Re: [vchkpw] Detailed installation instructions on FreeBSD - attached > ah you mean i copy > > /* source start > > #!/usr/bin/perl > > > while (<STDIN>) { > if( $_ =~ /^([^#][^=]+)=(.*)/) { > $name=$1; > unlink "$name"; > open (F, ">$name") or die "Cannot open $name: $!"; > $value = $2; > if( $value =~ /^"(.*)"$/ ) { > $x=$1; > } else { > $x=$value; > } > while ($x =~ m/\$(\S+)/ && $vars{$1}) { > $y = $1; > $x =~ s/\$$y/$vars{$y}/; > } > $vars{$name}=$x; > print F $x or die "Cannot write to $1: $!"; > close (F) or die "Cannot close $1: $!"; > } > } > > */ source end > > to this directory's > : > > /var/qmail/supervise/courier-imap-imapd-ssl/env > /var/qmail/supervise/courier-imap-imapd > /var/qmail/supervise/courier-imap-pop3d-ssl > /var/qmail/supervise/courier-imap-pop3d > > and whats the name of the file?, lol sorry i'm stupid ... > thanks in advance > > all steps right? > > ----- Original Message ----- > From: "Evren Yurtesen" <[EMAIL PROTECTED]> > To: "eLgino" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Wednesday, August 13, 2003 8:57 PM > Subject: Re: [vchkpw] Detailed installation instructions on FreeBSD - > attached > > > > yet I dont see what is not clear about this :) > > > > ------------------------------------------------------ > > > > We should get courier imap conf files inside too! > > > > #mkdir /var/qmail/supervise/courier-imap-imapd-ssl/env > > #mkdir /var/qmail/supervise/courier-imap-imapd > > #mkdir /var/qmail/supervise/courier-imap-pop3d-ssl > > #mkdir /var/qmail/supervise/courier-imap-pop3d > > > > Now copy the envconv program to each directory > > > > > > On Wed, 13 Aug 2003, eLgino wrote: > > > > > ok, thanks > > > > > > but WHERE to copy the envconv programm in WITCH directory? > > > > > > thank you for your friendly help and your howto > > > > > > cya > > > > > > ----- Original Message ----- > > > From: "Evren Yurtesen" <[EMAIL PROTECTED]> > > > To: "eLgino" <[EMAIL PROTECTED]> > > > Cc: <[EMAIL PROTECTED]> > > > Sent: Wednesday, August 13, 2003 8:50 PM > > > Subject: Re: [vchkpw] Detailed installation instructions on FreeBSD - > > > attached > > > > > > > > > > I dont understand, the file name is written just above the line > > > > /var/qmail/supervise/qmail-smtp/run > > > > which means inside this file, the text between ------------ must > be.... > > > > if you dont know what is serialmail, just use the rblsmtpd one. > > > > > > > > Evren > > > > > > > > On Wed, 13 Aug 2003, eLgino wrote: > > > > > > > > > "Evren Yurtesen" <[EMAIL PROTECTED]> > > > > > > > > > > HI thank you very much but what your are meaning with: > > > > > > > > > > /var/qmail/supervise/qmail-smtp/run text with serialmail... > > > > > > > > > -------------------------------------------------------------------------- > > > -- > > > > > -------- > > > > > 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/scripts/vpopmail/vchkpw /usr/bin/true > 2>&1 > > > > > > > > > -------------------------------------------------------------------------- > > > -- > > > > > -------- > > > > > > > > > > /var/qmail/supervise/qmail-smtp/run text with rblsmtpd... > > > > > > > > > -------------------------------------------------------------------------- > > > -- > > > > > -------- > > > > > #!/bin/sh > > > > > exec /usr/local/bin/tcpserver -p -R -x > > > /usr/local/vpopmail/etc/tcp.smtp.cdb > > > > > \ > > > > > -u82 -g81 -v -c100 0 smtp /usr/local/bin/rblsmtpd \ > > > > > -r bl.spamcop.net \ > > > > > -r sbl.spamhaus.net \ > > > > > /var/qmail/bin/qmail-smtpd \ > > > > > `hostname --fqdn` /usr/local/scripts/vpopmail/vchkpw /usr/bin/true > 2>&1 > > > > > > > > > > with serialmail... / with rblsmtpd ??? whats that? > > > > > > > > > > and what you are meaning of > > > > > > > > > > ---- > > > > > > > > > > Now copy the envconv program to each directory > > > > > > > > > > envconv text... > > > > > > > > > -------------------------------------------------------------------------- > > > -- > > > > > -------- > > > > > #!/usr/bin/perl > > > > > > > > > > # written by Jonas Pasche > > > > > # enhanced by Matthias Andree > > > > > > > > > > while (<STDIN>) { > > > > > if( $_ =~ /^([^#][^=]+)=(.*)/) { > > > > > $name=$1; > > > > > unlink "$name"; > > > > > open (F, ">$name") or die "Cannot open $name: $!"; > > > > > $value = $2; > > > > > if( $value =~ /^"(.*)"$/ ) { > > > > > $x=$1; > > > > > } else { > > > > > $x=$value; > > > > > } > > > > > while ($x =~ m/\$(\S+)/ && $vars{$1}) { > > > > > $y = $1; > > > > > $x =~ s/\$$y/$vars{$y}/; > > > > > } > > > > > $vars{$name}=$x; > > > > > print F $x or die "Cannot write to $1: $!"; > > > > > close (F) or die "Cannot close $1: $!"; > > > > > } > > > > > } > > > > > > > > > -------------------------------------------------------------------------- > > > -- > > > > > -------- > > > > > > > > > > where to copy the programm/script/tool what ever? to what > directories, > > > thank > > > > > you very much! > > > > > > > > > > > > > > > ----- Original Message ----- > > > > > From: "Evren Yurtesen" <[EMAIL PROTECTED]> > > > > > To: "Shane Chrisp" <[EMAIL PROTECTED]> > > > > > Cc: <[EMAIL PROTECTED]>; "eLgino" <[EMAIL PROTECTED]> > > > > > Sent: Wednesday, August 13, 2003 7:34 PM > > > > > Subject: [vchkpw] Detailed installation instructions on FreeBSD - > > > attached > > > > > > > > > > > > > > > > Here is the detailed installation instructions from my own > > > installation on > > > > > > FreeBSD! > > > > > > > > > > > > Now for the people who has trouble, I will help as much as I can > if > > > there > > > > > > are problems in these instructions. > > > > > > > > > > > > I also think that this might be included in vpopmail distribution. > I > > > came > > > > > > to 0.0.6 version of this document while fixing the mistakes in it > > > though > > > > > > :) I am almost certain that I eliminated all the mistakes I did. > > > > > > > > > > > > Now my mail server has been working for 1 month with 8000 thousand > > > users > > > > > > and 600 domains. I know its not much but a good test platform. > Nobody > > > > > > complained about anything so far. > > > > > > > > > > > > The document contains, installation of > > > > > > vpopmail, qmailadmin, vqadmin, courier-imap, qmailmrtg, isoqlog, > > > > > > smtp-auth-tls, blah blah :) > > > > > > > > > > > > Evren > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >