dot qmail no effect

2000-08-08 Thread Said Madrus

Dear all,
i have already installed freebsd, qmail, daemontools, ucspi-tcp, mysql,
vpopmail, checkpassword.
the problem is i can not give intruction in dot qmail like this :
 &[EMAIL PROTECTED]
|if [ "$SENDER" = "[EMAIL PROTECTED]" ]; then echo -e "Don't send me
again"; exit 100; fi
please anybody can explain to me why ??
thank you very much

~said madrus




Re: vaddaliasdomain (fwd)

2000-08-08 Thread Einar Bordewich

> > Ken Jones
> 
> The answer to your question is easy. A new vpopmail api function would
> need to be added to support this. Which seems like a reasonable change.
> But that's why it wasn't done before. Instead we used an old function
> and added the symbolic link.

So, in other words this sugestion is a candidate for TODO ;-)

regards
-- 

IDG New Media Einar Bordewich
Technical Manager  Phone: +47 2336 1420
E-Mail:   [EMAIL PROTECTED]






Re: dot qmail no effect

2000-08-08 Thread Markus Wuebben

" Dear all,
" i have already installed freebsd, qmail, daemontools, ucspi-tcp, mysql,
" vpopmail, checkpassword.
" the problem is i can not give intruction in dot qmail like this :
"  &[EMAIL PROTECTED]
" |if [ "$SENDER" = "[EMAIL PROTECTED]" ]; then echo -e "Don't send me
" again"; exit 100; fi
" please anybody can explain to me why ??
" thank you very much


well then try this in your .qmail file

-
&[EMAIL PROTECTED]
| preline reject.sh $SENDER


the reject.sh contains the following.
-
#!/bin/sh
 
SENDER=$1
 
if [ "$SENDER" = "[EMAIL PROTECTED]" ]; then
echo "Sender: $SENDER rejected"
exit 100;
fi
echo "Sender: $SENDER accepted";
exit 0;
---


This should work.


Markus



" 
" ~said madrus
" 

-- 
Markus Wuebben
 
* ID-PRO Deutschland GmbH (Products & Development) 
* Tel.: +49 (0) 2932 - 916 - 135 * Fax - 236 
* mailto:[EMAIL PROTECTED]
* http://open-for-the-better.com



Re: email free...

2000-08-08 Thread Michael T. Babcock

Incidentally, the domains could have soft links into the /var/vpopmail
directory, allowing normal operation.

- Original Message -
From: "Delanet Administration" <[EMAIL PROTECTED]>


> While I have not looked at the new code releases, I do know that
previously
> the vpopmail directory was defined in config.h and used for pop and smtp
based
> on that. Vadddomain also knew to use that same path as well. I'm sure it
could
> be modified to look anywhere with minimal effort...perhaps have it get the
> value from /var/qmail/users/assign for the path instead of pre-defining it
at
> compile time. This seems to me a far more flexible way to accomplish what
your
> asking, however could add some latency as it did the lookup each delivery
or
> pop3 check.

...
> > Incidentally, if you change the directory vpopmail uses for the domain,
are
> > there any inherent bugs (software that doesn't ask vpopmail where the
> > maildirs are, etc.)??
> >
> > /var/vpopmail/01/domain1
> > /var/vpopmail/01/domain2
> > /var/vpopmail/01/domain3
> > /var/vpopmail/02/domain1
> > /var/vpopmail/02/domain2
> > /var/vpopmail/02/domain3
> >
> > This would let you mount /var/vpopmail/01 on one drive, and
/var/vpopmail/02
> > on another.





vadduser user problem,Urgent!!!!!

2000-08-08 Thread fgw

Hi 
   who can help me?
   I add user by vchkpw's API vadduser function.on web. but it frequently happen
to as below error message:
>>
>user directory aready exit.
>please contact administrator.

I am not adduser the same userneme before this
Why?.


---
163µç×ÓÓʾ֣¬¸øÄú¸üÍêÃÀEmail·þÎñ£¡
http://www.163.net





RFE: Server Root vs Document Root

2000-08-08 Thread Nathan J. Mehl


One thing that's been mildly aggravating me about vpopmal for a while
now is that no amount of playing with the autoconf options seems to
allow me to seperate the "application root", ie: ~vpopmail/{bin|include|lib}
from the "document root", ie ~vpopmail/{users|domains}.

