Re: Work Around for SSLv3 Vulnerability?

2014-10-30 Thread Michael Grant

I'll try that with them, thank you SO much. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359547
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Work Around for SSLv3 Vulnerability?

2014-10-30 Thread Jordan Michaels

Yes, it should auto-negotiate by default, and honestly, I'm not aware of 
a way to turn off auto-negotiation unless you force a specific protocol 
(like I did earlier with my curl command).

It's also possible that with your payment providers most recent update 
they might have gone from SHA1 to SHA2 - which would require you to use 
a new CA.

With the specific error you're getting, it *really* makes me think you 
just need to re-import the public KEY and CA. Please try that, and let 
us know if that doesn't take care of the issue for you.

Warm Regards,
Jordan Michaels
Vivio Technologies

On 10/30/2014 04:47 PM, Michael Grant wrote:
>
> Thanks for the reply. Should the cfhttp code I have automatically try tls? Is 
> this something wrong in the Newtek config?
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359546
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Work Around for SSLv3 Vulnerability?

2014-10-30 Thread Michael Grant

Thanks for the reply. Should the cfhttp code I have automatically try tls? Is 
this something wrong in the Newtek config?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359545
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Work Around for SSLv3 Vulnerability?

2014-10-30 Thread Michael Grant

I don't know. Newtek is the hosting provider. As soon as they disabled ssl3 it 
just immediately stopped working. I don't really know what to tell them to do 
and I'm not sure they have tried all that hard to find a solution.

Do you know what setting would determine if it negotiated down or not? I would 
essentially just share this back to Newtek in the hopes they could help.

Mike

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359544
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Work Around for SSLv3 Vulnerability?

2014-10-30 Thread Jordan Michaels

I was able to communicate with their server using TLSv1:

=
jordan@jordan-M61P-S3:~$ curl -v --tlsv1.0 https://orbital1.paymentech.net/
* Hostname was NOT found in DNS cache
*   Trying 65.124.118.70...
* Connected to orbital1.paymentech.net (65.124.118.70) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: none
   CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Server key exchange (12):
* SSLv3, TLS handshake, Server finished (14):
* SSLv3, TLS handshake, Client key exchange (16):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSL connection using ECDHE-RSA-AES256-SHA
* Server certificate:
*subject: C=US; ST=New York; L=New York; O=Chase Paymentech 
Solutions; OU=Enterprise Web Architecture; CN=orbital1.paymentech.net
*start date: 2014-07-03 00:00:00 GMT
*expire date: 2015-07-04 23:59:59 GMT
*subjectAltName: orbital1.paymentech.net matched
*issuer: C=US; O=VeriSign, Inc.; OU=VeriSign Trust Network; OU=Terms 
of use at https://www.verisign.com/rpa (c)10; CN=VeriSign Class 3 
International Server CA - G3
*SSL certificate verify ok.

=

TLSv1 is supposedly supported even in CF6, so you should be alright in CF9.

I would try re-importing their public KEY and CA into your keystore. 
Perhaps the key you're using is just too old.

Warm Regards,
Jordan Michaels
Vivio Technologies


On 10/30/2014 04:17 PM, .jonah wrote:
>
> What's preventing it from negotiating to an earlier version of SSL?
> Settings in the keystore?
>
>
> On 10/30/14, 3:36 PM, Michael Grant wrote:
>> I have a legacy app on CF9 (originally CF7) which uses CFHTTP to make a 
>> secure connection to Chase Paymentech's Orbital payment gateway. I have the 
>> SSL's installed into the Java keystore like I'm supposed to and for about 7 
>> years this app has been working as expected.
>>
>> Fast forward to a few days ago and my host disabled SSLv3, as the world has 
>> been instructed to do to thwart the POODLE vulnerability. The moment they 
>> did that my app no longer can process transactions. I get the classic 
>> "COM.Allaire.ColdFusion.HTTPFailure" type error with the message "Connection 
>> Failure: Status code unavailable". This isn't the typical message of when 
>> you don't have the cert installed where it says peer could not be 
>> authenticated.
>>
>> According to tech support it's only with CF that disabling SSLv3 stops 
>> communication. Apparently others don't have this issue.
>>
>> Does anyone know of a work around? I'm not sure if CF9 is the problem or CF 
>> as a whole. Would upgrading to CF10 help? I'm in a real bind here as the 
>> client hasn't been able to process ecommerce transactions for a few days now.
>>
>> Any help is appreciated.
>>
>> Here's the cfhttp code:
>>
>>  https://orbital1.paymentech.net"; method="post" 
>> throwonerror="yes" port="443">
>>  
>>  > value="1.0">
>>  > value="application/PTI43">
>>  > value="#Len(Trim(transInfo))#">
>>  > value="text">
>>  
>>  > value="Request">
>>  > value="#merchantID#">
>>  > value="2.2.0">
>>  > value="application/xml">
>>  
>>
>>
>>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359543
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Work Around for SSLv3 Vulnerability?

