give website access before dns propagation

2004-03-10 Thread William Dode
Hi,

In apache, how can i give access to my user before dns propagation ?

I would like that the user can use an url like that one
www.admindomain.tld/~www.newsite.tld

I can easily use an alias to redirect the document-root but i could'nt
change the user and group (for suexec)...

One solution that i find is to create a subdomains
(newsite.admindomain.tld) but i would prefer to find an apache solution
(to don't reload dns database)

Any idea ?
 
-- 
William - http://flibuste.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: give website access before dns propagation

2004-03-10 Thread William Dode
=?ISO-8859-13?Q?Andrius_Kazimieras_Kasparavi=E8ius?= <[EMAIL PROTECTED]> writes:

> use *.admindomain.tld,
>
> ORIGIN admindomain.tld.
>
> * IN  CNAME   users.admindomain.tld.
>
> and then suexec for every virtual

good idea, thanks

-- 
William - http://flibuste.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



qmail relaying

2004-03-13 Thread William Dode
hi,

I must change the machine of a mx. The first one is with qmail and the
second with exim.
Before the dns propagation, i would like that all the mail who still
arrive on the qmail machine will be redirected to the new one. But i
don't know qmail...

Is it enough to remove the domain from /var/qmail/control/virtualsdomains
and put it on rcpthosts ?

thanks

-- 
William - http://flibuste.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: qmail relaying

2004-03-13 Thread William Dode
"Richard Zuidhof" <[EMAIL PROTECTED]> writes:

> William Dode <[EMAIL PROTECTED]>:
>
>> I must change the machine of a mx. The first one is with qmail and the
>> second with exim.
>> Before the dns propagation, i would like that all the mail who still
>> arrive on the qmail machine will be redirected to the new one. But i
>> don't know qmail...
>>
>> Is it enough to remove the domain from
>> /var/qmail/control/virtualsdomains and put it on rcpthosts ?
>
> It needs to stay in rcpthosts but you need to create an smtproute to get the
> mail on the second server. /var/qmail/control/smtproutes should contain a
> line like:
> domain.com:eximmx.domain.com

thanks

-- 
William - http://flibuste.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



courier-pop and eudora3

2004-03-15 Thread William Dode
Hi,

I created virtual-users with the email for login, but users of eudora3
macintosh said me that they cannot use a login with @ because they must
write [EMAIL PROTECTED]
Shall i create specific login with % instead of @ just for them or is
there a better solution ?

thanks

-- 
William - http://flibuste.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: courier-pop and eudora3

2004-03-16 Thread William Dode
Hi,

I post again, maybe my question was not clean, english is difficult for
me...

How can i allow my user to pop with two login : [EMAIL PROTECTED] and
name%domain.tld ? Shall i create two user in userdb ? It works but i
would like to know if there is a better solution.

thanks again !

-- 
William - http://flibuste.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: [PHP] safe mode bug ?

2004-06-06 Thread William Dode
Andreas John <[EMAIL PROTECTED]> writes:

> Hi!
>
> There are 2.5 possibilities that make sense.
>
> a.) mod_suphp [Any volunteers to put that into debian tree??:-)]
> www.suphp.org
> b.) Run php as cgi and attach she-bang (#!/path/to/pgp-cgi)
> c.)  Run php as cgi and teach the environment to treat .php files like
> binaries with the "binfmt" kernel module
>
> Personally I did not decide wether to take a.) or c.) ...

When you run as cgi, with suexec, you need also to have a chmod +x, and
good group and owner. So it seems to be a pain in the begin but after
you're happy to have something really secure.

-- 
William - http://flibuste.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Defining ISP?

2004-09-17 Thread William Dode
Craig Sanders <[EMAIL PROTECTED]> writes:

> On Thu, Sep 16, 2004 at 11:35:30AM -0400, Darrel O'Pry wrote:
>> Meta-Packages that reflect my deployments would include:
>> 
>>Qmail-MX-scanner (options for NFS, local, and qmtp delivery)
>>  (vpopmail, djbdns, qmail-scr, qmail-scanner, spamassassin,
>>ClamAV)
>> [...]
>>DNS-primary   (djbdns, VegaDNS, mysql)
>>DNS-secondary (djbdns)
>
> both qmail and djbdns are non-free and could never be part of a debian-isp
> meta package.
>
> on a more general note, this highlights exactly why such a meta-package
> wouldn't be very useful anyway.  there are many alternative packages which
> provide the essential ISP services (mail, web, dns, database server, etc), and
> everyone has their own preferences, requirements and configuration
> peculiarities.  making a one-size-fits-all meta-package just isn't going to
> work.
>
> in any case, it isn't needed.  debian is already the perfect ISP distribution.
> just install the base and then apt-get install whatever server packages you
> want for the particular server you are building.  pretty nearly every free
> software program that provides ISP-related services is available as a debian
> package.