Am I mising the proper incantation of "configure" to do this with, or
is this really not possible at the moment?

-n

<[EMAIL PROTECTED]>
"I'm perfectly willing to believe that the MPAA ratings board are the only
people left in America who don't move when they fuck, but do they have to ruin
the fun for the rest of us?"(--Charles Taylor)




ETRN

2000-08-08 Thread Abdul Naseer



I want to configure my qmail server to accept ETRN 
requests. If any one has done this, please tell me how to do 
this
 
TIA
 
Naseer


Re: scripts for oracel

2000-08-08 Thread Balaji Hare Ram Balaji

hi

as you said, iam bae to create table vpopmail, relay
when i add domain, its not writing in to database.

i did like this in voracle.h

/* Edit to match your set up */
#define ORACLE_SERVICE   "ORCL"
#define ORACLE_USER  "system"
#define ORACLE_PASSWD"manager"
#define ORACLE_HOME  "ORACLE_HOME=/export/home/oracle" ( oracle
path)
/* End of setup section*/

WHAT ABOUT THIS, IS THIS REQUIRE OR ABOVE ONE ENOUGH.

/* defaults - no need to change */
#define ORACLE_DEFAULT_TABLE "vpopmail"
#define ORACLE_DATABASE  "orcl1"
#define ORACLE_DOT_CHAR '_'
#define ORACLE_LARGE_USERS_TABLE "users"

WHEN I CRATE USER, ./VADDDOMAIN DOMAIN.COM
ITS NOT CREATING IN DATABASE,
ITS ABLE TO CREATE IN  /HOME/VPOPMAIL/DOMAINS DIRECTORY.

what could be the problem

thanks

balaji

Ken Jones wrote:

> Balaji Hare Ram Balaji wrote:
> >
> > is there any body help out of creating table and database on oracle
> > i have much idea, but iam noit understand how to do that.
> > if any body supply sql scripts and how to implement
> >
> > snd help me how to corodinate with vpopmail
> >
> > i ahve already an existing user database with username and password, i
> > can use them and go with vpopmail
> >
> > help
> > balaji
>
> Hi Balaji,
>
> The vpopmail mailing list is at [EMAIL PROTECTED] not
> [EMAIL PROTECTED] ;]
>
> If you can access oracle from the command line, and log in.
> Try these sql commands.
>
> CREATE TABLE VPOPMAIL (
> pw_name char(32) not null,
> pw_domain varchar(223) not null,
> pw_passwd varchar(255) not null,
> pw_uid int,
> pw_gid int,
> pw_gecos varchar(255),
> pw_dir varchar(255),
> pw_shell varchar(255), primary key(pw_name, pw_domain)
> )
>
> CREATE TABLE RELAY (
> ip_addr char(18) not null, timestamp char(12) primary key(ip_addr)
> )
>
> Ken




Re: RFE: Server Root vs Document Root

2000-08-08 Thread Ken Jones

"Nathan J. Mehl" wrote:
> 
> One thing that's been mildly aggravating me about vpopmal for a while
> now is that no amount of playing with the autoconf options seems to
> allow me to seperate the "application root", ie: ~vpopmail/{bin|include|lib}
> from the "document root", ie ~vpopmail/{users|domains}.
> 
> Am I mising the proper incantation of "configure" to do this with, or
> is this really not possible at the moment?

The configure/makefile's don't support it.

Ken



Re: scripts for oracel

2000-08-08 Thread Ken Jones

Balaji Hare Ram Balaji wrote:
> 
> hi
> 
> as you said, iam bae to create table vpopmail, relay
> when i add domain, its not writing in to database.
> 
> i did like this in voracle.h
> 
> /* Edit to match your set up */
> #define ORACLE_SERVICE   "ORCL"
> #define ORACLE_USER  "system"
> #define ORACLE_PASSWD"manager"
> #define ORACLE_HOME  "ORACLE_HOME=/export/home/oracle" ( oracle
> path)
> /* End of setup section*/
> 
> WHAT ABOUT THIS, IS THIS REQUIRE OR ABOVE ONE ENOUGH.

You must set ORACLE_USER to be a valid user in oracle
and you must set ORACLE_PASSWD to be a valid password
for that user. And you must set ORACLE_HOME to point
to the base directory of your oracle installation.

