Re: CFPOP and multipart bounce messages

2013-03-11 Thread Rick Root
Paul, thanks that might work. Russ - Not an option, as I'm not the one sending the email. Thanks though. Rick ~| Order the Adobe Coldfusion Anthology now!

Re: Adding Salt and Password Hash to existing acocunts

2013-03-11 Thread Torrent Girl
Password expirations would definitely be the way I would have gone with this. If I didn't have that option id probably just hash them all with a single update statement in SQL Server rather than involving CF at all. update userTable set passwordColumn =

RE: ColdFusion 10 - Web Service Proxy User Domain

2013-03-11 Thread Bill Franklin
So does that still work for Active Directory domains? e.g. ad/username = username@ad I ask because it isn't working either. Best regards, Bill Franklin Bayer CropScience LP Kansas City, MO, Tel: +1 816 242 2148 Fax: E-mail: bill.frank...@bayer.com Please visit our anniversary

Re: Adding Salt and Password Hash to existing acocunts

2013-03-11 Thread Bobby
In the example it was a hardcoded string for the salt. 'mySalt'. you'd just replace that with whatever you intend to use. I haven't used SHA512 this way. I only did it the way I did so there was an equivalent method in CF to generate the same hash. You'd have to play around with generating

RE: ColdFusion 10 - Web Service Proxy User Domain

2013-03-11 Thread Bill Franklin
Just to clarify, if I use the user@ad syntax in the cfinvoke call, it works fine too...but if I set the same way up in the CF Administrator, it doesn't Best regards, Bill Franklin Ext: Midwest Consulting Group, Inc. Bayer CropScience LP Kansas City, MO, Tel: +1 816 242 2148 Fax:

Re: Adding Salt and Password Hash to existing acocunts

2013-03-11 Thread Eric Cobb
I've been playing around lately with hashing via both SQL Server 2008 and CF. The following should give you the same results in both: cfset hashpwd = hash(pwd uuid,SHA-1 ) SET @pwdHash = CONVERT(VARCHAR(40),HashBytes('SHA1', @pwd + @UUID),2) My understanding is, SQL Server 2012 is the only

PDF Issue

2013-03-11 Thread Robert Harrison
I'm using CFDOCUMENT to create a PDF for download. I have a style sheet built into the page that sets the font at XX pts. It works perfectly, except when the content contains an image that's large than the page width. The image does resize to fit on the page, but it also shrink everything

RE: PDF Issue

2013-03-11 Thread Robert Harrison
CFDOCUMENT is using my style sheet, but it ignores the max-width property on images. If I were to guess I'd say it's rendering the PDF and expanding the page to the width of the widest image (with the correct fonts), then converting it to a PDF image, then shrinking the entire page (include

RE: PDF Issue

2013-03-11 Thread DURETTE, STEVEN J
Pre-shrink the image to fit the page? -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Monday, March 11, 2013 1:02 PM To: cf-talk Subject: RE: PDF Issue CFDOCUMENT is using my style sheet, but it ignores the max-width property on images. If I were

RE: PDF Issue

2013-03-11 Thread Brian Thornton
Agreed. Or use pdfutils to edit it via a com object. On Mar 11, 2013 1:04 PM, DURETTE, STEVEN J sd1...@att.com wrote: Pre-shrink the image to fit the page? -Original Message- From: Robert Harrison [mailto:rob...@austin-williams.com] Sent: Monday, March 11, 2013 1:02 PM To: cf-talk

Re: 32 vs 64 bit CF and DSNs

2013-03-11 Thread Ben Conner
Tried that and it was still an issue; Couldn't see any dsn's defined through the odbcad32 applet, and when I tried to point to it via a jdbc entry, the only databases listed in the dropdown list were Dbase x varieties. I finally pulled the plug on the 64 but and installed the 32 bit CF