handling parameter in query_string with mod_rewrite
Hi All,
I would need some help with mod_rewrite :-( .
What I would need is to add an header to the response if the request
contains a URL parameter and the value of that parameter should be used
in that header.
Just to clarify, if the url is:
/download/files/1ytreefecsw?filename=myfile.txt
I would like to return this file /download/files/1ytreefecsw setting in
the response "Content-disposition" header with value myfile.txt:
"Content-disposition: attachment; filename=myfile.txt
I was able to do this thing checking a request header using:
SetEnvIf x-filename "^(.+)$" FILENAME=$1
Header set "Content-disposition" "attachment;
filename=%{FILENAME}e" env=FILENAME
but now i need to do similar thing using a parameter.
I understand that there is not a simple way to access to the
query_string and actually this is not possible using SetEnvIf and it
seems the right way is using mod_rewrite .... but i don't find the
solution.
At the moment i'm trying something like:
RewriteEngine on
RewriteRule ^(.*)filename=(.*)$ $1 [E=FILENAME:$2]
Header set "Content-disposition" "attachment;
filename=%{FILENAME}e" env=FILENAME
but it doesn't work :-((
Could you help me ?
Thanks
ste
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
" from the digest: users-digest-unsubscribe [at] httpd.apache.org
For additional commands, e-mail: users-help [at] httpd.apache.org
Re: handling parameter in query_string with mod_rewrite
--0050450140ee1c2243047fc01ed1
Content-Type: text/plain; charset=ISO-8859-1
RewriteRule doesn't work with the query part or the URI thus will not work
in your case. You need to try RewriteCond directive combined with
RewriteRule. Something like this maybe?
RewriteEngine On
RewriteCond %{QUERY_STRING} ^(filename=myfile.txt)$
RewriteRule .* - [E=FILENAME:%1]
Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
env=FILENAME
I'm not sure though about the effect of the Header set directive, is it
going to have a global effect afterwords or not?
Igor
On Wed, Feb 17, 2010 at 9:21 AM, Stefano Nichele
<stefano.nichele [at] gmail.com>wrote:
> Hi All,
> I would need some help with mod_rewrite :-( .
> What I would need is to add an header to the response if the request
> contains a URL parameter and the value of that parameter should be used in
> that header.
>
> Just to clarify, if the url is:
>
> /download/files/1ytreefecsw?filename=myfile.txt
>
> I would like to return this file /download/files/1ytreefecsw setting in the
> response "Content-disposition" header with value myfile.txt:
>
> "Content-disposition: attachment; filename=myfile.txt
>
> I was able to do this thing checking a request header using:
> SetEnvIf x-filename "^(.+)$" FILENAME=$1
> Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
> env=FILENAME
>
> but now i need to do similar thing using a parameter.
>
> I understand that there is not a simple way to access to the query_string
> and actually this is not possible using SetEnvIf and it seems the right way
> is using mod_rewrite .... but i don't find the solution.
> At the moment i'm trying something like:
>
> RewriteEngine on
> RewriteRule ^(.*)filename=(.*)$ $1 [E=FILENAME:$2]
> Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
> env=FILENAME
>
> but it doesn't work :-((
>
> Could you help me ?
>
> Thanks
> ste
>
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
> For additional commands, e-mail: users-help [at] httpd.apache.org
>
>
--0050450140ee1c2243047fc01ed1
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
RewriteRule doesn't work with the query part or the URI thus will not w=
ork in your case. You need to try RewriteCond directive combined with Rewri=
teRule. Something like this maybe?<br><br>RewriteEngine On<br>RewriteCond %=
{QUERY_STRING} ^(filename=3Dmyfile.txt)$<br>
RewriteRule =A0 .*=A0 - [E=3DFILENAME:%1]<br>Header set "Content-dispo=
sition" "attachment; filename=3D%{FILENAME}e" env=3DFILENAME=
<br><br>I'm not sure though about the effect of the Header set directiv=
e, is it going to have a global effect afterwords or not?<br>
<br>Igor<br><br><div class=3D"gmail_quote">On Wed, Feb 17, 2010 at 9:21 AM,=
Stefano Nichele <span dir=3D"ltr"><<a href=3D"mailto:stefano.nichele [at] gm=
ail.com">stefano.nichele [at] gmail.com</a>></span> wrote:<br><blockquote cla=
ss=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, 204, 204); marg=
in: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi All,<br>
I would need some help with mod_rewrite :-( .<br>
What I would need is to add an header to the response if the request contai=
ns a URL parameter and the value of that parameter should be used in that h=
eader.<br>
<br>
Just =A0to clarify, if the url is:<br>
<br>
/download/files/1ytreefecsw?filename=3Dmyfile.txt<br>
<br>
I would like to return this file /download/files/1ytreefecsw setting in the=
response "Content-disposition" header with value myfile.txt:<br>
<br>
"Content-disposition: attachment; filename=3Dmyfile.txt<br>
<br>
I was able to do this thing checking a request header using:<br>
=A0 =A0SetEnvIf x-filename "^(.+)$" FILENAME=3D$1<br>
=A0 =A0Header set "Content-disposition" "attachment; filena=
me=3D%{FILENAME}e" env=3DFILENAME<br>
<br>
but now i need to do similar thing using a parameter.<br>
<br>
I understand that there is not a simple way to access to the query_string a=
nd actually this is not possible using SetEnvIf and it seems the right way =
=A0is using mod_rewrite .... but i don't find the solution.<br>
At the moment i'm trying something like:<br>
<br>
=A0 =A0RewriteEngine on<br>
=A0 =A0RewriteRule =A0 ^(.*)filename=3D(.*)$ =A0$1 [E=3DFILENAME:$2]<br>
=A0 =A0Header set "Content-disposition" "attachment; filena=
me=3D%{FILENAME}e" env=3DFILENAME<br>
<br>
but it doesn't work =A0:-((<br>
<br>
Could you help me ?<br>
<br>
Thanks<br>
ste<br>
<br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g" target=3D"_blank">users-unsubscribe [at] httpd.apache.org</a><br>
=A0" =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe [at] =
httpd.apache.org" target=3D"_blank">users-digest-unsubscribe [at] httpd.apache.o=
rg</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org" target=3D"_blank">users-help [at] httpd.apache.org</a><br>
<br>
</blockquote></div><br>
--0050450140ee1c2243047fc01ed1--
Re: handling parameter in query_string with mod_rewrite
--000e0cd5c61c8b9649047fc0321f
Content-Type: text/plain; charset=ISO-8859-1
Sorry this should have been like this actually
RewriteEngine On
RewriteCond %{QUERY_STRING} ^filename=(myfile.txt)$
RewriteRule .* - [E=FILENAME:%1]
to set the FILENAME variable to myfile.txt value.
Igor
On Wed, Feb 17, 2010 at 10:30 AM, Igor Cicimov <icicimov [at] gmail.com> wrote:
> RewriteRule doesn't work with the query part or the URI thus will not work
> in your case. You need to try RewriteCond directive combined with
> RewriteRule. Something like this maybe?
>
> RewriteEngine On
> RewriteCond %{QUERY_STRING} ^(filename=myfile.txt)$
> RewriteRule .* - [E=FILENAME:%1]
>
> Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
> env=FILENAME
>
> I'm not sure though about the effect of the Header set directive, is it
> going to have a global effect afterwords or not?
>
> Igor
>
>
> On Wed, Feb 17, 2010 at 9:21 AM, Stefano Nichele <
> stefano.nichele [at] gmail.com> wrote:
>
>> Hi All,
>> I would need some help with mod_rewrite :-( .
>> What I would need is to add an header to the response if the request
>> contains a URL parameter and the value of that parameter should be used in
>> that header.
>>
>> Just to clarify, if the url is:
>>
>> /download/files/1ytreefecsw?filename=myfile.txt
>>
>> I would like to return this file /download/files/1ytreefecsw setting in
>> the response "Content-disposition" header with value myfile.txt:
>>
>> "Content-disposition: attachment; filename=myfile.txt
>>
>> I was able to do this thing checking a request header using:
>> SetEnvIf x-filename "^(.+)$" FILENAME=$1
>> Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
>> env=FILENAME
>>
>> but now i need to do similar thing using a parameter.
>>
>> I understand that there is not a simple way to access to the query_string
>> and actually this is not possible using SetEnvIf and it seems the right way
>> is using mod_rewrite .... but i don't find the solution.
>> At the moment i'm trying something like:
>>
>> RewriteEngine on
>> RewriteRule ^(.*)filename=(.*)$ $1 [E=FILENAME:$2]
>> Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
>> env=FILENAME
>>
>> but it doesn't work :-((
>>
>> Could you help me ?
>>
>> Thanks
>> ste
>>
>>
>> ------------------------------------------------------------ ---------
>> The official User-To-User support forum of the Apache HTTP Server Project.
>> See <URL:http://httpd.apache.org/userslist.html> for more info.
>> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
>> " from the digest: users-digest-unsubscribe [at] httpd.apache.org
>> For additional commands, e-mail: users-help [at] httpd.apache.org
>>
>>
>
--000e0cd5c61c8b9649047fc0321f
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
Sorry this should have been like this actually<br><br>RewriteEngine On<br>R=
ewriteCond %{QUERY_STRING} ^filename=3D(myfile.txt)$<br>
RewriteRule =A0 .*=A0 - [E=3DFILENAME:%1]<br><br>to set the FILENAME variab=
le to myfile.txt value. <br><br>Igor<br><br><div class=3D"gmail_quote">On W=
ed, Feb 17, 2010 at 10:30 AM, Igor Cicimov <span dir=3D"ltr"><<a href=3D=
"mailto:icicimov [at] gmail.com">icicimov [at] gmail.com</a>></span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, =
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">RewriteRule doesn=
't work with the query part or the URI thus will not work in your case.=
You need to try RewriteCond directive combined with RewriteRule. Something=
like this maybe?<br>
<br>RewriteEngine On<br>RewriteCond %{QUERY_STRING} ^(filename=3Dmyfile.txt=
)$<br>
RewriteRule =A0 .*=A0 - [E=3DFILENAME:%1]<div class=3D"im"><br>Header set &=
quot;Content-disposition" "attachment; filename=3D%{FILENAME}e&qu=
ot; env=3DFILENAME<br><br></div>I'm not sure though about the effect of=
the Header set directive, is it going to have a global effect afterwords o=
r not?<br>
<font color=3D"#888888">
<br>Igor</font><div><div></div><div class=3D"h5"><br><br><div class=3D"gmai=
l_quote">On Wed, Feb 17, 2010 at 9:21 AM, Stefano Nichele <span dir=3D"ltr"=
><<a href=3D"mailto:stefano.nichele [at] gmail.com" target=3D"_blank">stefano=
..nichele [at] gmail.com</a>></span> wrote:<br>
<blockquote class=3D"gmail_quote" style=3D"border-left: 1px solid rgb(204, =
204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi All,<br>
I would need some help with mod_rewrite :-( .<br>
What I would need is to add an header to the response if the request contai=
ns a URL parameter and the value of that parameter should be used in that h=
eader.<br>
<br>
Just =A0to clarify, if the url is:<br>
<br>
/download/files/1ytreefecsw?filename=3Dmyfile.txt<br>
<br>
I would like to return this file /download/files/1ytreefecsw setting in the=
response "Content-disposition" header with value myfile.txt:<br>
<br>
"Content-disposition: attachment; filename=3Dmyfile.txt<br>
<br>
I was able to do this thing checking a request header using:<br>
=A0 =A0SetEnvIf x-filename "^(.+)$" FILENAME=3D$1<br>
=A0 =A0Header set "Content-disposition" "attachment; filena=
me=3D%{FILENAME}e" env=3DFILENAME<br>
<br>
but now i need to do similar thing using a parameter.<br>
<br>
I understand that there is not a simple way to access to the query_string a=
nd actually this is not possible using SetEnvIf and it seems the right way =
=A0is using mod_rewrite .... but i don't find the solution.<br>
At the moment i'm trying something like:<br>
<br>
=A0 =A0RewriteEngine on<br>
=A0 =A0RewriteRule =A0 ^(.*)filename=3D(.*)$ =A0$1 [E=3DFILENAME:$2]<br>
=A0 =A0Header set "Content-disposition" "attachment; filena=
me=3D%{FILENAME}e" env=3DFILENAME<br>
<br>
but it doesn't work =A0:-((<br>
<br>
Could you help me ?<br>
<br>
Thanks<br>
ste<br>
<br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server Project.<=
br>
See <URL:<a href=3D"http://httpd.apache.org/userslist.html" target=3D"_b=
lank">http://httpd.apache.org/userslist.html</a>> for more info.<br>
To unsubscribe, e-mail: <a href=3D"mailto:users-unsubscribe [at] httpd.apache.or=
g" target=3D"_blank">users-unsubscribe [at] httpd.apache.org</a><br>
=A0" =A0 from the digest: <a href=3D"mailto:users-digest-unsubscribe [at] =
httpd.apache.org" target=3D"_blank">users-digest-unsubscribe [at] httpd.apache.o=
rg</a><br>
For additional commands, e-mail: <a href=3D"mailto:users-help [at] httpd.apache.=
org" target=3D"_blank">users-help [at] httpd.apache.org</a><br>
<br>
</blockquote></div><br>
</div></div></blockquote></div><br>
--000e0cd5c61c8b9649047fc0321f--
Re: handling parameter in query_string with mod_rewrite
--------------000405040806030002070304
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Hi Igor,
maybe my issue was not fully clear but your suggestion puts me on the
right way .... thanks a lot !!
What I'm using now (and it seems working) is:
RewriteEngine on
RewriteCond %{QUERY_STRING} ^(.*)[\&|\?]*filename=([\w|\d|\.|\%|
]*)[\&]*(.*)$
RewriteRule .* - [E=FILENAME:%2]
Header set "Content-disposition" "attachment;
filename=%{FILENAME}e" env=FILENAME
UnsetEnv FILENAME
The main difference is that myfile.txt was just an example, ie, I
should be able to handle any value and that parameter in any position.
For instance:
/download/files/1ytreefecsw?filename=first.txt
/download/files/1ytreefecsw?param1=value1&filename=second.tx t¶m3=value3
Ste
On 17/02/2010 0.36, Igor Cicimov wrote:
> Sorry this should have been like this actually
>
> RewriteEngine On
> RewriteCond %{QUERY_STRING} ^filename=(myfile.txt)$
> RewriteRule .* - [E=FILENAME:%1]
>
> to set the FILENAME variable to myfile.txt value.
>
> Igor
>
> On Wed, Feb 17, 2010 at 10:30 AM, Igor Cicimov <icicimov [at] gmail.com
> <mailto:icicimov [at] gmail.com>> wrote:
>
> RewriteRule doesn't work with the query part or the URI thus will
> not work in your case. You need to try RewriteCond directive
> combined with RewriteRule. Something like this maybe?
>
> RewriteEngine On
> RewriteCond %{QUERY_STRING} ^(filename=myfile.txt)$
> RewriteRule .* - [E=FILENAME:%1]
>
> Header set "Content-disposition" "attachment;
> filename=%{FILENAME}e" env=FILENAME
>
> I'm not sure though about the effect of the Header set directive,
> is it going to have a global effect afterwords or not?
>
> Igor
>
>
> On Wed, Feb 17, 2010 at 9:21 AM, Stefano Nichele
> <stefano.nichele [at] gmail.com <mailto:stefano.nichele [at] gmail.com>> wrote:
>
> Hi All,
> I would need some help with mod_rewrite :-( .
> What I would need is to add an header to the response if the
> request contains a URL parameter and the value of that
> parameter should be used in that header.
>
> Just to clarify, if the url is:
>
> /download/files/1ytreefecsw?filename=myfile.txt
>
> I would like to return this file /download/files/1ytreefecsw
> setting in the response "Content-disposition" header with
> value myfile.txt:
>
> "Content-disposition: attachment; filename=myfile.txt
>
> I was able to do this thing checking a request header using:
> SetEnvIf x-filename "^(.+)$" FILENAME=$1
> Header set "Content-disposition" "attachment;
> filename=%{FILENAME}e" env=FILENAME
>
> but now i need to do similar thing using a parameter.
>
> I understand that there is not a simple way to access to the
> query_string and actually this is not possible using SetEnvIf
> and it seems the right way is using mod_rewrite .... but i
> don't find the solution.
> At the moment i'm trying something like:
>
> RewriteEngine on
> RewriteRule ^(.*)filename=(.*)$ $1 [E=FILENAME:$2]
> Header set "Content-disposition" "attachment;
> filename=%{FILENAME}e" env=FILENAME
>
> but it doesn't work :-((
>
> Could you help me ?
>
> Thanks
> ste
>
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP
> Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe [at] httpd.apache.org
> <mailto:users-unsubscribe [at] httpd.apache.org>
> " from the digest:
> users-digest-unsubscribe [at] httpd.apache.org
> <mailto:users-digest-unsubscribe [at] httpd.apache.org>
> For additional commands, e-mail: users-help [at] httpd.apache.org
> <mailto:users-help [at] httpd.apache.org>
>
>
>
--
Stefano Nichele
Funambol Chief Architect
Funambol :: Open Source Mobile Cloud Sync and Push Email
--------------000405040806030002070304
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi Igor,<br>
maybe my issue was not fully clear but your suggestion puts me on the
right way .... thanks a lot !!<br>
<br>
What I'm using now (and it seems working) is:<br>
<br>
RewriteEngine on<br>
RewriteCond %{QUERY_STRING}
^(.*)[\&|\?]*filename=([\w|\d|\.|\%| ]*)[\&]*(.*)$<br>
RewriteRule .* - [E=FILENAME:%2]<br>
<br>
Header set "Content-disposition" "attachment;
filename=%{FILENAME}e" env=FILENAME<br>
UnsetEnv FILENAME<br>
<br>
The main difference is that myfile.txt was just an example, ie, I
should be able to handle any value and that parameter in any position.
For instance:<br>
<br>
/download/files/1ytreefecsw?filename=first.txt<br>
/download/files/1ytreefecsw?param1=value1&filename=secon d.txt¶m3=value3<br>
<br>
Ste<br>
<br>
<br>
On 17/02/2010 0.36, Igor Cicimov wrote:
<blockquote
cite="mid:f89deef01002161536qbec90endbb49a5f0c07010f [at] mail.gm ail.com"
type="cite">Sorry this should have been like this actually<br>
<br>
RewriteEngine On<br>
RewriteCond %{QUERY_STRING} ^filename=(myfile.txt)$<br>
RewriteRule .* - [E=FILENAME:%1]<br>
<br>
to set the FILENAME variable to myfile.txt value. <br>
<br>
Igor<br>
<br>
<div class="gmail_quote">On Wed, Feb 17, 2010 at 10:30 AM, Igor
Cicimov <span dir="ltr"><<a moz-do-not-send="true"
href="mailto:icicimov [at] gmail.com">icicimov [at] gmail.com</a>></span>
wrote:<br>
<blockquote class="gmail_quote"
style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">RewriteRule
doesn't work with the query part or the URI thus will not work in your
case. You need to try RewriteCond directive combined with RewriteRule.
Something like this maybe?<br>
<br>
RewriteEngine On<br>
RewriteCond %{QUERY_STRING} ^(filename=myfile.txt)$<br>
RewriteRule .* - [E=FILENAME:%1]
<div class="im"><br>
Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
env=FILENAME<br>
<br>
</div>
I'm not sure though about the effect of the Header set directive, is it
going to have a global effect afterwords or not?<br>
<font color="#888888">
<br>
Igor</font>
<div>
<div class="h5"><br>
<br>
<div class="gmail_quote">On Wed, Feb 17, 2010 at 9:21 AM, Stefano
Nichele <span dir="ltr"><<a moz-do-not-send="true"
href="mailto:stefano.nichele [at] gmail.com" target="_blank">stefano.nichele [at] gmail.com</a>></span>
wrote:<br>
<blockquote class="gmail_quote"
style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi All,<br>
I would need some help with mod_rewrite :-( .<br>
What I would need is to add an header to the response if the request
contains a URL parameter and the value of that parameter should be used
in that header.<br>
<br>
Just to clarify, if the url is:<br>
<br>
/download/files/1ytreefecsw?filename=myfile.txt<br>
<br>
I would like to return this file /download/files/1ytreefecsw setting in
the response "Content-disposition" header with value myfile.txt:<br>
<br>
"Content-disposition: attachment; filename=myfile.txt<br>
<br>
I was able to do this thing checking a request header using:<br>
SetEnvIf x-filename "^(.+)$" FILENAME=$1<br>
Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
env=FILENAME<br>
<br>
but now i need to do similar thing using a parameter.<br>
<br>
I understand that there is not a simple way to access to the
query_string and actually this is not possible using SetEnvIf and it
seems the right way is using mod_rewrite .... but i don't find the
solution.<br>
At the moment i'm trying something like:<br>
<br>
RewriteEngine on<br>
RewriteRule ^(.*)filename=(.*)$ $1 [E=FILENAME:$2]<br>
Header set "Content-disposition" "attachment; filename=%{FILENAME}e"
env=FILENAME<br>
<br>
but it doesn't work :-((<br>
<br>
Could you help me ?<br>
<br>
Thanks<br>
ste<br>
<br>
<br>
------------------------------------------------------------ ---------<br>
The official User-To-User support forum of the Apache HTTP Server
Project.<br>
See <URL:<a moz-do-not-send="true"
href="http://httpd.apache.org/userslist.html" target="_blank">http://httpd.apache.org/userslist.html</a>>
for more info.<br>
To unsubscribe, e-mail: <a moz-do-not-send="true"
href="mailto:users-unsubscribe [at] httpd.apache.org" target="_blank">users-unsubscribe [at] httpd.apache.org</a><br>
" from the digest: <a moz-do-not-send="true"
href="mailto:users-digest-unsubscribe [at] httpd.apache.org" target="_blank">users-digest-unsubscribe [at] httpd.apache.org</a><br>
For additional commands, e-mail: <a moz-do-not-send="true"
href="mailto:users-help [at] httpd.apache.org" target="_blank">users-help [at] httpd.apache.org</a><br>
<br>
</blockquote>
</div>
<br>
</div>
</div>
</blockquote>
</div>
<br>
</blockquote>
<br>
<br>
<pre class="moz-signature" cols="72">--
Stefano Nichele
Funambol Chief Architect
Funambol :: Open Source Mobile Cloud Sync and Push Email</pre>
</body>
</html>
--------------000405040806030002070304--