Re: (ot) Mail servers

2010-07-07 Thread Aaron Neff
For those out there who actually run e-mail servers for your clients, I'm curious what you're running and how happy you are with it. Had the following interface-related issues w/ SmarterMail 6: - mail items getting dropped into wrong folders (when using drag-drop) - drag-drop would sometimes

Re: CFMAIL isn't working at all

2010-07-07 Thread Tom Chiverton
On Tuesday 06 Jul 2010 14:15:10 you wrote: What happens if you log in as the same user that CF is running as (cfusion), and attempt to send mail to sendmail via telnet? Or use a packet monitor like tethereal to see what is going on at the network level on the SMTP port. -- Tom Chiverton

RE: (ot) Mail servers

2010-07-07 Thread Duane Boudreau
I run MailEnable. I setup the server a couple of years ago and I never have to do anything to it just add new account. -Original Message- From: Justin Scott [mailto:jsc...@gravityfree.com] Sent: Tuesday, July 06, 2010 9:43 PM To: cf-talk Subject: (ot) Mail servers For those out

Re: Facebook Connect and coldfusion

2010-07-07 Thread Scott Brady
And that's why I'm pretty negative on integrating with Facebook. We created an app 2 years ago and could never get the functionality of processing some of our code after someone removed our app to work. The API for that was always broken. Or, we'd finally see that it had been fixed, but by the

Looking for a CF Recipe script!

2010-07-07 Thread Ennio Bozzetti
Does anyone know a good Recipe Script? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

Re: (ot) Mail servers

2010-07-07 Thread Claude Schnéegans
I'm curious what you're running and how happy you are with it. I'm using MailEnable. Works well except for infinite loops from time to time, very hard to know why. It is an interesting question, I'd like to know if some one is using a solution that allows creation of new accounts from CF ?

cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Pete Ruckelshaus
Is there a way to dynamically set the cfwindow title using JavaScript? What I mean is, I have the cfwindow's title attribute set to a fairly generic value. Once I display the window, it always contains dynamic data, and I would like the cfwindow title to reflect the dynamic content. I would

RE: Looking for a CF Recipe script!

2010-07-07 Thread Andy Matthews
Can you be a little more clear? What do you mean by recipe script? -Original Message- From: Ennio Bozzetti [mailto:en...@medrise.com] Sent: Wednesday, July 07, 2010 6:31 AM To: cf-talk Subject: Looking for a CF Recipe script! Does anyone know a good Recipe Script?

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Michael Grant
newWin = window.open(...) newWin.document.title = 'super awesome title' On Wed, Jul 7, 2010 at 9:08 AM, Pete Ruckelshaus pruckelsh...@gmail.comwrote: Is there a way to dynamically set the cfwindow title using JavaScript? What I mean is, I have the cfwindow's title attribute set to a

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Michael Grant
Sorry, you're using cfwindow. Assuming then that in your cfwindow tag you have newWin as the name. On Wed, Jul 7, 2010 at 9:17 AM, Michael Grant mgr...@modus.bz wrote: newWin = window.open(...) newWin.document.title = 'super awesome title' On Wed, Jul 7, 2010 at 9:08 AM, Pete

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Raymond Camden
Don't use cfwindow. Use the JS API CF gives you to make cfwindow's dynamically. On Wed, Jul 7, 2010 at 8:08 AM, Pete Ruckelshaus pruckelsh...@gmail.com wrote: Is there a way to dynamically set the cfwindow title using JavaScript?  What I mean is, I have the cfwindow's title attribute set to

Re: Looking for a CF Recipe script!

2010-07-07 Thread Claude Schnéegans
What do you mean by recipe script? Yeah, a script to manage a database of recipes ? or a recipe for a good script ? ;-) ~| Order the Adobe Coldfusion Anthology now!

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Pete Ruckelshaus
Ray, do you have any example code? Thanks Pete On Wed, Jul 7, 2010 at 9:26 AM, Raymond Camden rcam...@gmail.com wrote: Don't use cfwindow. Use the JS API CF gives you to make cfwindow's dynamically. ~| Order the Adobe

RE: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Paul Alkema
You could use ColdFusion.Window.create. Example cfajaximport tags=cfwindow script type=text/javascript url = 'http://www.google.com/'; title = 'This is my title'; name = 'newWindow'; ColdFusion.Window.create(name, title, url,{initshow:false}); /script a

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Raymond Camden
Paul got it. It is also in your CFML Reference. On Wed, Jul 7, 2010 at 8:30 AM, Pete Ruckelshaus pruckelsh...@gmail.com wrote: Ray, do you have any example code? Thanks Pete On Wed, Jul 7, 2010 at 9:26 AM, Raymond Camden rcam...@gmail.com wrote: Don't use cfwindow. Use the JS API CF

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Pete Ruckelshaus
That doesn't solve my problem. I would need to create hundreds of cfwindow instances just to have a cfwindow title match the content of the window...on a page where I already have the code for hundreds of google map points. On Wed, Jul 7, 2010 at 9:33 AM, Paul Alkema

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Michael Grant
Pete, what was wrong with the example I gave? Just target the window and change the title. It's pretty simple. If this is your cfwindow tag: cfwindow x=0 y=250 width=450 height=450 name=myWin1 title=Starting Title source=windowsource.cfm / Then this is the javascript you need to change the

RE: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Andrew Scott
For this to work each window much have a unique name. ColdFusion.Window.getWindowObject('test').setTitle('Something for nothing..'); As with anything in ColdFusion and UI, look into the extJS docs for the answer. -Original Message- From: Pete Ruckelshaus

Re: (ot) Mail servers

