Re: cfmail with gmail - second question

2010-01-28 Thread TechInfo

Did you try putting ALL the attributes into the attributeCollection?  
Even the "port" and "useSSL" ??  I just read that it is an "all or 
nothing" collection.

Jevo

Matthew Smith wrote:
> I posted earlier about using cfmail with google hosted mail.  I was told it 
> would require cf8.  We ended up upgrading the account to cf8, but I still 
> can't get it to work.  Here is what I have.  The page runs without error, I 
> just don't ever receive the test mail:
>
>  server="smtp.gmail.com",
> username="webs...@website.com",
> password="password",
> from="webs...@website.com",
> to="rece...@gmail.com",
> subject="Eat my shorts"
> }
> />
>
>  attributeCollection="#mailAttributes#"
>   
>> port 465, SSL enabled
>> 
>
>  attributeCollection="#mailAttributes#"
>   
>> port 587, TLS enabled
>> 
>
>  attributeCollection="#mailAttributes#"
>   
>> port 465, SSL and TLS enabled
>> 
>
>
> 

~|
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:330249
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Totally Baffling Extra ">" being added in a plain text email. What the heck?

2009-04-01 Thread TechInfo

I know I'm replying to a really old post, but I didn't see an answer and 
I know what the answer is.

It's not CF or CFMail, it's the word "From" at the beginning of a line.  
In ANY plain text email, the word "From" at the start of a line has that 
extra character added to the front of it.  Try it ... send yourself 
plain text email from any mail client and start a line with the word 
"From" ... Don't worry about it ... email readers can handle it.

Jevo

Les Mizzell wrote:
> ARRRGGHH
>
> This is the kind of thing that makes you tear ALL your hair out! If 
> anybody can figure this one out, I'll treat you at Starbucks in some 
> future life!
>
> Seems simple enough - I'm just ending an plain text email:
>
>   to="somebody.somewhere.com"
>   subject="Just a quick test"
>   from="m...@myaddress.com"
>   failto="m...@again.com">
> 
>
>
> "textEMAIL_BODY.cfm" - for testing right now is:
>
> From #request.someNAME#,
> I'm testing plain text email!!!
>
> That's *IT*!! Nothing else to screw up.
>
> When I send this, in the body of the email I'm getting (minus the quotes):
>
> ">From Tom"
>
> Now, before you say, well, you've got an extra ">" somewhere you just 
> haven't found yet..
>
> If I change the first letter in "From" to lower case "from", the ">" 
> goes away. In fact, if I change it to ANYTHING else, lower or upper 
> case, the ">" goes away If I change it BACK to a cap "From", the ">" 
> returns.
>
> Now, it's gets even MORE weird! Let's CHANGE "textEMAIL_BODY.cfm" to:
>
> 
> #req.DATE#
> From #request.someNAME#,
> I'm testing plain text email!!!
>
> Happens AGAIN - it seems that any combination of code that puts ">F" 
> together, results in the ">" displaying in the email!
>
> Yes, I can find a way to move the "From" away from a tag - but then it 
> messes with the spacing requested by the client. I've written dozens of 
> richtext email systems for clients, and have never run into anything 
> like this!
>
> I'M TOTALLY STUMPED!!!
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321208
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: "Accept-Encoding" missing from GetHttpRequestData()

2008-06-23 Thread TechInfo
Dave Watts wrote:
>> I was about to try some gzip compression of CSS files, but 
>> found that CF's GetHttpRequestData().headers doesn't include 
>> the "Accept-Encoding" 
>> field when I hit the page from windows with Firefox (2 or 3) 
>> or IE7, but when I use Firefox Add-on "Live Http Headers", I 
>> see "Accept-Encoding: 
>> gzip,deflate"
>>
>> Does anyone know why the "Accept-Encoding" field is missing from
>> GetHttpRequestData() ??
>>
>> Here's my test page, where I call GetHttpRequestData() then 
>>  the result.
>>
>> http://dragonflygirl.com/testgzip.cfm
>> 
>
> When I go to your URL, it shows up for me (FF3). In your screenshot, there's
> an "X-McProxyFilter" header, which may be removing the value.
>   
Yes -- it was McAfee Redirector Service causing the trouble.  I turned 
that off and all is well now, thanks.

But it DOES mean that anyone who has this service running won't get my 
new compressed CSS either, which is too bad.

Jevo

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308000
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: "Accept-Encoding" missing from GetHttpRequestData()

2008-06-23 Thread TechInfo
Dave Watts wrote:
>> I was about to try some gzip compression of CSS files, but 
>> found that CF's GetHttpRequestData().headers doesn't include 
>> the "Accept-Encoding" 
>> field when I hit the page from windows with Firefox (2 or 3) 
>> or IE7, but when I use Firefox Add-on "Live Http Headers", I 
>> see "Accept-Encoding: 
>> gzip,deflate"
>>
>> Does anyone know why the "Accept-Encoding" field is missing from
>> GetHttpRequestData() ??
>>
>> Here's my test page, where I call GetHttpRequestData() then 
>>  the result.
>>
>> http://dragonflygirl.com/testgzip.cfm
>> 
>
> When I go to your URL, it shows up for me (FF3). In your screenshot, there's
> an "X-McProxyFilter" header, which may be removing the value.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>   
Thanks Dave, I see that now ... So it's not a CF problem, that part is 
good.  If only I could track down where it's coming from.  I think it's 
from McAfee, but I have no "Proxy" settings in McAfee & I just tried 
turning it all off and still get the "X-McProxyFilter" header.  I'm 
heading out into the non-CF world to keep looking for answers -- if any 
of you know any more, please let me know.

