Case of Table Names in Queries (MySQL / Linux / CFMX7)
I moved a site from one linux server to another linux server over the weekend. The CF server is MX7. The database for this site is MySQL 5.x and was replicated from the old server to the new server. All database table names are lower case. When running a cfquery on the site after the move, I am getting an error that the table doesn't exist: Error Executing Database Query. Table 'mydatabasename.User' doesn't exist I am confused why the table "user" is being upper cased. The cfquery statement is (cfqueryparams removed for simplification): select UserID,FirstName,LastName,Login,Password from user where login = '#Trim(Form.Login)#' and Password = '#Trim(Form.Password)#' and the executed SQL is: select UserID,FirstName,LastName,Login,Password from User where login = '' and Password = 'x' As you can see, the table name "user" is lower case in the cfquery statement but is converted to "User" when the query is executed. This is where I am confused and don't understand why. The lower_case_table_names system variable on the MySQL server is set to the default value of "0". This is the same way the old server was set up and the query worked fine. Any idea on why this is happening? -- Best regards, Chris Montgomery ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323261 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
new to cflayout/cflayoutarea
I've tried using cflayout/cflayoutarea for the first time. I'm using the left side for navigation links and the center area for the main content. When I click a link in the cflayoutarea navmenu section, the link works fine and the form displays properly. Unfortunately, when I enter information in the form and click the form's submit button, the cflayout/cflayoutarea section dissapears and the forms action page displays using the entire screen. Is there some code I must use in my forms to keep the cflayout/cflayoutarea intact. I couldn't find any online examples of my scenario, links to basic form pages. I haven't found much regarding cflayout/cflayoutarea; except for the simplest examples. I am getting the impression that not many people are using cflayout/cflayoutarea. Any help is greatly appreciated. Thanks in advance ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323260 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: cfftp action=existsFile failing
Have you tried opening a connection first and then reusing that connection for the existsFile check? mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/6/9 CF Coder2 : > > I can't get the to work for me. > I get an error trying to run it says: > > DateTime - 06/08/2009 03:00:12 PM > Diagnostics - null null > The error occurred on line 82. > Template - /dynamic/ftp_download.cfm ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323259 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: how to deal with "Delivery Status Notification (Failure)" cfmail
http://tools.ietf.org/html/rfc3463 for full specs on delivery status codes. the ones you should be checking for are all 5.x.x codes. the most common failure codes are: 5.1.1 - unknown address 5.2.2 - mailbox full basically, you need to check if status code starts with 5. (failed) and then if it is 5.2.2 (failed because mailbox is full). if it is 5.2.2 then do not remove the recipient form your db just yet, otherwise you can probably safely remove the address. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 09/06/2009 06:53, Paul Ihrig wrote: > but it does return a failure if the mail box is full?? > you would think it would return a code that email is correct on receiving > server but the recipient is over its size limit > > how the hell do you code for that?? > i really dont want to resend to a returned addy... > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323258 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: SOA Coldfusion best practices
Well, my weekend was no surprise trip to Magic Mountain or anything ;o) I attribute all "sass" to lack of caffeine, but I think we all know the real reason is that working for the man has made me a cranky person. nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Mon, Jun 8, 2009 at 3:36 PM, Alan Rother wrote: > > Geez Nate, > Someone is sassy today... Rough weekend? > > =] > > -- > Alan Rother > Adobe Certified Advanced ColdFusion MX 7 Developer > Manager, Phoenix Cold Fusion User Group, AZCFUG.org > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323257 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: Sitewide Error Handler and IFrames
Our error handler has some logic in it to pass on a message based on what the error actuall is and that is passed on to a user friendly template. What is happening, is the iframe is displaying the standard CF error instead of the pretty error page. It appears that it is ignoring the site wide error handler completely. Outside of the iframes...the errors are appropriately handled. Eric On Mon, Jun 8, 2009 at 5:25 PM, Casey Dougall < ca...@uberwebsitesolutions.com> wrote: > > On Mon, Jun 8, 2009 at 5:59 PM, Eric Roberts < > ow...@threeravensconsulting.com> wrote: > > > > > One more question... > > > > Is there a reason why the iframe would not pick up the sitewide error > > handler in the iframe and display the user friendly error page and > instead > > just display a standard CF error? > > > > If your default error handler just displays the simplest of messages, no > doubt. If it includes an exterior template of some sort, well you would > need > to display that as well. Depending on the size of this iframe, you need to > consider what real estate you have available. > > We've all seen the iis 404 inside iframes ;-) > > > > > > > Casey, we are not using an application.cfc unfortunately. That would be > > too > > easy *grin*. > > > > Eric > > > > > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323256 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: how to deal with "Delivery Status Notification (Failure)" cfmail
but it does return a failure if the mail box is full?? you would think it would return a code that email is correct on receiving server but the recipient is over its size limit how the hell do you code for that?? i really dont want to resend to a returned addy... ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323255 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
cfftp action=existsFile failing
I can't get the to work for me. I get an error trying to run it says: DateTime - 06/08/2009 03:00:12 PM Diagnostics - null null The error occurred on line 82. Template - /dynamic/ftp_download.cfm The stack trace says: StackTrace - java.lang.NullPointerException at coldfusion.runtime.NeoPageContext.findAttribute(NeoPageContext.java:575) at coldfusion.tagext.net.FtpTag.doInterfaceSetup(FtpTag.java:632) at coldfusion.tagext.net.FtpTag.doStartTag(FtpTag.java:667) at coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:2661) at cfftp_download2ecfm102608902.runPage(/webdev/source/abc/en/dynamic/ftp_download .cfm:82) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370) at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:279) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:74) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFil ter.java:28) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.filter.RequestThrottleFilter.invoke(RequestThrottleFilter.java:126) at coldfusion.CfmServlet.service(CfmServlet.java:175) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilt er.java:42) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at jrun.servlet.FilterChain.service(FilterChain.java:101) at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286) at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543) at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203) at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320 ) at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428) at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266) at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66) The cfftp tag used is (with actual remotefile path modified for security reasons)... I'm on Sun version of CF8. I find NO examples in any Adobe docs! I find no discussion of this in LiveDocs or here on this forum. Is there a better way to do this? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323254 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: SOA Coldfusion best practices
Geez Nate, Someone is sassy today... Rough weekend? =] -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323253 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: SOA Coldfusion best practices
ha ha -- Ryan LeTulle On Mon, Jun 8, 2009 at 5:27 PM, David McGuigan wrote: > > Who are you kidding, you loved doing that. > > > On Mon, Jun 8, 2009 at 4:14 PM, Nathan Strutz wrote: > > > > > I hate to do this, but, did you try http://tinyurl.com/nx44fe ? > > > > > > nathan strutz > > [Blog and Family @ http://www.dopefly.com/] > > [AZCFUG Manager @ http://www.azcfug.org/] > > [Twitter @nathanstrutz] > > > > > > On Mon, Jun 8, 2009 at 2:49 PM, Tim Oommen wrote: > > > > > > > > Are there any good sites or presentations that people can recommend for > > > best practices when implementing a SOA architecture using ColdFusion? > > > > > > > > > > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323252 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: SOA Coldfusion best practices
Who are you kidding, you loved doing that. On Mon, Jun 8, 2009 at 4:14 PM, Nathan Strutz wrote: > > I hate to do this, but, did you try http://tinyurl.com/nx44fe ? > > > nathan strutz > [Blog and Family @ http://www.dopefly.com/] > [AZCFUG Manager @ http://www.azcfug.org/] > [Twitter @nathanstrutz] > > > On Mon, Jun 8, 2009 at 2:49 PM, Tim Oommen wrote: > > > > > Are there any good sites or presentations that people can recommend for > > best practices when implementing a SOA architecture using ColdFusion? > > > > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323251 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: Sitewide Error Handler and IFrames
On Mon, Jun 8, 2009 at 5:59 PM, Eric Roberts < ow...@threeravensconsulting.com> wrote: > > One more question... > > Is there a reason why the iframe would not pick up the sitewide error > handler in the iframe and display the user friendly error page and instead > just display a standard CF error? > If your default error handler just displays the simplest of messages, no doubt. If it includes an exterior template of some sort, well you would need to display that as well. Depending on the size of this iframe, you need to consider what real estate you have available. We've all seen the iis 404 inside iframes ;-) > > Casey, we are not using an application.cfc unfortunately. That would be > too > easy *grin*. > > Eric > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323250 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: SOA Coldfusion best practices
I hate to do this, but, did you try http://tinyurl.com/nx44fe ? nathan strutz [Blog and Family @ http://www.dopefly.com/] [AZCFUG Manager @ http://www.azcfug.org/] [Twitter @nathanstrutz] On Mon, Jun 8, 2009 at 2:49 PM, Tim Oommen wrote: > > Are there any good sites or presentations that people can recommend for > best practices when implementing a SOA architecture using ColdFusion? > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323249 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: Sitewide Error Handler and IFrames
One more question... Is there a reason why the iframe would not pick up the sitewide error handler in the iframe and display the user friendly error page and instead just display a standard CF error? Casey, we are not using an application.cfc unfortunately. That would be too easy *grin*. Eric On Mon, Jun 8, 2009 at 4:53 PM, Casey Dougall < ca...@uberwebsitesolutions.com> wrote: > > On Mon, Jun 8, 2009 at 5:37 PM, Ryan Letulle wrote: > > > > > In my experience it has. > > -- > > Ryan LeTulle > > > > > > On Mon, Jun 8, 2009 at 4:33 PM, Eric Roberts < > > ow...@threeravensconsulting.com> wrote: > > > > > > > > We have ample use of Iframes on our site (something I cannot change) > and > > we > > > would like to use the sitewide error handler to manage errors. > > > > > And you might want to specifically set a variable with a list of these > iframe pages so you can tell OnError to handle these in a specific manor or > more specifically, OnRequestStart so it does not draw your layout inside > the > iframe. > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323248 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
SOA Coldfusion best practices
Are there any good sites or presentations that people can recommend for best practices when implementing a SOA architecture using ColdFusion? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323247 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: Sitewide Error Handler and IFrames
On Mon, Jun 8, 2009 at 5:37 PM, Ryan Letulle wrote: > > In my experience it has. > -- > Ryan LeTulle > > > On Mon, Jun 8, 2009 at 4:33 PM, Eric Roberts < > ow...@threeravensconsulting.com> wrote: > > > > > We have ample use of Iframes on our site (something I cannot change) and > we > > would like to use the sitewide error handler to manage errors. > And you might want to specifically set a variable with a list of these iframe pages so you can tell OnError to handle these in a specific manor or more specifically, OnRequestStart so it does not draw your layout inside the iframe. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323246 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: Sitewide Error Handler and IFrames
> We have ample use of Iframes on our site (something I cannot change) and we > would like to use the sitewide error handler to manage errors. If an error > is thrown in an iframe, the error is only going to be shown in that Iframe > and the rest of the page will display as normal...right? I just wanted to > verify this before we spend any more time spinning out wheels here. Thanks! Yes, that's correct. You could, of course, use JavaScript to send a message from the iframe to the main window, or use a JavaScript "frame buster" within the iframe. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more informati ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323245 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: Sitewide Error Handler and IFrames
In my experience it has. -- Ryan LeTulle On Mon, Jun 8, 2009 at 4:33 PM, Eric Roberts < ow...@threeravensconsulting.com> wrote: > > We have ample use of Iframes on our site (something I cannot change) and we > would like to use the sitewide error handler to manage errors. If an error > is thrown in an iframe, the error is only going to be shown in that Iframe > and the rest of the page will display as normal...right? I just wanted to > verify this before we spend any more time spinning out wheels here. > Thanks! > > Eric > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323244 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Sitewide Error Handler and IFrames
We have ample use of Iframes on our site (something I cannot change) and we would like to use the sitewide error handler to manage errors. If an error is thrown in an iframe, the error is only going to be shown in that Iframe and the rest of the page will display as normal...right? I just wanted to verify this before we spend any more time spinning out wheels here. Thanks! Eric ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323243 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: cffile and illegal names
Nevermind... I didn't realize you could put your own file name in the destination attribute. I thought it would only take the path to save the image. So I used createUUID() to make the file name at the end of the folder path. > -Original Message- > From: Chad Gray [mailto:cg...@careyweb.com] > Sent: Monday, June 08, 2009 4:30 PM > To: cf-talk > Subject: cffile and illegal names > > > Is there any way to rename files that are uploaded with CFFile? > > A person with a mac uploaded a file with a colon in it and the Windows CF > server can write it. > > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323242 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: how to deal with "Delivery Status Notification (Failure)" cfmail
On Mon, Jun 8, 2009 at 10:24 PM, Al Musella, DPM wrote: > I believe (can anyone confirm this?) that when a mail server employs > greylisting against spammers, that would also send a Delivery Status > Notification message, but your mail server seems to know to retry it > and it gets through. No it doesn't, it just gets a 4xx statuscode and tries again. Jochem -- Jochem van Dieten http://jochem.vandieten.net/ ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323241 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
cffile and illegal names
Is there any way to rename files that are uploaded with CFFile? A person with a mac uploaded a file with a colon in it and the Windows CF server can write it. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323240 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: how to deal with "Delivery Status Notification (Failure)" cfmail
I believe (can anyone confirm this?) that when a mail server employs greylisting against spammers, that would also send a Delivery Status Notification message, but your mail server seems to know to retry it and it gets through. The reason I think this is what happens is that I was trying to track down a problem where people would sign up for my newsletter, get the first issue then never get it again.. I had it automatically removing people whom we got a failure notice on. So now, I check that it happens twice - on 2 different issues, before I remove them.. >really? >because the inbox is full... >crap.. i just removed 507 users from getting the email... > >On Mon, Jun 8, 2009 at 9:26 AM, Azadi Saryev wrote: > > > > > add a FAILTO attribute to your tag and specify an email address > > to send failure notifications to. > > make sure the account you specify is NOT used for anything else - create > > a new bounce@ account or something like that if necessary. > > use or cf's exchange server integration tags/functions to check > > that email account for new messages, get the headers and process as > > necessary. > > keep in mind that not every reply/message that goes into that account > > may be a failure due to invalid address. sometimes you get failures > > because recipient's inbox is full, or due to network problems. > > > > > > Azadi Saryev > > Sabai-dee.com > > http://www.sabai-dee.com/ > > > > > > On 08/06/2009 19:35, Paul Ihrig wrote: > > > hey guys > > > > > > question > > > i ran a cfmail over the weekend to 37,000 customers. in exchange i got > > 507 > > > "Delivery Status Notification (Failure)" > > > any one know of a quick and dirty way to grab just the email address of > > the > > > returned email, with out opening each message and coping and pasting > > > i need to remove the bounced users from future mails,... > > > > > > also is there a programatic way to capture the info and slap it into a > > table > > > next time? > > > how do you guys deal with this? > > > > > > > > > > > > > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323239 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: New House of Fusion lists and aliases
> i think, the amount of jquery-related questions on cf-talk list is > large enough to warrant a separate list. There is a separate list already (the JS one) - the problem is that it isn't used. Perhaps a more useful solution would be if the cf-talk/coldfusion list was policed a little, so that questions related to JS/CSS/SQL/RegEx/etc were all directed to the appropriate lists? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323238 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re[2]: MS CRM Integration
Hi John! > Maybe you could ping this guy to see how he solved his issue: Good idea. Unfortunately, it did not pan out. But, thanks anyway. :) -- Cheers! Michael David Friday, June 5, 2009, 1:20:47 PM, you wrote: > Maybe you could ping this guy to see how he solved his issue: > http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:58122/sort:1 > On Fri, Jun 5, 2009 at 12:09 PM, Michael David wrote: >> >> Happy Friday to you all >> >> I have to integrate an existing CF application with Microsoft's CRM. >> Anyone >> know of an existing CF component or other code out that to interface with >> its web >> services?Because of the urgent time-frame on this, I am hoping I >> don't have to develop one from scratch. >> >> -- >> Cheers! >> Michael David >> >> >> > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323237 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: how to deal with "Delivery Status Notification (Failure)" cfmail
really? because the inbox is full... crap.. i just removed 507 users from getting the email... On Mon, Jun 8, 2009 at 9:26 AM, Azadi Saryev wrote: > > add a FAILTO attribute to your tag and specify an email address > to send failure notifications to. > make sure the account you specify is NOT used for anything else - create > a new bounce@ account or something like that if necessary. > use or cf's exchange server integration tags/functions to check > that email account for new messages, get the headers and process as > necessary. > keep in mind that not every reply/message that goes into that account > may be a failure due to invalid address. sometimes you get failures > because recipient's inbox is full, or due to network problems. > > > Azadi Saryev > Sabai-dee.com > http://www.sabai-dee.com/ > > > On 08/06/2009 19:35, Paul Ihrig wrote: > > hey guys > > > > question > > i ran a cfmail over the weekend to 37,000 customers. in exchange i got > 507 > > "Delivery Status Notification (Failure)" > > any one know of a quick and dirty way to grab just the email address of > the > > returned email, with out opening each message and coping and pasting > > i need to remove the bounced users from future mails,... > > > > also is there a programatic way to capture the info and slap it into a > table > > next time? > > how do you guys deal with this? > > > > > > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323236 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: FW: Cold Fusion 5, Windows 2003 & PCI compliance
I also emailed with him quit a bit on this. Part of the issue is a the session id's used in CF5. The fact that they are sequential, guessable and recycled is causing a problem with a compliance test. The other part of the issue was resolved. Wil On Mon, Jun 8, 2009 at 8:46 AM, Justin Scott wrote: > > > Well, given the lack of a response last time you asked, > > I'm guessing "no" :-) > > A few of us replied off-list for the details. > > > -Justin > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323235 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: New House of Fusion lists and aliases
i think, the amount of jquery-related questions on cf-talk list is large enough to warrant a separate list. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 08/06/2009 20:35, Peter Boughton wrote: > Why the jQuery specific one? > The existing JavaScript list is incredibly low traffic, so seems pointless to > segment it? > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323234 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
RE: FW: Cold Fusion 5, Windows 2003 & PCI compliance
> Well, given the lack of a response last time you asked, > I'm guessing "no" :-) A few of us replied off-list for the details. -Justin ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323233 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Re: New House of Fusion lists and aliases
Why the jQuery specific one? The existing JavaScript list is incredibly low traffic, so seems pointless to segment it? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323232 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: FW: Cold Fusion 5, Windows 2003 & PCI compliance
On Wednesday 03 Jun 2009, UXB Internet wrote: > I hate to resort to pleading but Is there no-one on this list that has any > experience with PCI conformance and Cold Fusion 5 willing to share their > experience? Or at least point me to someone who does have the knowledge? Well, given the lack of a response last time you asked, I'm guessing "no" :-) -- Helping to continually evolve granular patterns as part of the IT team of the year, '09 and '08 Tom Chiverton Developer Tel: +44 0161 618 5032 Fax: +44 0161 618 5099 tom.chiver...@halliwells.com 3 Hardman Square, Manchester, M3 3EB www.Halliwells.com This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. A list of members is available for inspection at the registered office together with a list of those non members who are referred to as partners. We use the word partner to refer to a member of the LLP, or an employee or consultant with equivalent standing and qualifications. Regulated by the Solicitors Regulation Authority. CONFIDENTIALITY This email is intended only for the use of the addressee named above and may be confidential or legally privileged. If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents. If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 2500. For more information about Halliwells LLP visit www.Halliwells.com. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323231 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: how to deal with "Delivery Status Notification (Failure)" cfmail
add a FAILTO attribute to your tag and specify an email address to send failure notifications to. make sure the account you specify is NOT used for anything else - create a new bounce@ account or something like that if necessary. use or cf's exchange server integration tags/functions to check that email account for new messages, get the headers and process as necessary. keep in mind that not every reply/message that goes into that account may be a failure due to invalid address. sometimes you get failures because recipient's inbox is full, or due to network problems. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ On 08/06/2009 19:35, Paul Ihrig wrote: > hey guys > > question > i ran a cfmail over the weekend to 37,000 customers. in exchange i got 507 > "Delivery Status Notification (Failure)" > any one know of a quick and dirty way to grab just the email address of the > returned email, with out opening each message and coping and pasting > i need to remove the bounced users from future mails,... > > also is there a programatic way to capture the info and slap it into a table > next time? > how do you guys deal with this? > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323230 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Re: how to deal with "Delivery Status Notification (Failure)" cfmail
nm. just did an advanced search in ms outlook. made the result pane look the way i want copy/paste insert results into db.. clunky.. On Mon, Jun 8, 2009 at 8:35 AM, Paul Ihrig wrote: > hey guys > > question > i ran a cfmail over the weekend to 37,000 customers. in exchange i got 507 > "Delivery Status Notification (Failure)" > any one know of a quick and dirty way to grab just the email address of > the returned email, with out opening each message and coping and pasting > i need to remove the bounced users from future mails,... > > also is there a programatic way to capture the info and slap it into a > table next time? > how do you guys deal with this? > > > ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323229 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
how to deal with "Delivery Status Notification (Failure)" cfmail
hey guys question i ran a cfmail over the weekend to 37,000 customers. in exchange i got 507 "Delivery Status Notification (Failure)" any one know of a quick and dirty way to grab just the email address of the returned email, with out opening each message and coping and pasting i need to remove the bounced users from future mails,... also is there a programatic way to capture the info and slap it into a table next time? how do you guys deal with this? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323228 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
New House of Fusion lists and aliases
Due to requests and interest, I've started a few new lists on House of Fusion. Jquery (http://www.houseoffusion.com/groups/jquery) Flex Newbies (http://www.houseoffusion.com/groups/flex-newbies) ColdFusion Builder (http://www.houseoffusion.com/groups/coldfusion-builder) I've also gotten requests to add aliases to the main mailing lists to make posting easier. A few people were typing cf in their TO field and it automatically entered cf-talk when cf-community was meant or visa versa. The aliases are: cf-community-> community cf-talk -> coldfusion cf-jobs -> jobs cf-newbie -> newbie If there's any lists that you feel are missing or any features you want added/changed, you can email me directly or use the contact form at: http://www.houseoffusion.com/contact.cfm Thank you for your participation. I hope you enjoy the new lists and features. Michael Dinowitz Host: House of Fusion ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323227 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4