2014-10-30 Thread .jonah

What's preventing it from negotiating to an earlier version of SSL? 
Settings in the keystore?


On 10/30/14, 3:36 PM, Michael Grant wrote:
> I have a legacy app on CF9 (originally CF7) which uses CFHTTP to make a 
> secure connection to Chase Paymentech's Orbital payment gateway. I have the 
> SSL's installed into the Java keystore like I'm supposed to and for about 7 
> years this app has been working as expected.
>
> Fast forward to a few days ago and my host disabled SSLv3, as the world has 
> been instructed to do to thwart the POODLE vulnerability. The moment they did 
> that my app no longer can process transactions. I get the classic 
> "COM.Allaire.ColdFusion.HTTPFailure" type error with the message "Connection 
> Failure: Status code unavailable". This isn't the typical message of when you 
> don't have the cert installed where it says peer could not be authenticated.
>
> According to tech support it's only with CF that disabling SSLv3 stops 
> communication. Apparently others don't have this issue.
>
> Does anyone know of a work around? I'm not sure if CF9 is the problem or CF 
> as a whole. Would upgrading to CF10 help? I'm in a real bind here as the 
> client hasn't been able to process ecommerce transactions for a few days now.
>
> Any help is appreciated.
>
> Here's the cfhttp code:
>
>   https://orbital1.paymentech.net"; method="post" 
> throwonerror="yes" port="443">
>   
>value="1.0">
>value="application/PTI43">
>value="#Len(Trim(transInfo))#">
>value="text">
>   
>value="Request">
>value="#merchantID#">
>value="2.2.0">
>value="application/xml">
>   
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359542
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Work Around for SSLv3 Vulnerability?

2014-10-30 Thread Michael Grant

I have a legacy app on CF9 (originally CF7) which uses CFHTTP to make a secure 
connection to Chase Paymentech's Orbital payment gateway. I have the SSL's 
installed into the Java keystore like I'm supposed to and for about 7 years 
this app has been working as expected.

Fast forward to a few days ago and my host disabled SSLv3, as the world has 
been instructed to do to thwart the POODLE vulnerability. The moment they did 
that my app no longer can process transactions. I get the classic 
"COM.Allaire.ColdFusion.HTTPFailure" type error with the message "Connection 
Failure: Status code unavailable". This isn't the typical message of when you 
don't have the cert installed where it says peer could not be authenticated.

According to tech support it's only with CF that disabling SSLv3 stops 
communication. Apparently others don't have this issue. 

Does anyone know of a work around? I'm not sure if CF9 is the problem or CF as 
a whole. Would upgrading to CF10 help? I'm in a real bind here as the client 
hasn't been able to process ecommerce transactions for a few days now.

Any help is appreciated.

Here's the cfhttp code:

https://orbital1.paymentech.net"; method="post" 
throwonerror="yes" port="443">













~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359541
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Alternative to shared SMTP server

2014-10-30 Thread Scott Stroz

I use Mandrill, too.

Cannot say enough good things about it.

On Thu, Oct 30, 2014 at 9:03 AM, Will Swain  wrote:

>
> We use Mandrill, Very happy with it.
>
> On 30 October 2014 12:01, Russ Michaels  wrote:
>
> >
> > We use and recommend send grid
> >
> >
> > On Thu, Oct 30, 2014 at 8:22 AM, Kevin Parker 
> > wrote:
> >
> >
> > Has anyone had any experience using Send Grid (or even something else)
> with
> > CF - just looking for other options for a site rather than using the
> shared
> > mail server.
> >
> >
> > ++
> > Kevin Parker
> >
> > ++
> >
> >
> >
> >
> >
> >
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359540
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: IE slow, Ffox, Chrome, Opera fast

2014-10-30 Thread Cameron Childress

On Wed, Oct 29, 2014 at 8:46 PM, Gonzo Rock wrote:

> -- IE seems to hang after it renders a very large webpage... 13Mb of html
> -- Same page in firefox or chrome or opera have no problems
>
> Details:
> This page is pretty much straight up html markup of a 6000 row table using
> the classic  tags generated in CF.


I would look at ways to reduce the data you are sending the browser. I know
"it works in FF" but in my opinion your time would be much better spent
dropping something like datatables in there and using the Ajax callbacks to
show a subset of the data:

http://www.datatables.net/

You may also look at something like TokenInput to replace potentially giant
dropdowns.