Otherwise, it won't work.

Ken



smtp auth and vpopmail

2000-08-08 Thread Ken Jones

Does anyone have vpopmail working with smtp authentication?

I'm trying to make the 
http://members.elysium.pl/brush/qmail-smtpd-auth/
code work with vpopmail and netscape 4.72. But
no luck so far.

If you have it working, what is your startup line
for tcpserver/qmail-smtpd? What changes did you
make to the qmail-smtpd.c code besides applying
the patch?

Ken Jones
inter7



mysql switch

2000-08-08 Thread Clint Simmons

First..

Heres my ./configure line :

--enable-mysql=y --enable-ip-alias-domain=y --enable-roaming-users=y

Everything compiled fine. I've been running vpopmail for years now. Although
i'm very new at mysql.
I didn't have any problems with the conversion (vconvert -c -s).

Here is my directory structure /var/qmail/vpopmail:

domains/
vdomain1.com ->>points to users (so i can have the main domain
virtual)
vdomian3.com
vdomain3.com
users/
all local pop3 users

vdomain1.com is listed as vdomain1.com:vdomain1.com in
/controls/virtualdomains
After the conversion in which it said vdomain1.com successfull. It wouldn't
find any of the users. I checked mysql (select * from vpopmail), it showed
all
users as user | vdomain1.com. I didn't go into great detail but, it would
authenticate
my other virutal domains. 
I also have a few users still authenicate from /etc/passwd. Will the mysql
coversion 
make /etc/passwd not authenticate?
What do i need to do about my vdomain1.com, which is also my local domain?

I hope i've explained this good enough. I'm up for any suggestions..

Thanks,
Clint Simmons
KZ Universal




OS quota and vpopmail user quota

2000-08-08 Thread Kosaka Masahiko
Hi all.

Does anyone know how to setup OS quota as vpopmail user quota?

I have to setup both web and mail space to each user,and have to
set quota.

vpopmail(vdeliver) may check only user mail space.


--
Masahiko Kosaka
FastNet,inc.


nameserver-Problem (was: Maildir-Problem)

2000-08-08 Thread Laura Reising

Hello all!

> >bash-2.02# netcat localhost 110
> >
> ><-- here ist a break about ca 10 seconds !!! -->
> >
> >+OK <[EMAIL PROTECTED]>

aaarg! Now, that this prob is solved (thanks to Manuel) I got the same
prob with qmail (and even more worse) on an other mashine:

snafu4:~ # netcat localhost 25

<-- here is a break about ca 1 Minute !!! -->

220 snafu4.snafu ESMTP
QUIT
221 snafu4.snafu
snafu4:~ #

I found out, that I can fix this prob when I tell the system (SuSE
Linux 6.1) _not_ to use a Nameserver. But I sometimes need the
Nameserver!

Why does snafu4 use the Nameserver when I call a local address? Can I
forbid this? This is my /etc/hosts:

127.0.0.1   localhost
192.168.0.1 snafu1.snafusnafu1
192.168.0.4 snafu4.snafusnafu4
127.0.0.2   mysnafu.de  mysnafu


Any ideas? Thank you very mutch.

Ciao
Laura




Re: mysql switch

2000-08-08 Thread Ken Jones

Clint Simmons wrote:
> 
> First..
> 
> Heres my ./configure line :
> 
> --enable-mysql=y --enable-ip-alias-domain=y --enable-roaming-users=y
> 
> Everything compiled fine. I've been running vpopmail for years now. Although
> i'm very new at mysql.
> I didn't have any problems with the conversion (vconvert -c -s).
> 
> Here is my directory structure /var/qmail/vpopmail:
> 
> domains/
> vdomain1.com ->>points to users (so i can have the main domain
> virtual)
> vdomian3.com
> vdomain3.com
> users/
> all local pop3 users
> 
> vdomain1.com is listed as vdomain1.com:vdomain1.com in
> /controls/virtualdomains
> After the conversion in which it said vdomain1.com successfull. It wouldn't
> find any of the users. I checked mysql (select * from vpopmail), it showed
> all
> users as user | vdomain1.com. I didn't go into great detail but, it would
> authenticate
> my other virutal domains.
> I also have a few users still authenicate from /etc/passwd. Will the mysql
> coversion
> make /etc/passwd not authenticate?
> What do i need to do about my vdomain1.com, which is also my local domain?
> 
> I hope i've explained this good enough. I'm up for any suggestions..
> 
> Thanks,
> Clint Simmons
> KZ Universal

