I am currently out of the office and will return on Monday, August 21. Any urgent
concerns should be forwarded to David McCormick or Mary Prosceno.
>>> CF-Talk 08/16/00 06:45 >>>
CF-Talk Wed, 16 Aug 2000 Volume 1 : Number 144
In this issue:
Re: search engine and cfm files
RE: search engine and cfm files
Re: Copying a Directory and it's files
Re: Win2K and CF 4.5.1
verity partial word search
Re: CF or Netscape mangling JS comments?
Re: CF or Netscape mangling JS comments?
Re: Browser / desktop resolution
Re: <cfmail> group attribute question
RE: verity partial word search
Re: <cfmail> group attribute question
RE: Optimization tips collection (semi-redundant)
----------------------------------------------------------------------
Date: Tue, 15 Aug 2000 22:41:46 -0400
From: "Andrew" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: Re: search engine and cfm files
Message-ID: <06fa01c0072b$854873c0$0100000a@rudebwoy>
Avex:
the url of your page plus the page.cfm/ID/X part will all be stored in
the cgi variable cgi.path_info. You can then use a listGetAt function with
the delimiters being a "/" to get what your ID is from the path and then use
it in your page accordingly.
Andrew Hewitt
Web Application Developer
webworld studios, inc.
----- Original Message -----
From: "avex" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 15, 2000 9:49 PM
Subject: Re: search engine and cfm files
>
>
> > > so all my pages are like page.cfm?ID=X where X is the database record.
> >
> > get this:
> >
> > page.cfm/ID/X
> >
> >
>
> thanks for the reply.....but how does this work?
> how does the search engine know that there is page.cfm/ID/777 to pick it
up?
>
> also.....when i tried this i got an error because it couldn't reslove #ID#
> in my where clause.....
>
> would someone mind giving me a more detailed explanation of how this
works?
> I am a bit confused at the moment...
>
> kind regards
> chad
>
>
>
> --------------------------------------------------------------------------
----
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
------------------------------
Date: Wed, 16 Aug 2000 14:54:46 +1200
From: "Matthew Walker" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: RE: search engine and cfm files
Message-ID: <[EMAIL PROTECTED]>
> thanks for this!!!!
> but will this tag effect any of my other variables?
> ie...will everything still work the same if i use this tag?
The Fusebox tag won't affect other variables. All it does is take anything
in the Form or URL scope and *copy* it into the Attributes scope.
The concept is that you replace both Form and URL with Attributes. Now,
that's not necessarily a bad thing (I think it's a good idea) -- you don't
need to worry about how you handled the form action. You could just do a
global search and replace for Form. and URL.
Now for your purposes, you only *must* do that when you are wanting data
passed as search-engine-friendly: when referring to data passed in the query
string, you need to say Attributes.ID instead of URL.ID.
If you don't want to change your code this much, you might be better off
writing something for yourself the way Andrew suggested.
> has anyone registered a site on a search engine using this method?
Amazon uses this method (not Fusebox but same idea).
As I mentioned earlier, *whatever way* you do it your browser may also be
fooled by the extra "/"s and may not be able to load the images etc. So try
adding in "<base>" or using links that start with "/". If you look at the
code of an Amazon page, you'll' see all the links begin with a "/".
------------------------------
Date: Tue, 15 Aug 2000 23:29:15 -0400
From: "Jake Hileman" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: Re: Copying a Directory and it's files
Message-ID: <003401c00732$283d7750$0100a8c0@sunset>
Yeah that' what I'd figure I'd have to do but there are many many
subdirectories also.
Oh well.
Jake
----- Original Message -----
From: "Justin Kidman" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 15, 2000 7:22 PM
Subject: RE: Copying a Directory and it's files
> Use CFDIRECTORY to list the files in a query then loop through the query
and
> use CFFILE to copy the individual files.
>
> Justin Kidman
>
> -----Original Message-----
> From: Jake Hileman [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, August 15, 2000 4:26 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Copying a Directory and it's files
>
>
> Ahhh, true, pass to batch file! Good idea!
>
> I'll be copying the same thing over and over so just create a batch file
to
> do it.
>
> Hmm, Does anyone know a way to pass variables to a batch file? Any code
> snippets?
>
> jake
> ----- Original Message -----
> From: "Robert Everland" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, August 15, 2000 4:52 PM
> Subject: RE: Copying a Directory and it's files
>
>
> > Why not get a list of files with cfdirectory then loop over your cffile
> > action. I am sure there is a way to do it with cfexecute if you can pass
> > variables to a batch file but I have no experience doing that.
> >
> > Robert Everland III
> > Web Developer
> > Dixon Ticonderoga
> >
> >
> > -----Original Message-----
> > From: Jake Hileman [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, August 15, 2000 4:22 PM
> > To: [EMAIL PROTECTED]
> > Subject: Copying a Directory and it's files
> >
> >
> > <CFFILE ACTION="Copy"
> > SOURCE="d:\apps\cgi-bin\*.*"
> > DESTINATION="d:\www\#domain#\cgi-bin\">
> >
> > I'm trying to copy a directory and it's contents to another
directory...
> > any
> > ideas on how I can achieve this?
> >
> > I've tried many things with cffile and cfexecute... any help?
> >
> > jake
> >
> >
>
> --------------------------------------------------------------------------
> --
> > --
> > Archives: http://www.mail-archive.com/[email protected]/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
> > the body.
>
> --------------------------------------------------------------------------
> ----
> > Archives: http://www.mail-archive.com/[email protected]/
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
>
> --------------------------------------------------------------------------
--
> --
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --------------------------------------------------------------------------
----
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
------------------------------
Date: Tue, 15 Aug 2000 23:29:34 -0400
From: "Jake Hileman" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: Re: Win2K and CF 4.5.1
Message-ID: <003f01c00732$3373f310$0100a8c0@sunset>
No problemos, no leaks, nothing. Great.
jake
----- Original Message -----
From: "Adam Breaux" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, August 15, 2000 8:56 PM
Subject: Win2K and CF 4.5.1
> Has anyone had any problems running CF 4.5.1 on Win2K Adv Server? Looking
> for input on this, bot good and bad.
>
> Allaire says CF is not Win2K compliant but compatible.
>
> Thanks!
>
> --------------------------------------------------------------------------
----
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
------------------------------
Date: Wed, 16 Aug 2000 13:43:58 +1000
From: "avex" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: verity partial word search
Message-ID: <045d01c00734$35c6aac0$0300a8c0@agent>
> Hi,
>
> I am doing a verity search engine, and would like all searches to be
treated
> like there is a * following the search criteria, so a search for sea would
> return search, seattle, seat, etc.
> I know i can just add a * to the end of the criteria, however it could get
> tricky with multiple words......
>
> Is there a verity function that does this by default?
>
> thanks
> chad
>
------------------------------
Date: Tue, 15 Aug 2000 20:38:35 -0700
From: David Shadovitz <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: CF or Netscape mangling JS comments?
Message-ID: <[EMAIL PROTECTED]>
Chris, you've got an HTML comment start in there.
-David
On Tue, 15 Aug 2000 19:02:00 -0400 "Lomvardias, Christopher"
<[EMAIL PROTECTED]> writes:
> Hi,
>
> Has anyone seen this happen (occurs in NS4.7) and know how to fix
> it?
>
> When I run this code
>
-------------------------------------------------------------------------
---
> ----------------------------------
> <script language="JavaScript" type="text/javascript">
> <!--
> <cfwddx action="CFML2JS" input="#qGetData#"
> toplevelvariable="rsData">
>
>
> I get this result.
>
-------------------------------------------------------------------------
---
> ----------------------------------
> <script language="JavaScript" type="text/javascript">
>
> <!C-
>
> rsData=new WddxRecordset();_t2=new
>
Array();_t2[0]="fffffaaaa1";_t2[1]="lineabc1";rsData.tx_keyword=_t2;_t2=n
ew
> Array();_t2[0]=70;_t2[1]=72;rsData.id_crs_kywd=_t2;_t2=new
> Array();_t2[0]=new Date(2000,7,15,18,32,31);_t2[1]=new
>
Date(2000,7,15,18,32,31);rsData.dt_lst_updt=_t2;_t0=null;_t1=null;_t2=nul
l;
>
>
>
>
> Chris
> ------------------------------------------------------------------
> Chris Lomvardias
> [EMAIL PROTECTED]
> Syscom, Inc.
> 400 E. Pratt Street, Suite 300
> Baltimore, MD 21202
> (410)539-3737 x1722 voice
> (410)539-7302 fax
> [EMAIL PROTECTED] (pager via email)
> http://www.syscom.com/
> ------------------------------------------------------------------
>
>
-------------------------------------------------------------------------
-----
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
> or send a message to [EMAIL PROTECTED] with
> 'unsubscribe' in the body.
________________________________________________________________
YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk! For your FREE software, visit:
http://dl.www.juno.com/get/tagj.
------------------------------
Date: Wed, 16 Aug 2000 14:15:59 +1000
From: Jared Clinton <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: CF or Netscape mangling JS comments?
Message-ID: <[EMAIL PROTECTED]>
Chris,
I've seen something similar, very annoying.
I think its netscapes fault, and I also think that its the source viewer applications
fault.
Double check by looking at the files in the client cache and view them in notepad or
something.
It doesn't happen in IE does it?
Can you tell me if you find a solution?
Jared.
David Shadovitz wrote:
> Chris, you've got an HTML comment start in there.
> -David
>
> On Tue, 15 Aug 2000 19:02:00 -0400 "Lomvardias, Christopher"
> <[EMAIL PROTECTED]> writes:
> > Hi,
> >
> > Has anyone seen this happen (occurs in NS4.7) and know how to fix
> > it?
> >
> > When I run this code
> >
> -------------------------------------------------------------------------
> ---
> > ----------------------------------
> > <script language="JavaScript" type="text/javascript">
> > <!--
> > <cfwddx action="CFML2JS" input="#qGetData#"
> > toplevelvariable="rsData">
> >
> >
> > I get this result.
> >
> -------------------------------------------------------------------------
> ---
> > ----------------------------------
> > <script language="JavaScript" type="text/javascript">
> >
> > <!C-
> >
> > rsData=new WddxRecordset();_t2=new
> >
> Array();_t2[0]="fffffaaaa1";_t2[1]="lineabc1";rsData.tx_keyword=_t2;_t2=n
> ew
> > Array();_t2[0]=70;_t2[1]=72;rsData.id_crs_kywd=_t2;_t2=new
> > Array();_t2[0]=new Date(2000,7,15,18,32,31);_t2[1]=new
> >
> Date(2000,7,15,18,32,31);rsData.dt_lst_updt=_t2;_t0=null;_t1=null;_t2=nul
> l;
> >
> >
> >
> >
> > Chris
> > ------------------------------------------------------------------
> > Chris Lomvardias
> > [EMAIL PROTECTED]
> > Syscom, Inc.
> > 400 E. Pratt Street, Suite 300
> > Baltimore, MD 21202
> > (410)539-3737 x1722 voice
> > (410)539-7302 fax
> > [EMAIL PROTECTED] (pager via email)
> > http://www.syscom.com/
> > ------------------------------------------------------------------
> >
> >
> -------------------------------------------------------------------------
> -----
> > Archives: http://www.mail-archive.com/[email protected]/
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
>
> > or send a message to [EMAIL PROTECTED] with
> > 'unsubscribe' in the body.
>
> ________________________________________________________________
> YOU'RE PAYING TOO MUCH FOR THE INTERNET!
> Juno now offers FREE Internet Access!
> Try it today - there's no risk! For your FREE software, visit:
> http://dl.www.juno.com/get/tagj.
> ------------------------------------------------------------------------------
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit
>http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
>message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
------------------------------
Date: Wed, 16 Aug 2000 02:56:54 -0400
From: "Michael Dinowitz" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: Re: Browser / desktop resolution
Message-ID: <049401c0074f$2a3103c0$[EMAIL PROTECTED]>
http://www.webreference.com/js/column17/
> Hi All,
> Is there a way from CF to work out what resolution a users browser is set
> to?
>
> Thanks,
> Lucas.
> =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> Lucas Sherwood
> Technical Sales Consultant
> FirmwareDesign
>
> [EMAIL PROTECTED]
>
> --------------------------------------------------------------------------
----
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
------------------------------
Date: Wed, 16 Aug 2000 17:29:02 +1000
From: Dave Borgeest <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: <cfmail> group attribute question
Message-ID: <[EMAIL PROTECTED]>
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Consider <CFMAIL> to be an output tag itself. That'll fix it up!
<p>aslam bajaria wrote:
<blockquote TYPE=3DCITE>Hi All,
<br>I am trying to have an email sent automatically. If I
<br>have the <cfmail> tag in between <cfoutput></cfoutput>
<br>tags, then I get an error that says that I need the
<br>group attribute.
<p>If I have <cfoutput></cfoutput> in between <cfmail>
<br>and </cfmail> tag, still I get the same error.
<p>I don't have a query. I am just checking a variable.
<p>The code is as:
<p><cfif SendEmail>
<p> <cfmail>
<br> <cfoutput>...</cfoutput>
<br> </cfmail>
<p></cfif>
<p>OR
<p><cfif SendEmail>
<p> <cfoutput>
<br> <cfmail>...</cfmail>
<br> </cfoutput>
<p></cfif>
<p>Please Advise.
<br>Appreciate.
<br>A.B.
<p>__________________________________________________
<br>Do You Yahoo!?
<br>Yahoo! Mail =96 Free email you can access from anywhere!
<br><a href=3D"http://mail.yahoo.com/">http://mail.yahoo.com/</a>
<br>---------------------------------------------------------------------=
---------
<br>Archives: <a href=3D"http://www.mail-archive.com/cf-talk@houseoffusio=
n.com/">http://www.mail-archive.com/[email protected]/</a>
<br>To Unsubscribe visit <a href=3D"http://www.houseoffusion.com/index.cf=
m?sidebar=3Dlists&body=3Dlists/cf_talk">http://www.houseoffusion.com/inde=
x.cfm?sidebar=3Dlists&body=3Dlists/cf_talk</a>
or send a message to [EMAIL PROTECTED] with 'unsubscribe'
in the body.</blockquote>
</html>
------------------------------
Date: Wed, 16 Aug 2000 09:46:53 +0100
From: Anthony Geoghegan <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
Subject: RE: verity partial word search
Message-ID: <3166C3E07D31D411977200104B49AC391E18@IFTNEXCH>
Hi Chad
You said:
|> I know I can just add a * to the end of the criteria,
|however it could get
|> tricky with multiple words......
|> Is there a verity function that does this by default?
The answer is no.
You can write a piece of code to separate the words handily enough though.
Regards,
Anthony Geoghegan
Lead Developer
Ireland Film and Television Net
26 South Frederick Street
Dublin 2
Ireland
Tel: +353 1 671 3664
Fax: +353 1 671 0763
Web: www.iftn.ie www.wow.ie
mailto:[EMAIL PROTECTED]
NOTICE:
This communication is confidential. The copyright in this communication
belongs to Ireland Film & Television Net (IFTN) or a third party.
If you are not the intended recipient of this communication please delete
and destroy all copies and telephone IFTN on +353 1 671 3664 immediately.
If you are the intended recipient of this communication you should not copy,
disclose or distribute this communication without the authority of IFTN.
Any views expressed in this communication are those of the individual sender
except where the sender specifically states those are of view of IFTN.
Except as required by law IFTN does not represent, warrant, and/guarantee
that the integrity of this communication has been maintained or that the
communication is free of virus, interception or interference.
------------------------------
Date: Wed, 16 Aug 2000 18:44:02 +1000
From: Dave Borgeest <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: <cfmail> group attribute question
Message-ID: <[EMAIL PROTECTED]>
Whoops, Don't like those HTML emails - sorry people...
What I was trying to say was the <CFMAIL> tag acts as a <CFOUTPUT> tag it=
self. Close the output tag before your cfmail tag. That'll work.
aslam bajaria wrote:
> Hi All,
> I am trying to have an email sent automatically. If I
> have the <cfmail> tag in between <cfoutput></cfoutput>
> tags, then I get an error that says that I need the
> group attribute.
>
> If I have <cfoutput></cfoutput> in between <cfmail>
> and </cfmail> tag, still I get the same error.
>
> I don't have a query. I am just checking a variable.
>
> The code is as:
>
> <cfif SendEmail>
>
> <cfmail>
> <cfoutput>...</cfoutput>
> </cfmail>
>
> </cfif>
>
> OR
>
> <cfif SendEmail>
>
> <cfoutput>
> <cfmail>...</cfmail>
> </cfoutput>
>
> </cfif>
>
> Please Advise.
> Appreciate.
> A.B.
>
> __________________________________________________
> Do You Yahoo!?
> Yahoo! Mail =96 Free email you can access from anywhere!
> http://mail.yahoo.com/
> -----------------------------------------------------------------------=
-------
> Archives: http://www.mail-archive.com/[email protected]/
> To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=3Dl=
ists&body=3Dlists/cf_talk or send a message to cf-talk-request@houseoffus=
ion.com with 'unsubscribe' in the body.
------------------------------
Date: Wed, 16 Aug 2000 03:14:52 -0700
From: "Ed Toon" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: RE: Optimization tips collection (semi-redundant)
Message-ID: <[EMAIL PROTECTED]>
...Jordan Clark [mailto:[EMAIL PROTECTED]] wrote...
> I would argue about a few of your suggestions,
>
> First don't use compare() instead of <cfif foo IS 'bar'> since compare is
> case sensitive
Mister D explained that one... That was one of the few things I took away
from his brief stint consulting for a former employer. ;)
> You can not do <cftag name="foo"> value=#var#> on any type of strings
I'm not quite sure what you mean... I pulled that one out of Mastering Cold
Fusion 4.
Rough example: <cfquery datasource="#DS#"> is slower than <cfquery
datasource=#DS#>
I certainly haven't had any problems using it all over the friggin place. If
you know of any problems with it, let me know.
> Always avoid IIF() because it is up to 4x slower then <cfif> even if it is
> nested
Huh. I guess I'm not sure how bad nested if statements really are. I seem to
remember someone saying if you're nested more than two or three levels and
IIF'll get you out of another level you should use it, but not using it does
seem to make sense.
> Don't lock the request scope, because it is thread safe by design!
Huh. Fortunately I never use the request scope. ;)
> Lock application, session, & server scopes
>
> Take Care,
>
> Jordan Clark
Here's my revised version. I know somebody out there's gotta have a better
list than me. ;)
--------------------------
Use cfscript wherever possible, for as long as possible
Boolean evaluation wherever possible
Scope all the variables that you can
Use cfmodule instead of short hand annotation for custom tags
Use cfinclude instead of cfmodule wherever possible
Use cfquery's instead of cfinserts, etc.
Cache queries that seldom change and are universal to all users of the site
Use stored procedures for non-cacheable queries
Prepublish pages that are the same every time
Make sure your queries are return only what you need
Always name rows in queries, instead of select *
<cfset #x# = "#Func(y)#"> is bad
<cfset x = Func(y)> is good
<cfscript>x = Func(y);</cfscript> is spiffy keen
Use functions instead of operators wherever possible, e.g. Find/FindNoCase
instead of CONTAINS, CompareNoCase instead of "var is 'whatever'
Don't use CFHTTP resolveUrl=yes unless you need the fully qualified URLs for
everything returned.
Locale functions (LSFunc) are slower than English-only functions
<cftag name="foo" value="#var#"> is slower than <cftag name="foo"
value=#var#>
Use cfswitch instead of cfif
Avoid IIF. Really.
Structures are referenced, but arrays are copied, so if you're using large
arrays and you try to do something like LocalCustomerArray =
DataStore.CustomerArrays[CustomerID] you'll end up copying the entire array,
which is ok if you just want the data, but is never gonna change the
DataStore unless you do DataStore.CustomerArrays[CustomerID] =
LocalCustomerArray again. think twice before copying big arrays
Arrays are dynamic (and they start at 1!)... thus you can't count on
myArray[15] continuing to be myArray[15] for very long.
CFLOCK all references to Session variables
CFLOCK all references to Application and Server variables that might be
altered over the life of the [Application,Server]
CFLOCK all CFHTTP, CFFTP, CFFILE, CFDIRECTORY tags and all CFX's
Consider using <cfsetting enablecfoutputonly="yes"> or automatic whitespace
reduction to reduce overall page size. cfsetting is faster if it's only done
a few times, but if it ends up getting set fifty times in the course of
processing one request, you probably want automatic reduction
------------------------------
End of CF-Talk V1 #144
**********************
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message
to [EMAIL PROTECTED] with 'unsubscribe' in the body.