Re: How to decode e-mail subject ?

2011-11-22 Thread Abid Islam
Hi Paul, I am working in delphi 7, and I am done with utf-8?B? decoding, now i need to decode utf-8?Q? Please provide me the code for decoder in Delphi. thanks in advance Actually, it isn't Outlook crap it is standards compliant RFC Quoted-printable content and the utf-8 info is telling you

RE: How to decode e-mail subject ?

2009-04-14 Thread WebSite CFTalk
Subject: Re: How to decode e-mail subject ? WebSite CFTalk wrote: But still, how do I convert it into something readable ? cfscript y='W1ZpZGVyZXNlbmR0IGZyYSBXUyBTdXBwb3J0XSBQYXlFeCDDuG5za2VyIGRl'; x=toString(toBinary(y)); writeOutput(x); /cfscript you should get something like: [Videresendt fra

RE: How to decode e-mail subject ?

2009-04-08 Thread WebSite CFTalk
Thank you Paul, That gave me something to work on. Helge -Original Message- From: Paul Vernon [mailto:paul.ver...@web-architect.co.uk] Sent: 8. april 2009 12:54 To: cf-talk Subject: RE: How to decode e-mail subject ? This:B

Re: How to decode e-mail subject ?

2009-04-07 Thread Alan Rother
This:B?W1ZpZGVyZXNlbmR0IGZyYSBXUyBTdXBwb3J0XSBQYXlFeCDDuG5za2VyIGRl?= =?utf-8?B?ZyBnb2QgcMOlc2tl?= Is not UTF8 encoding, this is some sort of Outlook crap UTF-8 Encoding is not an encryption schema, it's a file formatting encoding. It usually renders exactly as plain text. =] On Tue, Apr 7,

RE: How to decode e-mail subject ?

2009-04-07 Thread WebSite CFTalk
Alright, ok :) But still, how do I convert it into something readable ? Helge :) -Original Message- From: Alan Rother [mailto:alan.rot...@gmail.com] Sent: 7. April 2009 20:46 To: cf-talk Subject: Re: How to decode e-mail subject ? This:B

Re: How to decode e-mail subject ?

2009-04-07 Thread Paul Hastings
Alan Rother wrote: This:B?W1ZpZGVyZXNlbmR0IGZyYSBXUyBTdXBwb3J0XSBQYXlFeCDDuG5za2VyIGRl?= =?utf-8?B?ZyBnb2QgcMOlc2tl?= Is not UTF8 encoding, this is some sort of Outlook crap no, it's not outlook crap. that's MIME encoding: =?charset?encoding?encoded text?= so that subject text is in

Re: How to decode e-mail subject ?

2009-04-07 Thread Paul Hastings
WebSite CFTalk wrote: But still, how do I convert it into something readable ? cfscript y='W1ZpZGVyZXNlbmR0IGZyYSBXUyBTdXBwb3J0XSBQYXlFeCDDuG5za2VyIGRl'; x=toString(toBinary(y)); writeOutput(x); /cfscript you should get something like: [Videresendt fra WS Support] PayEx ønsker de i'll leave

RE: How to decode e-mail subject ?

2009-04-07 Thread Paul Vernon
This:B?W1ZpZGVyZXNlbmR0IGZyYSBXUyBTdXBwb3J0XSBQYXlFeCDDuG5za2VyIGRl?= =?utf-8?B?ZyBnb2QgcMOlc2tl?= Is not UTF8 encoding, this is some sort of Outlook crap UTF-8 Encoding is not an encryption schema, it's a file formatting encoding. It usually renders exactly as plain text. =]

RE: How to decode e-mail subject ?

2009-04-07 Thread Paul Vernon
This:B?W1ZpZGVyZXNlbmR0IGZyYSBXUyBTdXBwb3J0XSBQYXlFeCDDuG5za2VyIGRl?= =?utf-8?B?ZyBnb2QgcMOlc2tl?= I missed something... It's not quoted printable, it's binary encoded. Q for quoted-printable and B for binary. You need to look for =?B? Or =?Q? At the beginning of the string. If its =?B?