First thing to try:
In the vpopmail src directory edit config.h
search for DEFAULT. Change the value of that
variable to "vdomain1.com"

make clean
make
make install-strip

Then try the authentication.

The same thing can be done with an additional configure option
--enable-default-domain=vdomain1.com

I HIGHLY recommend using the default domain option and NOT
using the ~vpopmail/users and a symbolic link. The default
domain option will give you exactly what you are looking for,
plus you can then manage your primary vdomain users like
any of the other vdomains. Which means qmailadmin will work
for them.

I'm not sure, but mysql authentication might not work
with ~vpopmail/users

In any case, /etc/passwd authentication will work with
mysql unless you specifically turned it off.

Ken



Re: OS quota and vpopmail user quota

2000-08-08 Thread Ken Jones

Kosaka Masahiko wrote:
> 
> Hi all.
> 
> Does anyone know how to setup OS quota as vpopmail user quota?
> 
> I have to setup both web and mail space to each user,and have to
> set quota.
> 
> vpopmail(vdeliver) may check only user mail space.

If you only have one virtual domain, then you can use an OS
user quota on vpopmail to limit disk usage. However, if you
have multiple virtual domains under vpopmail, then the OS
user quota on the vpopmail user will apply to all virtual
domains. 

Currently, vpopmail only supports per user quotas, and not
per domain quotas.

Ken



RE: smtp auth and vpopmail

2000-08-08 Thread Kevin Bucknum

Ken - is your problem just with Netscape?  Did you uncomment out the #DEFINE
SMTPAUTH_NETSCAPE_WORKAROUND line??

> -Original Message-
> From: kbo [mailto:kbo]On Behalf Of Ken Jones
> Sent: Tuesday, August 08, 2000 11:58 AM
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: smtp auth and vpopmail
>
>
> Does anyone have vpopmail working with smtp authentication?
>
> I'm trying to make the
> http://members.elysium.pl/brush/qmail-smtpd-auth/
> code work with vpopmail and netscape 4.72. But
> no luck so far.
>
> If you have it working, what is your startup line
> for tcpserver/qmail-smtpd? What changes did you
> make to the qmail-smtpd.c code besides applying
> the patch?
>
> Ken Jones
> inter7
>




Re: nameserver-Problem (was: Maildir-Problem)

2000-08-08 Thread Ken Jones

Laura Reising wrote:
> 
> Hello all!
> 
> > >bash-2.02# netcat localhost 110
> > >
> > ><-- here ist a break about ca 10 seconds !!! -->
> > >
> > >+OK <[EMAIL PROTECTED]>
> 
> aaarg! Now, that this prob is solved (thanks to Manuel) I got the same
> prob with qmail (and even more worse) on an other mashine:
> 
> snafu4:~ # netcat localhost 25
> 
> <-- here is a break about ca 1 Minute !!! -->
> 
> 220 snafu4.snafu ESMTP
> QUIT
> 221 snafu4.snafu
> snafu4:~ #
> 
> I found out, that I can fix this prob when I tell the system (SuSE
> Linux 6.1) _not_ to use a Nameserver. But I sometimes need the
> Nameserver!
> 
> Why does snafu4 use the Nameserver when I call a local address? Can I
> forbid this? This is my /etc/hosts:
> 
> 127.0.0.1   localhost
> 192.168.0.1 snafu1.snafusnafu1
> 192.168.0.4 snafu4.snafusnafu4
> 127.0.0.2   mysnafu.de  mysnafu
> 
> Any ideas? Thank you very mutch.
> 
> Ciao
> Laura

You should use fully qualified hostnames.
snafu4.snafu isn't fully qualified.

edit your /var/qmail/control files and change
any occurance of snafu4.snafu with a real
hostname that will resolve in DNS. Then
restart qmail

Ken Jones



Re: smtp auth and vpopmail

2000-08-08 Thread Chris Seawood

Ken Jones wrote:
> 
> Does anyone have vpopmail working with smtp authentication?

A couple of weeks ago, I posted an updated patch to let smtp-auth use
vpopmail 4.8.6 for authentication.  The original instructions are still
at http://members.elysium.pl/brush/qmail-smtpd-auth/faq.html .

> I'm trying to make the
> http://members.elysium.pl/brush/qmail-smtpd-auth/
> code work with vpopmail and netscape 4.72. But
> no luck so far.

As Kevin Bucknum pointed out, make sure that you uncomment the
SMTPAUTH_NETSCAPE_WORKAROUND define in qmail-smtpd.c.

- cls



Using dots in forward/alias names

2000-08-08 Thread Antonio Nati

Sorry to ask an obvious question, but I scanned all the mailing list 
without results.

I need to forward and address like [EMAIL PROTECTED] elsewhere.

I set up .qmail-mickey.mouse (with "&[EMAIL PROTECTED]" inside), but it 
doesn't work, while the user [EMAIL PROTECTED] works nice.

How to handle the dot inside the name?

Thanks,

Tonino




Re: dot qmail no effect

2000-08-08 Thread Andrés

Where is the .qmail file?
Are you using it with a virtual user?

- Original Message - 
From: "Said Madrus" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 08, 2000 10:55 AM
Subject: dot qmail no effect


> Dear all,
> i have already installed freebsd, qmail, daemontools, ucspi-tcp, mysql,
> vpopmail, checkpassword.
> the problem is i can not give intruction in dot qmail like this :
>  &[EMAIL PROTECTED]
> |if [ "$SENDER" = "[EMAIL PROTECTED]" ]; then echo -e "Don't send me
> again"; exit 100; fi
> please anybody can explain to me why ??
> thank you very much
> 
> ~said madrus
> 
> 




problem oracle with vpopmail

2000-08-08 Thread Balaji Hare Ram Balaji

hi
i have oracle 8.0.5
when i try to make iam getting following error, and when try to see the
files its asking iam not able to find,
help please