Thanks,
Jevo


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307999
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


"Accept-Encoding" missing from GetHttpRequestData()

2008-06-23 Thread TechInfo
I was about to try some gzip compression of CSS files, but found that 
CF's GetHttpRequestData().headers doesn't include the "Accept-Encoding" 
field when I hit the page from windows with Firefox (2 or 3) or IE7, but 
when I use Firefox Add-on "Live Http Headers", I see "Accept-Encoding: 
gzip,deflate"

Does anyone know why the "Accept-Encoding" field is missing from 
GetHttpRequestData() ??

Here's my test page, where I call GetHttpRequestData() then  the 
result.

http://dragonflygirl.com/testgzip.cfm

FYI, This is Windows 2003 server, CF 8.0.0.175276

Thanks in advance,
Jevo (Jann VanOver)

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307995
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Setting a default value and dynamically checking a radio button

2008-06-09 Thread TechInfo
Les Mizzell wrote:
> The only thing I can find that works is:
>
>or thisNL.recordcount NEQ 1>
> checked="checked"
> 
>
> Which is a little uglier that setting thisNL.alignHEAD to "rgt" by 
> default if it isn't anything else.
>   
If "thisNL" is a query, you CAN reset a value, you just have to index 
the row.


See if that works for you

Jevo

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307098
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Error in url parameter

2008-06-04 Thread TechInfo
Yogendra Shivhare wrote:
> I am getting following error in my applicationElement FORM_ID is undefined in 
> URL. 
> G:\ITO_Services_Webs\iForms\sessionMgmt.cfm: line 103 
> 101 :  
> 102 : EXEC SP_Get_Form 1
> 103 : @Form_ID = #URL.FORM_ID#, 
> 104 : @Key_Type = '#URL.Key_Type#', 
> 105 : @Key_ID = #URL.Key_ID#
> Form id is always there in url when one try to access the site. Link is 
> http://iforms.sbc.com/iforms_loader.cfm?Form_id=67&Key_Type=VPMO_ID&Key_ID=71241&SBCUID=dw4694&IO_Mode=1&uiid=86972628
>   

What is the "1" at the end of line 102?  If that's a parameter, 
shouldn't there be a comma after it?

Jevo

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306860
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Google Maps, CF and Ajax

2008-03-20 Thread TechInfo
Mark Kruger wrote:
> Steve,
>
> I'm probably too long in the tooth to succumb to such familiarity.  But
> maybe this once Thanks "Cutter" Gee that felt kind of good. Will you
> call me "Ace Rimmer"?  :) 
>   
What a Guy!  (sorry, I couldn't resist)


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:301718
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: best way to store search terms entered on a website?

2007-08-31 Thread TechInfo
I also log how many hits they got from their search.  That tells us if
our search mechanisms are working or not.

Jerry Johnson wrote:
> Yes, but the rows are not (duplicate).
>
> The time, the search string. Potentially the IP address. in
> combination, always unique.
>
> On 8/24/07, stylo stylo <[EMAIL PROTECTED]> wrote:
>   
>> You seriously just keep adding row upon (duplicate) row every day for years 
>> and years? That's a hell of a lot of rows because people search a lot. I'm 
>> surprised, but I'm no expert. If no one thinks that's a bad idea...
>>
>> Thanks again.
>>
>>
>> 
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287561
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 do this conditional statement.

2007-08-20 Thread TechInfo
Will Tomlinson wrote:
> Easy question here... just wanna make sure I don't screw this up cause it's 
> kinda important.  :)
>
> Here's my current statement. 
>
>  getWebEnhancedAddonQuestions.recordcount>
>  Show questions blah blah...
>  
>
> What I need it to say is, if the delivery method is "web-enhanced" OR hybrid. 
>
> Would you just stick it in there? Or use parenthesis around those two items?
>
>  
>  getSection.DeliveryMethod EQ "Hybrid") AND 
> getWebEnhancedAddonQuestions.recordcount>
>  Show questions blah blah...
>  
>   
Neither.  I would use a list function.  It is efficient and makes sense
to read:





~|
Get the answers you are looking for on the ColdFusion Labs
Forum direct from active programmers and developers.
http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid-72&catid=648

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286655
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Why I love type checking and cfqueryparam

2007-07-20 Thread TechInfo
Yes!  We started getting these on July 4 also.  Thank you CFQUERYPARAM!

Paul Vernon wrote:
> Someone just pasted this into a URL on one of our sites...
>
> EventID=280 and 1=convert(int,(select top 1
> char(124)+char(124)+table_name+char(124)+char(124) from
> information_schema.tables where table_name > ('') order by table_name
> asc))--sp_password
>
> Paul
>
>
>
> 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:284247
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4