Something interesting is the differents packages of exim :
exim4-deamon-heavy and exim4-deamon-light. It could be interesting to
have the same things with httpd, dns...

-- 
William - http://flibuste.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



give website access before dns propagation

2004-03-10 Thread William Dode
Hi,

In apache, how can i give access to my user before dns propagation ?

I would like that the user can use an url like that one
www.admindomain.tld/~www.newsite.tld

I can easily use an alias to redirect the document-root but i could'nt
change the user and group (for suexec)...

One solution that i find is to create a subdomains
(newsite.admindomain.tld) but i would prefer to find an apache solution
(to don't reload dns database)

Any idea ?
 
-- 
William - http://flibuste.net




Re: give website access before dns propagation

2004-03-10 Thread William Dode
=?ISO-8859-13?Q?Andrius_Kazimieras_Kasparavi=E8ius?= <[EMAIL PROTECTED]> writes:

> use *.admindomain.tld,
>
> ORIGIN admindomain.tld.
>
> * IN  CNAME   users.admindomain.tld.
>
> and then suexec for every virtual

good idea, thanks

-- 
William - http://flibuste.net




qmail relaying

2004-03-13 Thread William Dode
hi,

I must change the machine of a mx. The first one is with qmail and the
second with exim.
Before the dns propagation, i would like that all the mail who still
arrive on the qmail machine will be redirected to the new one. But i
don't know qmail...

Is it enough to remove the domain from /var/qmail/control/virtualsdomains
and put it on rcpthosts ?

thanks

-- 
William - http://flibuste.net




Re: qmail relaying

2004-03-13 Thread William Dode
"Richard Zuidhof" <[EMAIL PROTECTED]> writes:

> William Dode <[EMAIL PROTECTED]>:
>
>> I must change the machine of a mx. The first one is with qmail and the
>> second with exim.
>> Before the dns propagation, i would like that all the mail who still
>> arrive on the qmail machine will be redirected to the new one. But i
>> don't know qmail...
>>
>> Is it enough to remove the domain from
>> /var/qmail/control/virtualsdomains and put it on rcpthosts ?
>
> It needs to stay in rcpthosts but you need to create an smtproute to get the
> mail on the second server. /var/qmail/control/smtproutes should contain a
> line like:
> domain.com:eximmx.domain.com

thanks

-- 
William - http://flibuste.net




courier-pop and eudora3

2004-03-15 Thread William Dode
Hi,

I created virtual-users with the email for login, but users of eudora3
macintosh said me that they cannot use a login with @ because they must
write [EMAIL PROTECTED]
Shall i create specific login with % instead of @ just for them or is
there a better solution ?

thanks

-- 
William - http://flibuste.net




Re: courier-pop and eudora3

2004-03-16 Thread William Dode
Hi,

I post again, maybe my question was not clean, english is difficult for
me...

How can i allow my user to pop with two login : [EMAIL PROTECTED] and
name%domain.tld ? Shall i create two user in userdb ? It works but i
would like to know if there is a better solution.

thanks again !

-- 
William - http://flibuste.net




Re: [PHP] safe mode bug ?

2004-06-06 Thread William Dode
Andreas John <[EMAIL PROTECTED]> writes:

> Hi!
>
> There are 2.5 possibilities that make sense.
>
> a.) mod_suphp [Any volunteers to put that into debian tree??:-)]
> www.suphp.org
> b.) Run php as cgi and attach she-bang (#!/path/to/pgp-cgi)
> c.)  Run php as cgi and teach the environment to treat .php files like
> binaries with the "binfmt" kernel module
>
> Personally I did not decide wether to take a.) or c.) ...

When you run as cgi, with suexec, you need also to have a chmod +x, and
good group and owner. So it seems to be a pain in the begin but after
you're happy to have something really secure.

-- 
William - http://flibuste.net