2010-07-07 Thread Gerald Guido
I used to use MailEnable. It was pretty full featured and worked fine. I had no complaints except for dealing with log files and spam. Even with DNS black lists enable I used to get TONS of spam. That was a number of years ago so things may be different, I am not in the hosting biz anymore so I

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread David McGraw
I simply use JS to set the innerHTML of the dynamically created element which houses the Title. Using Prototype: $('popupWindow_title').innerHTML = '#JSStringFormat(Title)#'; popUpWindow is the name of my cfWindow. When the window is rendered, the content for the title is contained in an

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread David McGraw
I simply use JS to set the innerHTML of the dynamically created element which houses the Title. Using Prototype: $('popupWindow_title').innerHTML = '#JSStringFormat(Title)#'; popUpWindow is the name of my cfWindow. When the window is rendered, the content for the title is contained in an

Re: cfwindow - dynamically setting window title using javascript?

2010-07-07 Thread Raymond Camden
No, you only open the window the user asks for it (based on whatever UI event you set up). On Wed, Jul 7, 2010 at 8:49 AM, Pete Ruckelshaus pruckelsh...@gmail.com wrote: That doesn't solve my problem. I would need to create hundreds of cfwindow instances just to have a cfwindow title match

Re: Looking for a CF Recipe script!

2010-07-07 Thread Ennio Bozzetti
:) a script that manage Recipes... :) ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

RE: Looking for a CF Recipe script!

2010-07-07 Thread Andy Matthews
That's a little vague wouldn't you say? You're going to need to be more specific as to what you're looking for. -Original Message- From: Ennio Bozzetti [mailto:en...@medrise.com] Sent: Wednesday, July 07, 2010 10:34 AM To: cf-talk Subject: Re: Looking for a CF Recipe script! :) a

Re: Looking for a CF Recipe script!

2010-07-07 Thread Tony Bentley
Does anyone know a good Recipe Script? function manageRecipes(){ for(i=0;irecipes.length;i++){ recipes[i].manage(); } } You want a recipe module written in ColdFusion? ~| Order the Adobe Coldfusion

Re: Looking for a CF Recipe script!

2010-07-07 Thread Michael Grant
Perfect! On Wed, Jul 7, 2010 at 12:07 PM, Tony Bentley cascadefreehee...@gmail.comwrote: Does anyone know a good Recipe Script? function manageRecipes(){ for(i=0;irecipes.length;i++){ recipes[i].manage(); } } You want a recipe module written in ColdFusion?

RE: (ot) Mail servers

2010-07-07 Thread UXB Internet
Curious about current experiences with e-mail server software before I start looking around for better licensing terms. Thanks! We've been using Visnetic Mail Server (windows) which is essentially a re-packaged Merak or IceWarp Mail server and have had very good luck with it. It has a full

Re: (ot) Mail servers

2010-07-07 Thread Rick Root
I've been using MDaemon for years and found that it works great. Other mail servers I've used and didn't much care for include Coolfusion IMS Lite and Gordano NTMail (way long time ago). Been using MDaemon for 8 years now here at Duke as a small departmental mail server (now it serves

Re: Target particular instance

2010-07-07 Thread Rick Root
I've dealth with this too, trying to figure out how to monitor multiple CF instances without opening the firewall. What I did is set up a separate web site on the cfusion instance that made http calls to the port numbers for the specific instances I wanted to monitor, and then I'd call

Re: Query returning a list for a JOIN

2010-07-07 Thread Rick Root
Check out transact-SQL's COALESCE() function. I use this in a case to return a comma-separated list of roles for each user in a database... ie, my userRoles table looks like this CREATE TABLE [dbo].[userRoles] ( [userid] [char](10) NOT NULL, [roleid] [smallint] NOT NULL,

Google Adwords API Question..

2010-07-07 Thread Matt Blatchley
I'm trying to figure out the best way to approach this and not really coming up with anything good. Most likely because I've been looking at it all day today. In the Adwords API, there is a web service called ReportService used to generate reports. It's a step by step process which I have

Re: Google Adwords API Question..

2010-07-07 Thread John M Bliss
We just have two CF scheduled processes. One that does #1 and #2 and the other that does #3, #4, and #5. And then, via the CF scheduler, we put *at least* 30 minutes between those two processes and...problem solved. Will that not work for you? Are you trying to do this in real time while an

Re: Google Adwords API Question..

2010-07-07 Thread Matt Blatchley
It for a SaS, so it would have to run reports continuously for x number of clients on the system. You think that would still be something that would work if I had multiple tasks setup for each client on the system? You ever run into reliability issues with the Reports coming back empty or

Re: Google Adwords API Question..

2010-07-07 Thread John M Bliss
You think that would still be something that would work if I had multiple tasks setup for each client on the system? Probably. Or else have one task responsible for doing 1 2 for any/all clients currently requiring reports and have another task responsible for doing 3, 4, 5 for those same

RE: Looking for a CF Recipe script!

2010-07-07 Thread Bobby Hartsfield
See how easy everything is in CF? :-) .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Tony Bentley [mailto:cascadefreehee...@gmail.com] Sent: Wednesday, July 07, 2010 12:08 PM To: cf-talk Subject: Re: Looking for a CF Recipe script!

Re: Google Adwords API Question..

2010-07-07 Thread Matt Blatchley
That sounds great. Thanks John. I'll give that a go. Matt ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

Re: Google Adwords API Question..

2010-07-07 Thread John M Bliss
You're welcome. I'm happy to have another CF/AdWords person on this list! Let me know if I can offer further assistance...without giving away our secret sauce. :-) On Wed, Jul 7, 2010 at 10:28 PM, Matt Blatchley m...@bridgeleaf.com wrote: That sounds great. Thanks John. I'll give that a