http://loopj.com/jquery-tokeninput/

The more data you add, the more DOM there is for your JS library to walk
through and 13 megs is too big. From a practical standpoint no human can
actually consume that much information visually - so I usually try to get
to the bottom of what they are actually looking for and find a way to
quickly get them that data and nothing more.

-Cameron

-- 
Cameron Childress
--
p:   678.637.5072
im: cameroncf
facebook  | twitter
 | google+



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359539
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Problem with CF11 starting after boot

2014-10-30 Thread Dave Watts

> Got a little bit of a strange one here.  I have installed CF11 dev on my 
> laptop with the tomcat internal web server and I set the port to use
> 80.  Everything works fine, however after a reboot, when I hit pages I get 
> the error below.  If I restart CF it runs fine until I reboot again.  It
> seems strange that restarting the CF service solves the problem after it just 
> came up clean from a boot.
>
> Any ideas so I don't have to restart it every morning?

You could try delaying the service start so that it waits until other
services have started. Search for "delay service start Windows 7" for
more information.

Dave Watts, CTO, Fig Leaf Software
1-202-527-9569
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Service-Disabled Veteran-Owned Small Business
(SDVOSB) on GSA Schedule, and provides the highest caliber vendor-
authorized instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359538
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Problem with CF11 starting after boot

2014-10-30 Thread DURETTE, STEVEN J

Hi all,

Got a little bit of a strange one here.  I have installed CF11 dev on my laptop 
with the tomcat internal web server and I set the port to use 80.  Everything 
works fine, however after a reboot, when I hit pages I get the error below.  If 
I restart CF it runs fine until I reboot again.  It seems strange that 
restarting the CF service solves the problem after it just came up clean from a 
boot.

Any ideas so I don't have to restart it every morning?

Thanks, 
Steve

Error information:

HTTP Status 500 - ROOT CAUSE:

type Exception report
message ROOT CAUSE:
description The server encountered an internal error that prevented it from 
fulfilling this request.
exception
javax.servlet.ServletException: ROOT CAUSE: 
coldfusion.server.ServiceFactory$ServiceNotAvailableException: The Monitoring 
service is not available.
at 
coldfusion.server.ServiceFactory.getMonitoringService(ServiceFactory.java:223)
at coldfusion.CfmServlet.service(CfmServlet.java:199)
at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at 
coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
at 
coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at 
coldfusion.inspect.weinre.MobileDeviceDomInspectionFilter.doFilter(MobileDeviceDomInspectionFilter.java:121)
at 
coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)
at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)
at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:422)
at 
org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1040)
at 
org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:607)
at 
org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:313)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)


coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:70)
coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)

coldfusion.inspect.weinre.MobileDeviceDomInspectionFilter.doFilter(MobileDeviceDomInspectionFilter.java:121)
coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
note The full stack trace of the root cause is available in the Apache 
Tomcat/7.0.52 logs.

Apache Tomcat/7.0.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359537
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Alternative to shared SMTP server

2014-10-30 Thread Steve Milburn

Good to know, Dave. I figured there wouldn't be any problem using it from
CF, but just couldn't speak to it from experience.

On Thu, Oct 30, 2014 at 9:17 AM, Dave Watts  wrote:

>
> > Maybe Amazon SES? I haven't used it in a CF project so I can't speak to
> > that specifically, but I did use it in a Node.js project and it was a
> piece
> > of cake.
>
> Amazon SES works fine from CF. We use it quite a bit. But we also host
> our CF infrastructure with Amazon, so it makes sense there.
>
> Dave Watts, CTO, Fig Leaf Software
> 1-202-527-9569
> http://www.figleaf.com/
> http://training.figleaf.com/
>
> Fig Leaf Software is a Service-Disabled Veteran-Owned Small Business
> (SDVOSB) on GSA Schedule, and provides the highest caliber vendor-
> authorized instruction at our training centers, online, or onsite.
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359536
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Alternative to shared SMTP server

2014-10-30 Thread Dave Watts

> Maybe Amazon SES? I haven't used it in a CF project so I can't speak to
> that specifically, but I did use it in a Node.js project and it was a piece
> of cake.

Amazon SES works fine from CF. We use it quite a bit. But we also host
our CF infrastructure with Amazon, so it makes sense there.

Dave Watts, CTO, Fig Leaf Software
1-202-527-9569
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Service-Disabled Veteran-Owned Small Business
(SDVOSB) on GSA Schedule, and provides the highest caliber vendor-
authorized instruction at our training centers, online, or onsite.

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359535
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: IE slow, Ffox, Chrome, Opera fast

2014-10-30 Thread Byron Mann

I would agree the UI should maybe be tweaked; however things they may help
IE and even other browsers.

