Re: secure email...

2002-11-16 Thread Matt Robertson
>Excuse me! But CFMAIL certainly does support Login and >Passwords when sending out email. I am using CF 5.0 I don't get it. Your code sample shows no username or password parms anywhere. I've checked the CF docs and there is no such support for what you describe in MX. I don't have 5.0 doc

Re: secure email...

2002-11-16 Thread samcfug
I imagine you can pass just about any variable you want to, however, it might be smart to try in some way to validate that the reply to is a valid email address or to discard the email completely. One of the advantages I discovered using the REPLYTO is that when the addressee had a vacation reply

Re: secure email...

2002-11-16 Thread Paris Lundis
Doug, I see how that sample utilizes the Reply-To as a parameterized value .. pretty cool was to roll in the reply-to... Are you aware of any list or decision on what values can be used (ie: does CF have open architecture to handle and pass any value like that which might be SMTP standards comp

Re: Submitting flash forms to CF

2002-11-16 Thread Michael Greenberg
Bill, Your one bottleneck here will be CF 5, since that wont facilitate Flash Remoting. Go here: http://www.flashcfm.com/tutorial_search.cfm?categoryid=1 and download the 2nd listing. I think this should give you what you are looking for. Thanks, Michael - Original Message - From: "Bill

Re: secure email...

2002-11-16 Thread samcfug
Dear #form.Name#, Thank you for your order. The total charge to your #form.USER7# was #TRIM(NumberFormat(form.USER5,"$999,999,999.99"))#. Sincerely, #storename# Customer Service Staff also: Sending Your Greeting From = "[EMAIL PROTECTED]" Subject = "Web Page fr

RE: secure email...

2002-11-16 Thread Josh Trefethen
Amen brother! -- Josh Trefethen :[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. ::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::. -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 16, 2002 5:58 PM To: CF-Talk Subject: Re: sec

Re: secure email...

2002-11-16 Thread Jon Hall
I use the IIS SMTP server that sits on the same server that CF is running on, and set it to only allow connections from 127.0.0.1 Keeping the whole process one one server makes it easier to debug a possible email problem too. If the email isn't in the iis badmail or the cf undlvr folders, it left

Re: secure email...

2002-11-16 Thread Rick Root
Josh Trefethen wrote: > I really like my mailserver, qmail -- http://www.lifewithqmail.org/ > > It works great and is, so far vary secure. If you know anything about > linux, it is not too difficult to administer...I use PLESK for my admin > tools and it is a breeze. Qmail is a great little mai

RE: secure email...

2002-11-16 Thread Josh Trefethen
I agree...I used to use Imail, but installing linux on a box and running qmail is free (if you have a box to put it on). I have really enjoyed working with linux and open source software...it rocks! -- Josh Trefethen :[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. ::[ cf hosting on

RE: secure email...

2002-11-16 Thread Tony Weeg
cool, glad to know those settings on the SMTP AUTH. ill have to play with that! tw -Original Message- From: samcfug [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 16, 2002 8:49 PM To: CF-Talk Subject: Re: secure email... Excuse me! But CFMAIL certainly does support Login and Pass

Re: secure email...

2002-11-16 Thread samcfug
Adding to my own post - I also have web sites and shopping carts on Red Hat Linux boxes, and it uses Sendmail, which can also be configured to use SMTP AUTH which allows relaying by authenticated users (username and password) using CFMAIL. I used to use the heavyweight MS Exchange, and it also su

RE: secure email...

2002-11-16 Thread Josh Trefethen
There are attributes for a login and password in CFMAIL? It isn't in the docs. Here's a snippet from the docs of cfmail in cf5.0: Is it something you can set with cfmailparam? -- Josh Trefethen :[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. ::[ cf hosting on linux ]::[ consulti

Re: secure email...

2002-11-16 Thread Paris Lundis
What the syntax for this? I have a 4.5 box here and 5.0... I know of 4.5 it doesn't exist I looked up docs on MX at Macromedia's site and didn't see any such syntax in their command reference :) -paris Paris Lundis Founder Areaindex, L.L.C. http://www.areaindex.com http://www.pubcrawler.c

404 Error Handling Code (Was: RE: Missing Template Handler)

2002-11-16 Thread Lee Fuller
Ok.. So now I've found that my previous code would not work for sub-dir's.. So I rewrote it... Use as follows: - Place the code below into a 404.cfm file, located in the wwwroot of the default site on the IIS5/CFMX server. - Set the "Missing Template Handler" in CFMX to "/404.cfm" - Your clients

RE: secure email...

2002-11-16 Thread Lee Fuller
Imail is reliable, and fairly stable. It has some decent features, and works well under a fair load. We've used it for many years, and like it. Although, it seems to be getting more and more expensive. We are also running MailMax from www.smartmax.com on a couple of servers. Their web-based in

OT: Submitting flash forms to CF

2002-11-16 Thread Bill Henderson
Hey all - I am starting to mess around with flash forms, and I was looking for a way to send all the form fields in the submission. In the forms I have built so far, it seems that only the inputs that the user enter data into get sent in the submission. I am looking for some way to send blank fie

RE: Shopping Cart

2002-11-16 Thread Ezine
If your SSL provider supports it, parhaps passing the order number would also be an acceptable option.. I particularly like either UUID, or 'mmdd-hhmmss-ip1-ip2-ip3-ip4', example: 01132002-201001-192-168-0-1 if UUID isn't available. Code snippet: -- --- End Co

Re: secure email...

2002-11-16 Thread samcfug
Excuse me! But CFMAIL certainly does support Login and Passwords when sending out email. I am using CF 5.0 I use Ipswitch's Imail Ver 7.0 with SMTP AUTH enabled, and crank out emails from several CF applications on varied Virtual domains on my servers. I don't have to create "allow relay for" e

RE: secure email...

2002-11-16 Thread Josh Trefethen
I really like my mailserver, qmail -- http://www.lifewithqmail.org/ It works great and is, so far vary secure. If you know anything about linux, it is not too difficult to administer...I use PLESK for my admin tools and it is a breeze. -- Josh Trefethen :[ Exciteworks, Inc ]::[ http://excit

RE: secure email...

2002-11-16 Thread Tony Weeg
overall i have had a great experience with iMail Unlimited. its easy as heck to admin, handle unlimited users, and for the cost it was the best choice for us. tw -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 16, 2002 8:21 PM To: CF-Talk Subjec

Re: secure email...

2002-11-16 Thread Rick Root
Paris Lundis wrote: > Paris, What you really need to do is configure your email server, whatever it is, to only allow relay in the following scenarios: #1 - authenticated SMTP from anywhere #2 - When the user has recently authenticated for POP3 mail retrieval #3 - From trusted IP addresses (ie

RE: CF Studio like free editor?

2002-11-16 Thread Josh Trefethen
You should try Jedit -- look at www.jedit.org and www.joshuasmiller.com/jedit -- Josh Trefethen :[ Exciteworks, Inc ]::[ http://exciteworks.com ]:. ::[ cf hosting on linux ]::[ consulting ]::[ expertise ]::. -Original Message- From: Li Chunshen (Don) [mailto:[EMAIL PROTECTED]]

RE: Max Length to form field containing a WDDX packet?

2002-11-16 Thread Mosh Teitelbaum
I don't know of any content size limit for form fields. I would think the problem might be something else. Any chance your WDDX packet has some double-quotes in it? Because that would cause the WDDX packet to be truncated before being sent back to the action page. For example (not a WDDX packet

RE: secure email...

2002-11-16 Thread Paris Lundis
Oh we were using Mdaemon and it was nice and sweet... I could pass it emails without even having a fully qualified email address in there... We have users that daily with the friend feature type incorrect emails intentionally thinking it will prevent them from being emailed anything later... In

Re: secure email...

2002-11-16 Thread Les Mizzell
Can you take care of this using SandBox Security in MX? Since I don't administer a CF Server, I haven't run into this problem, but thought that this feature would limit the use of CF resources to defined directories and IP addresses No? Paris Lundis wrote: >I was wondering how people we

RE: secure email...

2002-11-16 Thread Ezine
Storing 'IP', 'Cftoken'(if using client state management) and 'address to' database. Then checking against them based on SQL aggragate functions :) It isn't likely that user/customer would send it out to more then 20 friends... and.. it isn't likey that a user/customer would send the same e-ma

RE: secure email...

2002-11-16 Thread Tony Weeg
paris. what mail server are you using? we use ipswitch's imail server and that allows us to specify "allowed" ip addresses, we simply added the ip address of all our webservers into that list and now have no issuesF**KING SPAMMERS!! arghhh what an annoyancebut anyway, it works. tw --

RE: SOT Tool to disassemble Java class files

2002-11-16 Thread Mosh Teitelbaum
You can use the javap application that comes with the JDK to disassemble class files to standard output. Usage: javap ... where options include: -bBackward compatibility with javap in JDK 1.1 -cDisassemble the code -classpath Specify

secure email...

2002-11-16 Thread Paris Lundis
so we are in the process of changing email servers and we toggled relaying on and somehow the malicious spammers found it in record time and started bombing us with email to broadcast... That we are going to address on Monday in litigation against the sending companies... I was wondering how pe

RE: disabled on CFINPUT

2002-11-16 Thread Kwang Suh
The cfinput tag has an attribute named "passthrough" that will allow you to do this. > -Original Message- > From: Russ [mailto:[EMAIL PROTECTED]] > Sent: Saturday, November 16, 2002 3:18 PM > To: CF-Talk > Subject: disabled on CFINPUT > > > Hi there... > > I'm attempting to display a for

Re: CF Studio like free editor?

2002-11-16 Thread Michael Greenberg
DL, Ever try 1st Page? http://www.evrsoft.com/products/ I would call it a poor man's CF Studio. One thing I will warn you about and that it handles some of syntax in strange ways as far as color coding goes, especially with components. I like it ok but I like CF Studio in many ways as far text edi

Re: [OT] Zip Code Lookup

2002-11-16 Thread samcfug
= Douglas White group Manager mailto:[EMAIL PROTECTED] http://www.samcfug.org = - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, November 16, 2002 5:59 PM Subject: Re: [OT

Re: greetings - and help!

2002-11-16 Thread Michael T. Tangorre
sessions and AOL do not get along at all because of AOL's need to use 9 million proxy servers to get a request sent out. Im actually working with a similar problem and had to go from session variables to client variables to maintain state. Mike - Original Message - From: "Bu Cenpo" <[EMA

greetings - and help!

2002-11-16 Thread Bu Cenpo
Hi guys, Wonder if someone can help me with a session problem. I'm customizing a chat script and find that some session variables are somehow not transferring in AOL but doing well with all other browsers. This has caused login into the chat to crash whenver someone uses AOL. My questions are: [1]

please ignore - test message

2002-11-16 Thread Bu Cenpo
sad __ Do you Yahoo!? Yahoo! Web Hosting - Let the expert host your site http://webhosting.yahoo.com ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscripti

Re: [OT] Zip Code Lookup

2002-11-16 Thread cf-talk
As far as data is concerned. CFDynamics.com was nice enough to host my Zip Code database for free. Anyone who would like a free zip code database can obtain one at: http://www.cfdynamics.com/zipbase/ -Novak - Original Message - From: "Bryan Stevenson" <[EMAIL PROTECTED]> To: "CF-Talk"

CF Studio like free editor?

2002-11-16 Thread Li Chunshen \(Don\)
Probably, I'm going to buy a copy of HomeSite soon (for lack of alternatives), (HomeSite eval has expired), but before that, I'd like to try some CF Studio like free editor naturally without CF end TAG insertion? Does any one know anything like that exist? Thanks. DL _

RE: disabled on CFINPUT

2002-11-16 Thread Tony Weeg
you could always do this also ;) that way, if you still want to show them the value in a form element vs. stranded next to it...you could do this. tony -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 16, 2002 6:27 PM To:

Re: disabled on CFINPUT

2002-11-16 Thread S . Isaac Dealey
You could always use something like this: #myvalue# > Hi there... > I'm attempting to display a form, based upon roles, that > is either > disabled or enabled. > For a CFINPUT, "disabled" is not an option, and I'm > wondering if there's > any other way that this might be accomplished a

RE: disabled on CFINPUT

2002-11-16 Thread Russ
Sorry for the dumb guy on this one; was checking a record with very little information. Russ > -Original Message- > From: Russ [mailto:[EMAIL PROTECTED]] > Sent: Saturday, November 16, 2002 4:18 PM > To: CF-Talk > Subject: disabled on CFINPUT > > > Hi there... > > I'm attempting to d

disabled on CFINPUT

2002-11-16 Thread Russ
Hi there... I'm attempting to display a form, based upon roles, that is either disabled or enabled. For a CFINPUT, "disabled" is not an option, and I'm wondering if there's any other way that this might be accomplished and produced the same desired effect--a form element, populated, but not abl

Re: Replace within selection in Dreamweaver MX

2002-11-16 Thread Bob Haroche
Didn't exist in DW4; haven't seen it yet in MX. I don't think it's there either. I have found in MX, as have others, that search and replace sometimes just breaks (won't find simple words on pages other than the current one). --- Regards, Bob Haroche O n P o i n t S o l u t i o n s w

My First CFC - Problem

2002-11-16 Thread SMR Enterprises
I've been following BF's articles on MM to create my first CFC.. very easy cfc using cgi variable to determine what browser is being used. I cut and past the code I found from an article and ran it from the CFMX install on my local machine. It runs for about 2 mins and comes back with an Error:

RE: Shopping Cart

2002-11-16 Thread Jeff Garza
You could always set a more persistant cookie with a UUID or some other indentifying number and use that to key the cart information into a database and go from there. This would also provide you with abandoned cart information for later analysis. On successful processing of the order, delete the

Shopping Cart

2002-11-16 Thread Michael T. Tangorre
Hey everyone. I have a shopping cart CFC which is working fine. My problem is this: in order to pay via CC, the user is taken to a third party site that is branded to look like mine running except this is SSL. Now when the suer leaves my site, I have a session variable holding the shopping cart

RE: Disassemble Java Classes

2002-11-16 Thread Govind Bhat
Hi there, You can use mocha or DJ http://members.fortunecity.com/neshkov/dj.html http://www.brouhaha.com/~eric/computers/mocha.html I have used DJ and it works well. Govind Bhat -Original Message- From: CF-Talk [mailto:[EMAIL PROTECTED]] Sent: November 16, 2002 1:19 PM To: [EMAIL PROTEC

Re: Importing Studio snippets into DW?

2002-11-16 Thread Massimo, Tiziana e Federica
> How can I import my Studio snippets into DW? > http://www.dwfaq.com/Snippets/converter.asp Massimo Foti Team Macromedia Volunteer for Dreamweaver http://www.macromedia.com/go/team ~

Re: SOT Tool to disassemble Java class files

2002-11-16 Thread Michael Greenberg
I remember someone saying on one of the Sun lists that you can do this in JBuilder, but Im not sure how. Since you are on a Mac have looked you into doing this in Code Warrior. I know I have decomplied classes with something that hooks into Powerplant.It was a 3rd party tool and it was on OS 8.6 bu

SOT Tool to disassemble Java class files

2002-11-16 Thread Dick Applebaum
What do people use to disassemble Java Class files? This is legitimate! I am trying to figure out what functions exist in a Java applet, so I can interface them with JavaScript. I am on Mac OS X, so 'Nix or Java based tools would be preferred. TIA Dick ~~~

Importing Studio snippets into DW?

2002-11-16 Thread Jon Hall
How can I import my Studio snippets into DW? -- jon mailto:[EMAIL PROTECTED] ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&

RE: Missing Template Handler...

2002-11-16 Thread Lee Fuller
And actually.. If you follow my previous advice.. Your CFMX server will be brought to it's knees, if the 404.cfm file for the client's site doesn't exist. Instead, use this: === http://#cgi.SERVER_NAME#/404.cfm"/> #cfhttp.FileContent# === Works fine a

RE: Missing Template Handler...

2002-11-16 Thread Brook Davies
Ohh, its the "default" IIS website! No wonder. I tried putting a file relative to the wwwroot, the cfmx/wwwroot/ and everywhere else under the sun. I had to settle for a mapping. Nice idea for 404's Lee! At 12:02 AM 16/11/02 -0800, you wrote: >Actually, I just found it. Sheesh... > >In CFMX, th

RE: Missing Template Handler...

2002-11-16 Thread Lee Fuller
Actually, I just found it. Sheesh... In CFMX, there's a basic mapping to "/" which points to the root of the IIS default web site. If you put a 404.cfm file in there, and then set this to "/404.cfm".. It works. And.. I solved the problem of dynamic 404 redirects using this setting. I just cre