./makelib cdbmake.a cdbmake_pack.o cdbmake_hash.o \
cdbmake_add.o
make[2]: Leaving directory `/home/balaji/vpopmail-4.8.7/cdb'
make[2]: Entering directory `/home/balaji/vpopmail-4.8.7'
gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
-Wall -c s
afestring.c
gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
-Wall -c v
popmail.c
gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
-Wall -c m
d5.c
gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
-Wall -c b
igdir.c
gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
-Wall -c v
auth.c
vauth.c:187: sqlda.h: No such file or directory
vauth.c:188: sqlcpr.h: No such file or directory
vauth.c:189: sqlca.h: No such file or directory
vauth.c:286: warning: `/*' within comment
vauth.c:290: warning: `/*' within comment
make[2]: *** [vauth.o] Error 1
make[2]: Leaving directory `/home/balaji/vpopmail-4.8.7'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/balaji/vpopmail-4.8.7'
make: *** [all-recursive-am] Error 2

balaji

Ken Jones wrote:

> Pierrot Driguez wrote:
> >
> > Hi folks !
> >
> > For sure a silly question but...
> >
> > I create a sample domain with qmail or vpopmail
> > (no matter) named : mydomain.fr
> > and a user named pierre
> >
> > As created for tests, this domain name has NOT
> > been declared to any internet authorities.
> >
> > Now, can I send a mail to a user such as :
> > [EMAIL PROTECTED]
> > from a valid provider without having a bounce ?
> >
> > Seem I have a first opinion,
> > but any confirmation would be welcome.
>
> In order for a email domain to be available to internet
> at large, it must be registered with an internet authority.
>
> Ken Jones




Re: smtp auth and vpopmail

2000-08-08 Thread Ken Jones

Chris Seawood wrote:
> 
> Ken Jones wrote:
> >
> > Does anyone have vpopmail working with smtp authentication?
> 
> A couple of weeks ago, I posted an updated patch to let smtp-auth use
> vpopmail 4.8.6 for authentication.  The original instructions are still
> at http://members.elysium.pl/brush/qmail-smtpd-auth/faq.html .
> 
> > I'm trying to make the
> > http://members.elysium.pl/brush/qmail-smtpd-auth/
> > code work with vpopmail and netscape 4.72. But
> > no luck so far.
> 
> As Kevin Bucknum pointed out, make sure that you uncomment the
> SMTPAUTH_NETSCAPE_WORKAROUND define in qmail-smtpd.c.
> 
> - cls

I got it working. If I run qmail-smtpd as the vpopmail user,
then there is no need for the patch to vchkpw.c 

I'm wondering how much overhead it takes to go the getuid
function call in vchkpw. If it doesn't take much, we might
as well add the check to the distribution. 

Ken



Re: Using dots in forward/alias names

2000-08-08 Thread Ken Jones

Antonio Nati wrote:
> 
> Sorry to ask an obvious question, but I scanned all the mailing list
> without results.
> 
> I need to forward and address like [EMAIL PROTECTED] elsewhere.
> 
> I set up .qmail-mickey.mouse (with "&[EMAIL PROTECTED]" inside), but it
> doesn't work, while the user [EMAIL PROTECTED] works nice.
> 
> How to handle the dot inside the name?
> 
> Thanks,
> 
> Tonino

replace the "." with a ":"

.qmail-mickey:mouse

Ken



RE: mysql switch

2000-08-08 Thread Clint Simmons


I switched to --enable-default-domain=vdomain1.com

it still requested the users dir and my other virtual domains
stopped working...
vchkpw: No user found [EMAIL PROTECTED]:vdomain2.ip.address

I'm lost..


-Original Message-
From: Ken Jones [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 08, 2000 12:21 PM
To: Clint Simmons
Cc: '[EMAIL PROTECTED]'
Subject: Re: mysql switch


Clint Simmons wrote:
> 
> First..
> 
> Heres my ./configure line :
> 
> --enable-mysql=y --enable-ip-alias-domain=y --enable-roaming-users=y
> 
> Everything compiled fine. I've been running vpopmail for years now.
Although
> i'm very new at mysql.
> I didn't have any problems with the conversion (vconvert -c -s).
> 
> Here is my directory structure /var/qmail/vpopmail:
> 
> domains/
> vdomain1.com ->>points to users (so i can have the main domain
> virtual)
> vdomian3.com
> vdomain3.com
> users/
> all local pop3 users
> 
> vdomain1.com is listed as vdomain1.com:vdomain1.com in
> /controls/virtualdomains
> After the conversion in which it said vdomain1.com successfull. It
wouldn't
> find any of the users. I checked mysql (select * from vpopmail), it showed
> all
> users as user | vdomain1.com. I didn't go into great detail but, it would
> authenticate
> my other virutal domains.
> I also have a few users still authenicate from /etc/passwd. Will the mysql
> coversion
> make /etc/passwd not authenticate?
> What do i need to do about my vdomain1.com, which is also my local domain?
> 
> I hope i've explained this good enough. I'm up for any suggestions..
> 
> Thanks,
> Clint Simmons
> KZ Universal

First thing to try:
In the vpopmail src directory edit config.h
search for DEFAULT. Change the value of that
variable to "vdomain1.com"

make clean
make
make install-strip

Then try the authentication.

The same thing can be done with an additional configure option
--enable-default-domain=vdomain1.com

I HIGHLY recommend using the default domain option and NOT
using the ~vpopmail/users and a symbolic link. The default
domain option will give you exactly what you are looking for,
plus you can then manage your primary vdomain users like
any of the other vdomains. Which means qmailadmin will work
for them.

I'm not sure, but mysql authentication might not work
with ~vpopmail/users

In any case, /etc/passwd authentication will work with
mysql unless you specifically turned it off.

Ken



Re: ETRN

2000-08-08 Thread Einar Bordewich

Please ask this on [EMAIL PROTECTED] ([EMAIL PROTECTED])
On this list that is noise ;-)

regards
--

IDG New Media Einar Bordewich
Technical Manager  Phone: +47 2336 1420
E-Mail:   [EMAIL PROTECTED]


- Original Message -
From: "Abdul Naseer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 5:41 PM
Subject: ETRN


I want to configure my qmail server to accept ETRN requests. If any one has
done this, please tell me how to do this

TIA

Naseer





Re: smtp auth and vpopmail

2000-08-08 Thread Chris Seawood

Ken Jones wrote:
> 
> I got it working. If I run qmail-smtpd as the vpopmail user,
> then there is no need for the patch to vchkpw.c

Well, it all depends upon how you feel about allowing qmail-smtpd access
to all of the vpopmail user's files and if you have any other files that
are only accessible via the qmaild user.   I wasn't sure what
side-effect would occur if I just changed qmail-smtpd to be run by an
arbitrary user so I just changed the group instead.

- cls



Re: problem oracle with vpopmail

2000-08-08 Thread Balaji Hare Ram Balaji

i found the files and pointed to that
still iam getting the following errors
please check attachment and give me some suggestions

thanks

balaji

Ken Jones wrote:

> Balaji Hare Ram Balaji wrote:
> >
> > hi
> > i have oracle 8.0.5
> > when i try to make iam getting following error, and when try to see the
> > files its asking iam not able to find,
> > help please
> >
> > ./makelib cdbmake.a cdbmake_pack.o cdbmake_hash.o \
> > cdbmake_add.o
> > make[2]: Leaving directory `/home/balaji/vpopmail-4.8.7/cdb'
> > make[2]: Entering directory `/home/balaji/vpopmail-4.8.7'
> > gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
> > -Wall -c s
> > afestring.c
> > gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
> > -Wall -c v
> > popmail.c
> > gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
> > -Wall -c m
> > d5.c
> > gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
> > -Wall -c b
> > igdir.c
> > gcc -I. -I/oraeng/app/oracle/product/8.0.5/precomp/public  -g -O2
> > -Wall -c v
> > auth.c
> > vauth.c:187: sqlda.h: No such file or directory
> > vauth.c:188: sqlcpr.h: No such file or directory
> > vauth.c:189: sqlca.h: No such file or directory
> > vauth.c:286: warning: `/*' within comment
> > vauth.c:290: warning: `/*' within comment
> > make[2]: *** [vauth.o] Error 1
> > make[2]: Leaving directory `/home/balaji/vpopmail-4.8.7'
> > make[1]: *** [all-recursive] Error 1
> > make[1]: Leaving directory `/home/balaji/vpopmail-4.8.7'
> > make: *** [all-recursive-am] Error 2
>
> You need to locate the sqlda.h files on your machine. Then
> change -I/oraeng/app/oracle/product/8.0.5/precomp/public
> to the path where the sqlda.h file lives.
>
> Ken

 vpoperror.log


Virtual domain comunication

2000-08-08 Thread Pierrot Driguez

Hi folks !

For sure a silly question but...

I create a sample domain with qmail or vpopmail
(no matter) named : mydomain.fr
and a user named pierre

As created for tests, this domain name has NOT
been declared to any internet authorities.

Now, can I send a mail to a user such as :
[EMAIL PROTECTED]
from a valid provider without having a bounce ?

Seem I have a first opinion,
but any confirmation would be welcome.

Thanks

-- 
Pierrot



Re: dot qmail no effect

2000-08-08 Thread Said Madrus

thanks all,
the problem is wrong place of dot qmail file, it should be in domain
directory not in user maildir.
but how many .qmail- can we create in that directory ??
thanks again.

~said madrus

- Original Message -
From: "Andrés" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 09, 2000 1:56 AM
Subject: Re: dot qmail no effect


> Where is the .qmail file?
> Are you using it with a virtual user?
>
> - Original Message -
> From: "Said Madrus" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, August 08, 2000 10:55 AM
> Subject: dot qmail no effect
>
>
> > Dear all,
> > i have already installed freebsd, qmail, daemontools, ucspi-tcp, mysql,
> > vpopmail, checkpassword.
> > the problem is i can not give intruction in dot qmail like this :
> >  &[EMAIL PROTECTED]
> > |if [ "$SENDER" = "[EMAIL PROTECTED]" ]; then echo -e "Don't send me
> > again"; exit 100; fi
> > please anybody can explain to me why ??
> > thank you very much
> >
> > ~said madrus





about cdb,mysql,oracle

2000-08-08 Thread fgw

I have 50K user in single domains.I authenticate user by cdb.
What advance suggestions to me.




---
163µç×ÓÓʾ֣¬¸øÄú¸üÍêÃÀEmail·þÎñ£¡
http://www.163.net





Re: nameserver-Problem (was: Maildir-Problem)

2000-08-08 Thread Laura Reising

Hello Ken,

> > snafu4:~ # netcat localhost 25
> >
> > <-- here is a break about ca 1 Minute !!! -->
> >
> > 220 snafu4.snafu ESMTP
> > QUIT
> > 221 snafu4.snafu
> > snafu4:~ #
> >
> > I found out, that I can fix this prob when I tell the system (SuSE
> > Linux 6.1) _not_ to use a Nameserver. But I sometimes need the
> > Nameserver!
> >
> > Why does snafu4 use the Nameserver when I call a local address? Can I
> > forbid this? This is my /etc/hosts:
> >
> > 127.0.0.1   localhost
> > 192.168.0.1 snafu1.snafusnafu1
> > 192.168.0.4 snafu4.snafusnafu4
> > 127.0.0.2   mysnafu.de  mysnafu
>
> You should use fully qualified hostnames.
> snafu4.snafu isn't fully qualified.

When is a hostname "fully qualified" (RFC?)? Indeed snafu4 is the host
and snafu is my (lokal) domain.
Of course this would not be resolved by a DNS-Server, but hasn't the
/etc/hosts-File precedence against DNS?

Besides I didn't call "snafu4.snafu" but "localhost".


> edit your /var/qmail/control files and change
> any occurance of snafu4.snafu with a real
> hostname that will resolve in DNS.

The Problem is, that the mashine I declared as DNS server is not allways
online.


Sorry, I'm a little bit inexperienced in this, but I'm ready to learn.

Ciao
Laura




Re: nameserver-Problem (was: Maildir-Problem)

2000-08-08 Thread Laura Reising

I wrote:

> > You should use fully qualified hostnames.
> > snafu4.snafu isn't fully qualified.
>
> When is a hostname "fully qualified" (RFC?)? Indeed snafu4 is the host
> and snafu is my (lokal) domain.
> Of course this would not be resolved by a DNS-Server, but hasn't the
> /etc/hosts-File precedence against DNS?
>
> Besides I didn't call "snafu4.snafu" but "localhost".
>
> > edit your /var/qmail/control files and change
> > any occurance of snafu4.snafu with a real
> > hostname that will resolve in DNS.
>
> The Problem is, that the mashine I declared as DNS server is not allways
> online.

I think I got it!

I study the headers of a test-mail:

Received: from softdnserror (HELO online.de) (192.168.0.1)
  by softdnserror with SMTP; 8 Aug 2000 19:17:28 -

It seems that qmail tries to resolve the domain "online.de" when I declare a
nameserver. The nameserver is not allways online, so there is no answer from
the nameserver and the call hangs.

If I tell the mashine not to use a nameserver, the Resolution fails and the
call proceeds.

Next question: Can I tell qmail not to resolve the Domain?

Ciao
Laura





Re: Virtual domain comunication

2000-08-08 Thread Ken Jones

Pierrot Driguez wrote:
> 
> Hi folks !
> 
> For sure a silly question but...
> 
> I create a sample domain with qmail or vpopmail
> (no matter) named : mydomain.fr
> and a user named pierre
> 
> As created for tests, this domain name has NOT
> been declared to any internet authorities.
> 
> Now, can I send a mail to a user such as :
> [EMAIL PROTECTED]
> from a valid provider without having a bounce ?
> 
> Seem I have a first opinion,
> but any confirmation would be welcome.

In order for a email domain to be available to internet
at large, it must be registered with an internet authority.

Ken Jones



authdaemond and vsql_getpw

2000-08-08 Thread Einar Bordewich

Occasionally I have to stop/start authdaemond to login to sqwebmail. This
happens when I've choosen to logout, instead of timeout. I see this error
pop up in the console where I restarted authdaemond: vsql_getpw: failed
select

In authdaemonrc I have: authmodulelist="authvchkpw" as the only auth module.

I have no problems with login through pop or imap. There is no entries in
mail or messages.

sqwebmail-0.99
courier-imap-0.99
vpopmail-4.8.7
mysql Ver 9.38 Distrib 3.22.32

BTW: I run two authdaemond, one for courier-imap and one for sqwebmail-0.99.
Could these two authdaemons be combined?

--

IDG New Media Einar Bordewich
Technical Manager  Phone: +47 2336 1420
E-Mail:   [EMAIL PROTECTED]