Set a fixed width on your columns and table.  .  Not sure if doing this as a style makes a difference or not.

Set the table-layout to fixed.  



On Wed, Oct 29, 2014 at 8:53 PM, .jonah  wrote:

>
> It seems the IE rendering engine is slower in your particular case. Time
> re-work your app to not send 13 Megs of data and 6000 select options to
> the client.
>
> Look into paging, live filtering, and ajax-powered searching.
>
> On 10/29/14, 5:46 PM, Gonzo Rock wrote:
> > Looking for ideas on how to fix this.
> >
> > -- IE seems to hang after it renders a very large webpage... 13Mb of html
> > -- Same page in firefox or chrome or opera have no problems
> >
> > Details:
> > This page is pretty much straight up html markup of a 6000 row table
> using
> > the classic  tags generated in CF.
> >
> > Caveat.
> > Above the main data table are 6 or so select boxes where the user can
> > select various filters to use and once they have they submit the page
> with
> > the selected filter to CF where a new query is run to effect the filter.
> > Among the 6 selects there are upwards of 6000 various  to choose
> > from. One of them holds 5000+ in that select box.
> >
> > Clicking on any of the select boxes... even the one with 6 options...
> takes
> > 5-10 seconds before the select box  opens. However this works VERY fast
> in
> > Chrome, FFox, Opera.
> >
> > If the user submits a filter that reduces the data returned to say 600
> rows
> > in the table... IE quickly shows the drop down box... as do the other
> > browsers.
> >
> > The Select/Option syntax is perfect... I have reviewed it over and over
> > again for errors... there are none that I see.
> >
> > The  sets are all proper
> >
> > I have worked with the doc type, the meta tags for encoding, yielding no
> > improvement. Fiddler has not been useful in this effort... though I'd be
> > the first to admit I don't get much of what it produces.
> >
> > Stackoverflow has a lot of discussion of javascript rendering but... this
> > is all html from CF
> >
> > So what is it about IE that causes this problem? This is IE 10 and 11. I
> > can't vouch for IE 9.
> >
> > Thanks for any ideas to chase down.
> >
> >
> >
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359534
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Alternative to shared SMTP server

2014-10-30 Thread Russ Michaels

Send grid et al does have a lot of useful extra features you won't get from
a plain smtp server so depends what you need.
The bounce tracking and reporting is very handy.


On Thu, Oct 30, 2014 at 13:11 PM, Byron Mann  wrote:


You could also do something like a small linux EC2 instance and run Postfix
which based on your data transfer would probably be free as well.

http://aws.amazon.com/free/

I think with Amazon SES you can send something like 2000 emails per day at
no cost.

~Byron




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359533
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Alternative to shared SMTP server

2014-10-30 Thread Byron Mann

You could also do something like a small linux EC2 instance and run Postfix
which based on your data transfer would probably be free as well.

http://aws.amazon.com/free/

I think with Amazon SES you can send something like 2000 emails per day at
no cost.

~Byron


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359532
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Alternative to shared SMTP server

2014-10-30 Thread Will Swain

We use Mandrill, Very happy with it.

On 30 October 2014 12:01, Russ Michaels  wrote:

>
> We use and recommend send grid
>
>
> On Thu, Oct 30, 2014 at 8:22 AM, Kevin Parker 
> wrote:
>
>
> Has anyone had any experience using Send Grid (or even something else) with
> CF - just looking for other options for a site rather than using the shared
> mail server.
>
>
> ++
> Kevin Parker
>
> ++
>
>
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359531
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Alternative to shared SMTP server

2014-10-30 Thread Russ Michaels

We use and recommend send grid


On Thu, Oct 30, 2014 at 8:22 AM, Kevin Parker 
wrote:


Has anyone had any experience using Send Grid (or even something else) with
CF - just looking for other options for a site rather than using the shared
mail server.


++
Kevin Parker

++





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359530
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Alternative to shared SMTP server

2014-10-30 Thread Steve Milburn

Maybe Amazon SES? I haven't used it in a CF project so I can't speak to
that specifically, but I did use it in a Node.js project and it was a piece
of cake.

Steve

On Thu, Oct 30, 2014 at 4:22 AM, Kevin Parker 
wrote:

>
> Has anyone had any experience using Send Grid (or even something else) with
> CF - just looking for other options for a site rather than using the shared
> mail server.
>
>
> ++
> Kevin Parker
>
> ++
>
>
>
> 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359529
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Alternative to shared SMTP server

2014-10-30 Thread Kevin Parker

Has anyone had any experience using Send Grid (or even something else) with
CF - just looking for other options for a site rather than using the shared
mail server.


++
Kevin Parker

++



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:359528
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm