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!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:354921
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFPOP and multipart bounce messages

2013-03-08 Thread Rick Root

Hi,

I'm trying to figure out a way to have coldfusion handle bounce emails from
a certain system that produces bounce messages in multipart format.

Unfortunately, Coldfusion CFPOP seems to only get the multipart sections
with text/plain (textBody) and text/html (htmlBody), and some of these
other mime parts that are not file attachments are ignored.

For the most part CFPOP works great, it saves my attachments to a folder
for me, populates the text and html pieces... but somehow I need to get the
other mime parts - or the raw message.

Anyone got any ideas for me?

-- 
*The beatings will continue until morale improves.*


~|
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:354904
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFPOP and multipart bounce messages

2013-03-08 Thread Russ Michaels

You might want to consider using a.system like sendgrid.net which makes
this stuff a lot easier. They have an api for sending email insyead of
using cfmail/smtp, so far easier to track failed delivery, and they track
bounces for you too.

Regards
Russ Michaels
www.michaels.me.uk
www.cfmldeveloper.com - Free CFML hosting for developers
www.cfsearch.com - CF search engine
On Mar 8, 2013 7:25 PM, Rick Root rick.r...@gmail.com wrote:


 Hi,

 I'm trying to figure out a way to have coldfusion handle bounce emails from
 a certain system that produces bounce messages in multipart format.

 Unfortunately, Coldfusion CFPOP seems to only get the multipart sections
 with text/plain (textBody) and text/html (htmlBody), and some of these
 other mime parts that are not file attachments are ignored.

 For the most part CFPOP works great, it saves my attachments to a folder
 for me, populates the text and html pieces... but somehow I need to get the
 other mime parts - or the raw message.

 Anyone got any ideas for me?

 --
 *The beatings will continue until morale improves.*


 

~|
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:354905
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFPOP and multipart bounce messages

2013-03-08 Thread Paul Vernon

 Anyone got any ideas for me?

http://popcfc.riaforge.org

Check out the functions with RAW in their names, it bypasses CFPOP in those
functions and should handle bounce messages for you.

Paul




~|
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:354908
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Having a problem with cfpop - UTF-7

2012-04-18 Thread Edward Chanter

Thanks for your help Paul, I tested your script and utf-7 doesn't appear in
the list so I'm assuming that the new charset isn't being picked up. It's
strange though because there is another file in the same folder called
charsets.jar which is native to CF so the folder must be correct. I've
restarted the server twice already with no luck. I tried but failed to
locate the other folder you mentioned so I'm a bit stuck on this one. I
guess I will have to figure out a manual way to remove the offending
messages. 

Does anyone know if this utf-7 thing is still an issue in CF10? If it is
then imo CFPOP should come with a big warning in the Adobe docs:
THIS TAG IS NOT FIT FOR PURPOSE

 -Original Message-
 From: Paul Hastings [mailto:p...@sustainablegis.com]
 Sent: 16 April 2012 13:42
 To: cf-talk
 Subject: Re: Having a problem with cfpop - UTF-7
 
 
 On 4/16/2012 5:18 PM, Edward Chanter wrote:
  1. jcharset
  http://cfg11n.blogspot.co.uk/2005/06/utf-7.html
 
  The jcharset file is stored in /cfroot/runtime/jre/lib and I checked
  the
 
 should work anywhere on cf's classpath (after a server service restart)
but
 vaguely recall some classpath issues with later JVM versions. might also
try
 jrun4/jre/lib
 
 and to test if cf is picking up that JAR:
 
 cfscript
 charSetObj=createObject(java,java.nio.charset.Charset);
 availableCharsets=charSetObj.availableCharsets();
 charsetInfo=structNew();
 for (charset in availableCharsets) {
   thisCharSet=charSetObj.forname(charset);
   t=structNew();
   t.displayName=thisCharset.displayname();

t.aliases=reReplace(thischarSet.aliases().toString(),\[|\],,ALL);
   t.isIANA=thisCharSet.isRegistered();
   t.canEncode=thischarSet.canEncode();
   structInsert(charsetInfo,thisCharset.displayname(),t);
 }
 /cfscript
 
 cfdump var=#charsetInfo#
 
 
 ~~~
 ~~|
 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:350709
 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
 Unsubscribe: http://www.houseoffusion.com/groups/cf-
 talk/unsubscribe.cfm


~|
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:350773
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Having a problem with cfpop - UTF-7

2012-04-16 Thread Edward Chanter

This is kind of a re-post as I'm seeing other cf-talk messages in the
archive relating to this issue but I'm a bit stuck so thought I'd ask
anyway.

I've built a bounce manager using the standard catch-all email domain method
and it works great. Except that one of the mail servers returning a message
has done so in UTF-7 format which is, of course, generating a CF error when
I run CFPOP against the bounce mail account.

Having googled the problem and seen 2 solutions:

1. jcharset 
http://cfg11n.blogspot.co.uk/2005/06/utf-7.html

2. cfx_pop3
http://store.newmediadevelopment.net/cfx_tag.cfm?ProductID=3

I've tried both and neither has worked.

I'm running CF 8.01 on linux which is why I think the cfx_pop3 tag failed,
that's a DLL which is windows specific afaik. When I try to run the CFX_pop
tag the server is unable to load the library.

The jcharset file is stored in /cfroot/runtime/jre/lib and I checked the
permissions but upon restarting the server it doesn't seem to make any
difference at all and the bounce manager script still bombs out.

I was just wondering if anyone has come up with any other workarounds for
this problem? 

Thanks in advance for any assistance ;-)

best wishes,

  -= Ed


Edward Chanter
Technical Innovations Manager
Collaborative Connections Ltd.

http://www.cc.uk.com/
e...@cc.uk.com
Landline: 01273 832221
Mobile: 07866 365282
YIM!: jumperb
MSN: e...@cc.uk.com
You can find me on FaceBook too!
 




~|
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:350708
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Having a problem with cfpop - UTF-7

2012-04-16 Thread Paul Hastings

On 4/16/2012 5:18 PM, Edward Chanter wrote:
 1. jcharset
 http://cfg11n.blogspot.co.uk/2005/06/utf-7.html

 The jcharset file is stored in /cfroot/runtime/jre/lib and I checked the

should work anywhere on cf's classpath (after a server service restart) but 
vaguely recall some classpath issues with later JVM versions. might also try 
jrun4/jre/lib

and to test if cf is picking up that JAR:

cfscript
charSetObj=createObject(java,java.nio.charset.Charset);
availableCharsets=charSetObj.availableCharsets();
charsetInfo=structNew();
for (charset in availableCharsets) {
thisCharSet=charSetObj.forname(charset);
t=structNew();
t.displayName=thisCharset.displayname();
t.aliases=reReplace(thischarSet.aliases().toString(),\[|\],,ALL);
t.isIANA=thisCharSet.isRegistered();
t.canEncode=thischarSet.canEncode();
structInsert(charsetInfo,thisCharset.displayname(),t);
}   
/cfscript

cfdump var=#charsetInfo#


~|
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:350709
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFPOP

2011-09-19 Thread Jenny Gavin-Wear

I'm using CFPOP to import mail into an online archive.

I'm just going to use the textbody to display the messages in the browser.

My question is, what is the ideal way of formatting the message, replacing
all the LF's, etc with br's.

I'm thinking someone must have done this before, maybe I don't need to
reinvent the wheel 

Many thanks in advance!


Jenny Gavin-Wear
Fast Track Online
Tel: 01262 602013
http://www.fasttrackonline.co.uk/



~|
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:347523
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFPOP

2011-09-19 Thread Michael Grant

pre#messageBody#/pre



On Mon, Sep 19, 2011 at 12:34 PM, Jenny Gavin-Wear 
jenn...@fasttrackonline.co.uk wrote:


 I'm using CFPOP to import mail into an online archive.

 I'm just going to use the textbody to display the messages in the browser.

 My question is, what is the ideal way of formatting the message, replacing
 all the LF's, etc with br's.

 I'm thinking someone must have done this before, maybe I don't need to
 reinvent the wheel 

 Many thanks in advance!


 Jenny Gavin-Wear
 Fast Track Online
 Tel: 01262 602013
 http://www.fasttrackonline.co.uk/



 

~|
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:347524
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFPOP

2011-09-19 Thread Bobby Hartsfield

pre tags would be easiest. If you don't want pre tags then something like
#replace(content, char(13), 'br /', 'all')#


.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com




-Original Message-
From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] 
Sent: Monday, September 19, 2011 12:34 PM
To: cf-talk
Subject: CFPOP


I'm using CFPOP to import mail into an online archive.

I'm just going to use the textbody to display the messages in the browser.

My question is, what is the ideal way of formatting the message, replacing
all the LF's, etc with br's.

I'm thinking someone must have done this before, maybe I don't need to
reinvent the wheel 

Many thanks in advance!


Jenny Gavin-Wear
Fast Track Online
Tel: 01262 602013
http://www.fasttrackonline.co.uk/





~|
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:347527
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFPOP

2011-09-19 Thread Billy Cravens

#paragraphFormat(messageBody)# does the same thing.

Billy Cravens
bdcrav...@gmail.com



On Sep 19, 2011, at 11:41 AM, Michael Grant wrote:

 
 pre#messageBody#/pre
 
 
 
 On Mon, Sep 19, 2011 at 12:34 PM, Jenny Gavin-Wear 
 jenn...@fasttrackonline.co.uk wrote:
 
 
 I'm using CFPOP to import mail into an online archive.
 
 I'm just going to use the textbody to display the messages in the browser.
 
 My question is, what is the ideal way of formatting the message, replacing
 all the LF's, etc with br's.
 
 I'm thinking someone must have done this before, maybe I don't need to
 reinvent the wheel 
 
 Many thanks in advance!
 
 
 Jenny Gavin-Wear
 Fast Track Online
 Tel: 01262 602013
 http://www.fasttrackonline.co.uk/
 
 
 
 
 
 

~|
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:347528
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFPOP

2011-09-19 Thread Bobby Hartsfield

Not really but probably good enough for most people's preference.


.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com





-Original Message-
From: Billy Cravens [mailto:bdcrav...@gmail.com] 
Sent: Monday, September 19, 2011 4:57 PM
To: cf-talk
Subject: Re: CFPOP


#paragraphFormat(messageBody)# does the same thing.

Billy Cravens
bdcrav...@gmail.com



On Sep 19, 2011, at 11:41 AM, Michael Grant wrote:

 
 pre#messageBody#/pre
 
 
 
 On Mon, Sep 19, 2011 at 12:34 PM, Jenny Gavin-Wear 
 jenn...@fasttrackonline.co.uk wrote:
 
 
 I'm using CFPOP to import mail into an online archive.
 
 I'm just going to use the textbody to display the messages in the
browser.
 
 My question is, what is the ideal way of formatting the message,
replacing
 all the LF's, etc with br's.
 
 I'm thinking someone must have done this before, maybe I don't need to
 reinvent the wheel 
 
 Many thanks in advance!
 
 
 Jenny Gavin-Wear
 Fast Track Online
 Tel: 01262 602013
 http://www.fasttrackonline.co.uk/
 
 
 
 
 
 



~|
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:347529
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFPOP

2011-09-19 Thread Jenny Gavin-Wear

Thanks for all the replies, but not quite there yet.

I copied/pasted a mail from this list into Dreamweaver, and it looks about
as perfect as could be, that's what I am aiming for.



Jenny Gavin-Wear
Fast Track Online
Tel: 01262 602013
http://www.fasttrackonline.co.uk/


-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com]
Sent: 19 September 2011 22:17
To: cf-talk
Subject: RE: CFPOP



Not really but probably good enough for most people's preference.


.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com





-Original Message-
From: Billy Cravens [mailto:bdcrav...@gmail.com]
Sent: Monday, September 19, 2011 4:57 PM
To: cf-talk
Subject: Re: CFPOP


#paragraphFormat(messageBody)# does the same thing.

Billy Cravens
bdcrav...@gmail.com



On Sep 19, 2011, at 11:41 AM, Michael Grant wrote:


 pre#messageBody#/pre



 On Mon, Sep 19, 2011 at 12:34 PM, Jenny Gavin-Wear 
 jenn...@fasttrackonline.co.uk wrote:


 I'm using CFPOP to import mail into an online archive.

 I'm just going to use the textbody to display the messages in the
browser.

 My question is, what is the ideal way of formatting the message,
replacing
 all the LF's, etc with br's.

 I'm thinking someone must have done this before, maybe I don't need to
 reinvent the wheel 

 Many thanks in advance!


 Jenny Gavin-Wear
 Fast Track Online
 Tel: 01262 602013
 http://www.fasttrackonline.co.uk/











~|
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:347530
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFPOP

2011-09-19 Thread Bobby Hartsfield

unless you tell us what the difference is with what you see in DW and what
you see in a browser (and the code you are using to display it), I dont
think there is much else to tell you to try.


.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com




-Original Message-
From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] 
Sent: Monday, September 19, 2011 5:30 PM
To: cf-talk
Subject: RE: CFPOP


Thanks for all the replies, but not quite there yet.

I copied/pasted a mail from this list into Dreamweaver, and it looks about
as perfect as could be, that's what I am aiming for.



Jenny Gavin-Wear
Fast Track Online
Tel: 01262 602013
http://www.fasttrackonline.co.uk/


-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com]
Sent: 19 September 2011 22:17
To: cf-talk
Subject: RE: CFPOP



Not really but probably good enough for most people's preference.


.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com





-Original Message-
From: Billy Cravens [mailto:bdcrav...@gmail.com]
Sent: Monday, September 19, 2011 4:57 PM
To: cf-talk
Subject: Re: CFPOP


#paragraphFormat(messageBody)# does the same thing.

Billy Cravens
bdcrav...@gmail.com



On Sep 19, 2011, at 11:41 AM, Michael Grant wrote:


 pre#messageBody#/pre



 On Mon, Sep 19, 2011 at 12:34 PM, Jenny Gavin-Wear 
 jenn...@fasttrackonline.co.uk wrote:


 I'm using CFPOP to import mail into an online archive.

 I'm just going to use the textbody to display the messages in the
browser.

 My question is, what is the ideal way of formatting the message,
replacing
 all the LF's, etc with br's.

 I'm thinking someone must have done this before, maybe I don't need to
 reinvent the wheel 

 Many thanks in advance!


 Jenny Gavin-Wear
 Fast Track Online
 Tel: 01262 602013
 http://www.fasttrackonline.co.uk/













~|
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:347531
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Is UnsupportedEncodingException: utf-7 cfpop issue fixed in CF9?

2010-09-10 Thread Victor Moore

Thanks
Victor

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


CFPOP attachments saved in subdirectories

2010-06-21 Thread Jonathan Lane

Hi all,

I've got an app that receives weekly analytics reports from Google Analytics 
and posts them to a site.  The app is processing a couple dozen of these 
reports per week and the vast majority of them work just fine, but every week I 
have trouble with two.

The reports are sent from Google Analytics as PDF attachments to a mail 
message.  These messages are retrieved using CFPOP, and the attachments are 
saved to a temporary directory on my server.  The attachments are then uploaded 
to a site (and some other stuff gets added to a database etc...).  Once the 
PDFs are uploaded to the site, the attachments are deleted from my server.  
Every week, the PDF attachments for two of these reports end up saved in 
sub-directories and then my attempt to delete the original attachment fails 
(CFFILE action=delete).

Anyone have any idea why CFPOP would be creating and saving these attachments 
into subdirectories?  They're always named after the file -- so for example, if 
the report is called 
Analytics_www.example.com_20100614-20100620_(Weekly_Analytics_Report).pdf, the 
directory it's saved into is called Analytics_www.example.com/.  

It's CF 8 running on an Ubuntu install. 

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


cfpop and GMail

2010-02-16 Thread John M Bliss

Has anyone noticed that, within the past month or so, behavior with cfpop
and GMail has changed?  It used to be that, if you had GMail set to Enable
POP for all mail (even mail that's already been downloaded), every call to
cfpop action=getall would return *all* messages in the In box.  Now, it
seems, calls to cfpop action=getall only return *new* messages in the In
box.  (You can fake it by re-selecting Enable POP for all mail which
will, one time only, make it so that cfpop action=getall fetches all
messages in the In box.)  Anyone else seeing this?  Anyone know of a
workaround?

-- 
John Bliss
IT Professional
@jbliss (t) / http://www.brandiandjohn.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:330771
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: cfpop and GMail

2010-02-16 Thread Paul Vernon

http://mail.google.com/support/bin/answer.py?answer=86378

Under Other Issues...

How do I download mail to multiple POP clients?

To access your messages with multiple POP clients, use recent mode in every
client to make sure that all messages are made available, rather than only
to the first client to access new mail. Recent mode fetches the last 30 days
of mail, regardless of whether it's been sent to another POP client already.

To enable Recent mode, replace 'usern...@gmail.com' in the Username field of
your POP client settings with 'recent:usern...@gmail.com' and ensure that
the Leave messages on server option in your POP client is enabled.

Paul


 -Original Message-
 From: John M Bliss [mailto:bliss.j...@gmail.com]
 Sent: Tuesday, February 16, 2010 3:02 PM
 To: cf-talk
 Subject: cfpop and GMail
 
 
 Has anyone noticed that, within the past month or so, behavior with
 cfpop
 and GMail has changed?  It used to be that, if you had GMail set to
 Enable
 POP for all mail (even mail that's already been downloaded), every
 call to
 cfpop action=getall would return *all* messages in the In box.
 Now, it
 seems, calls to cfpop action=getall only return *new* messages in the
 In
 box.  (You can fake it by re-selecting Enable POP for all mail
 which
 will, one time only, make it so that cfpop action=getall fetches all
 messages in the In box.)  Anyone else seeing this?  Anyone know of a
 workaround?
 
 --
 John Bliss
 IT Professional
 @jbliss (t) / http://www.brandiandjohn.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:330772
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfpop and GMail

2010-02-16 Thread John M Bliss

 To enable Recent mode, replace 'usern...@gmail.com' in the Username field
of your POP client settings with
'recent:usern...@gmail.comrecent%3ausern...@gmail.com
'

Solved!  Paul, the next time you're in Houston, I owe you a beer!  :-)


On Tue, Feb 16, 2010 at 9:08 AM, Paul Vernon 
paul.ver...@web-architect.co.uk wrote:


 http://mail.google.com/support/bin/answer.py?answer=86378

 Under Other Issues...

 How do I download mail to multiple POP clients?

 To access your messages with multiple POP clients, use recent mode in every
 client to make sure that all messages are made available, rather than only
 to the first client to access new mail. Recent mode fetches the last 30
 days
 of mail, regardless of whether it's been sent to another POP client
 already.

 To enable Recent mode, replace 'usern...@gmail.com' in the Username field
 of
 your POP client settings with 
 'recent:usern...@gmail.comrecent%3ausern...@gmail.com'
 and ensure that
 the Leave messages on server option in your POP client is enabled.

 Paul


  -Original Message-
  From: John M Bliss [mailto:bliss.j...@gmail.com]
  Sent: Tuesday, February 16, 2010 3:02 PM
  To: cf-talk
  Subject: cfpop and GMail
 
 
  Has anyone noticed that, within the past month or so, behavior with
  cfpop
  and GMail has changed?  It used to be that, if you had GMail set to
  Enable
  POP for all mail (even mail that's already been downloaded), every
  call to
  cfpop action=getall would return *all* messages in the In box.
  Now, it
  seems, calls to cfpop action=getall only return *new* messages in the
  In
  box.  (You can fake it by re-selecting Enable POP for all mail
  which
  will, one time only, make it so that cfpop action=getall fetches all
  messages in the In box.)  Anyone else seeing this?  Anyone know of a
  workaround?
 
  --
  John Bliss
  IT Professional
  @jbliss (t) / http://www.brandiandjohn.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:330774
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: cfpop and GMail

2010-02-16 Thread Paul Vernon

It's yet another example of the flawed POP implementation that Google has
invented... It bears no resemblance to the POP RFC documentation
whatsoever!

Paul

 -Original Message-
 From: John M Bliss [mailto:bliss.j...@gmail.com]
 Sent: Tuesday, February 16, 2010 3:14 PM
 To: cf-talk
 Subject: Re: cfpop and GMail
 
 
  To enable Recent mode, replace 'usern...@gmail.com' in the Username
 field
 of your POP client settings with
 'recent:usern...@gmail.comrecent%3ausern...@gmail.com
 '
 
 Solved!  Paul, the next time you're in Houston, I owe you a beer!  :-)
 
 
 On Tue, Feb 16, 2010 at 9:08 AM, Paul Vernon 
 paul.ver...@web-architect.co.uk wrote:
 
 
  http://mail.google.com/support/bin/answer.py?answer=86378
 
  Under Other Issues...
 
  How do I download mail to multiple POP clients?
 
  To access your messages with multiple POP clients, use recent mode in
 every
  client to make sure that all messages are made available, rather than
 only
  to the first client to access new mail. Recent mode fetches the last
 30
  days
  of mail, regardless of whether it's been sent to another POP client
  already.
 
  To enable Recent mode, replace 'usern...@gmail.com' in the Username
 field
  of
  your POP client settings with
 'recent:usern...@gmail.comrecent%3ausern...@gmail.com'
  and ensure that
  the Leave messages on server option in your POP client is enabled.
 
  Paul
 
 
   -Original Message-
   From: John M Bliss [mailto:bliss.j...@gmail.com]
   Sent: Tuesday, February 16, 2010 3:02 PM
   To: cf-talk
   Subject: cfpop and GMail
  
  
   Has anyone noticed that, within the past month or so, behavior with
   cfpop
   and GMail has changed?  It used to be that, if you had GMail set to
   Enable
   POP for all mail (even mail that's already been downloaded), every
   call to
   cfpop action=getall would return *all* messages in the In box.
   Now, it
   seems, calls to cfpop action=getall only return *new* messages in
 the
   In
   box.  (You can fake it by re-selecting Enable POP for all mail
   which
   will, one time only, make it so that cfpop action=getall fetches
 all
   messages in the In box.)  Anyone else seeing this?  Anyone know
 of a
   workaround?
  
   --
   John Bliss
   IT Professional
   @jbliss (t) / http://www.brandiandjohn.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:330777
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFPop with specific folders?

2010-02-07 Thread Aaron Neff

Hi Qing Xia,

If you wish to use cfimap w/ Gmail, here are a couple of things you may want to 
watch out for:

- When polling Gmail, the item counts returned by cfimap may not match the same 
in Gmail (Gmail bug).

- When retrieving emails from Gmail, an email labeled x times, may be 
downloaded x times (Gmail quirk).

However, you should not see these issues if you use cfimap to connect to an 
IMAP-compliant mail server (instead of Gmail).

Thanks!,
-Aaron Neff

say I want to download all email messages in
my CFTalk folder off my Gmail account...how would I go about doing that? 

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


Re: CFPop with specific folders?

2010-02-07 Thread Qing Xia

Well, well, this just proves my theory--ColdFusion has a tag for
EVERYTHING! [?]

I've got CF8 running on my personal development machine because I am
preparing for the certificate exam.  I'm going to install CF9 instead and
try this out!

Thanks!! You guys are the best!

On Sun, Feb 7, 2010 at 4:48 AM, Aaron Neff w...@itisdesign.com wrote:


 Hi Qing Xia,

 If you wish to use cfimap w/ Gmail, here are a couple of things you may
 want to watch out for:

 - When polling Gmail, the item counts returned by cfimap may not match the
 same in Gmail (Gmail bug).

 - When retrieving emails from Gmail, an email labeled x times, may be
 downloaded x times (Gmail quirk).

 However, you should not see these issues if you use cfimap to connect to an
 IMAP-compliant mail server (instead of Gmail).

 Thanks!,
 -Aaron Neff

 say I want to download all email messages in
 my CFTalk folder off my Gmail account...how would I go about doing that?

 

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


Re: CFPop with specific folders?

2010-02-07 Thread Leigh

Good tips about gmail. Thanks Aaron!



  

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


Re: CFPop with specific folders?

2010-02-07 Thread Aaron Neff

Good tips about gmail. Thanks Aaron!

You're very welcome Leigh, and, likewise, thanks very much for the tip (the 
other day in the Adobe forums) about the undocumented cfpdfform 'name' 
attribute! I meant to follow-up on that thread w/ some more info, but lost 
track. I will tho.. soon!

Hope the cfimap tag works for you Qing Xia!

Take care,
-Aaron 

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


Re: CFPop with specific folders?

2010-02-07 Thread Qing Xia

- When polling Gmail, the item counts returned by cfimap may not match the
same in Gmail (Gmail bug).
You are right on this one, Aaron.  Gmail groups messages by conversation,
which is really just the email subject lines. For example, I've got this
Gmail folder that has 8 conversations but 15 individual email messages.
However, when I used CFImap to download all messages in that folder, I got
only 10! Upon closer examination, I saw that this is because 5 of the email
messages are from me myself but they got grouped in the conversations
because they share the subject lines with those who legitimately belong in
this folder.

I guess if you think about this, it sort of makes sense since the email
messages sent by me are really in the sent folder and they only appear in
the conversation groups for the sake of completeness. But this grouping
really does create confusion.

- When retrieving emails from Gmail, an email labeled x times, may be
downloaded x times (Gmail quirk).
Yep, you are right on this, too. I guess this is another hazard of the Gmail
system of virtual folders/labels, where a message can have multiple labels.
 Not necessarily a bad thing but definitely something to watch out for.

However, you should not see these issues if you use cfimap to connect to an
IMAP-compliant mail server (instead of Gmail).
Yep, Yahoo has no problem with these issues since they don't allow 1-to-many
relationship between email messages and folders.

BTW, it is disappointing that CFImap does not allow lists in the folder
attribute. You've got to use the cfimap action=GetHeaderOnly... tag
twice to get two folders. Maybe something to add to the wish list for CF10!
[?]

Great ideas Aaron, thanks for sharing! Thanks Leigh for the code example,
that really helped.


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


Re: CFPop with specific folders?

2010-02-07 Thread Leigh

 about the undocumented cfpdfform 'name' attribute!

Funny, I did not even realize it was _not_ documented for cfpdfform until you 
said that. At least that explains why I did not suggest it originally. I was 
hoping it might just be an omission in the documentation. But I cannot tell 
much from the error messages. They are giving mixed signals ;-)

1) Required attributes: 'action,source'. Optional attributes: 
'destination,name,overwrite,overwritedata,xmldata'.

2) Attribute validation error for tag CFPDFFORM.  
It does not allow the attribute(s) NAME. The valid attribute(s) are 
ACTION,FDFDATA,OVERWRITE,RESULT,SOURCE,XMLDATA.  

(Make up your mind folks..)

-Leigh


  

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


CFPop with specific folders?

2010-02-06 Thread Qing Xia

Hello folks,

Does anyone know of a way to get/delete emails in a *specific* folder, of a
POP email account? It seems that this cannot be done alone (or at all) with
the cfpop tag. For example, say I want to download all email messages in
my CFTalk folder off my Gmail account...how would I go about doing that?

I know this can be done to emails sitting on an exchange server through the
CFExchangeEmail tag but I can't think of a way to do that with a POP email
account.

Any thought is welcome and most appreciated!

Thanks,

Qing Xia


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


RE: CFPop with specific folders?

2010-02-06 Thread Justin Scott

 Does anyone know of a way to get/delete emails in a
 *specific* folder, of a POP email account?

If memory serves, POP has no concept of folders.  When you connect via POP,
the server gives you access to the main inbox, but that is all.  Any access
to folders would have to be through another protocol such as IMAP, or as you
mentioned, the Exchange-specific tags.  Google does allow IMAP connections,
but I have never tried to access Gmail via IMAP from ColdFusion.  I would
assume that it would work though.


-Justin Scott



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


RE: CFPop with specific folders?

2010-02-06 Thread Leigh

 If memory serves, POP has no concept of folders.  

Yes, that is my recollection as well. 

 but I have never tried to access Gmail via IMAP from
 ColdFusion.  I would assume that it would work though.

Neither had I until five minutes ago ;) But I just tried it with cfimap it 
worked fine. 

http://mail.google.com/support/bin/answer.py?hl=enanswer=75725

form  method=post
user input type=text name=user value=myusern...@gmail.com
password input type=password name=pw
folder input type=text name=folder value=SomeFolderName
input type=submit
/form 
cfif structKeyExists(FORM, pw)
  cfimap 
action=open 
server = imap.gmail.com 
username = #form.user# 
secure=yes 
port=993 
password=#form.pw# 
connection=gConnect 

cfimap 
action=GetHeaderOnly 
folder=#form.folder#
connection=gConnect 
name=qMessages 

cfdump var=#qMessages# 
cfimap 
action=close 
connection=gConnect 
/cfif 


-Leigh




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


Re: Retrieving UID values from a POP mailbox (quickly) WAS: cfpop - do not want to retrieve duplicate emails

2009-11-07 Thread Leigh

 If anyone would like to shed some light on why I would see
 that error I'd be most grateful :-).
 
 Paul

It sounds like a combination of things. Just one of those issues you run into 
when communicating between strong (java) and weakly typed (CF) languages.  
Java's setProperty(string key, string val) method expects two strings .. 
only. If you try and pass in the timeout value as anything other than a 
string, CF will probably tell you it cannot find the method .. because it 
cannot. That error is often another way of saying, Hey, I may be able to find 
_some_ setProperty() method, just not one with a signature that matches the 
input you are giving me.

Depending on what do with the timeout value, sometimes it is a string

cfset arguments.timeout = 3 /
arguments.timeout type = cfdump 
var=#arguments.timeout.getClass().getName()# br /

 .. and sometimes it is a java.lang.Double

cfset x = arguments.timeout * 1000 /
x type = cfdump var=#x.getClass().getName()# br /

So my guess is, the the multiplication implicitly converted the value to 
another data type, and CF could no longer call the method because the 
parameters did not match the java signature:  setProperty(string, string)

HTH
-Leigh





  


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


Re: SOLVED: Retrieving UID values from a POP mailbox (quickly) WAS: cfpop - do not want to retrieve duplicate emails

2009-11-07 Thread Leigh

 I solved it... You won't believe it though!
 
 !--- cast the timeout value to a string no-less!!!
 ---

Yes, it *must* be string because that is what java expects:
http://java.sun.com/javase/6/docs/api/java/lang/System.html#setProperty%28java.lang.String,%20java.lang.String%29


 If I place the JavaCast in the setProperty function, it
 doesn't work either

Paul, are you positive it does not work? It does for me (CF8). Maybe you were 
just casting it to a different type? 

cfset javaProps.setProperty(mail.pop3.connectiontimeout, javacast(string, 
arguments.timeout*1000)) /

-Leigh


  


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


RE: cfpop - do not want to retrieve duplicate emails

2009-11-06 Thread Paul Vernon

 We need to be able to POP emails from a Yahoo! Mail account without
 deleting the emails and without retrieving the same email twice.  If I
 set the action attribute to Delete in the cfpop tag, it deletes the
 email from the Yahoo account.  Is there a way to only pop unique emails
 without deleting them from the mail box?

Keep a copy of the UID's you have downloaded locally, compare against the
UID's on the server and only do a GETALL on the ones you haven't seen before
and then store those UID's too.

This process will get progressively slower as more and more e-mails are left
on the server though.

CFX_POP3 has a GETUIDLIST function which just retrieves the UID's of the
mails on the server and makes the process lightening fast but it only works
on 32-bit CF installations on Windows so it's life is limited now.

Paul




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


cfpop - do not want to retrieve duplicate emails

2009-11-05 Thread Joshua Rowe

Hello,

We need to be able to POP emails from a Yahoo! Mail account without deleting 
the emails and without retrieving the same email twice.  If I set the action 
attribute to Delete in the cfpop tag, it deletes the email from the Yahoo 
account.  Is there a way to only pop unique emails without deleting them from 
the mail box?

Best regards,
Joshua Rowe


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


Multi-part mime messages with cfpop

2009-09-15 Thread Dan Baughman

Hi CF List,

A quick scan seems to reveal that cfpop is unable to parse and
download all mime parts of a multipart encoded email message???

Anyone had to do that before and found something that works really
well in ColdFusion, or I am missing something about CFPOP?

Cheers,
Dan

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


RE: Multi-part mime messages with cfpop

2009-09-15 Thread Paul Vernon

 Anyone had to do that before and found something that works really
 well in ColdFusion, or I am missing something about CFPOP?

If you're on a Windows 32-bit OS you can use CFX_POP3 that I wrote. There is
no 64-bit version but if you are on a 32-bit system it should do the trick.

Paul




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


CFMAIL/CFPOP

2009-07-23 Thread derekf

Greetings

I am creating CFMAIL/CFPOP parameters dynamically based on user login. The idea 
is to be able to specify the pop/smtp server based on values captured against 
the user at capture time and to be used at future logins . 

Can I have standard code for all service providers - I.e for gmail I need SSL 
but maybe for others I don't. I cannot know the rules for every service 
provider. Am I doing the impossible?

Thanks in advance,
Derek

Sent via my BlackBerry from Vodacom - let your email find you!

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


Re: CFMAIL/CFPOP

2009-07-23 Thread denstar

Naw, not impossible.  You'll just need a config screen similar to what
email clients have (host  port mostly, maybe buttons for choosing
standard ports...).

You can have some presets for things like google or yahoo and whatnot,
but basically you'll need the config info per connection.

-- 
You don't stop laughing because you grow old. You grow old because you
stop laughing.
Michael Pritchard

On Thu, Jul 23, 2009 at 7:44 AM, der...@polka.co.za wrote:

 Greetings

 I am creating CFMAIL/CFPOP parameters dynamically based on user login. The 
 idea is to be able to specify the pop/smtp server based on values captured 
 against the user at capture time and to be used at future logins .

 Can I have standard code for all service providers - I.e for gmail I need SSL 
 but maybe for others I don't. I cannot know the rules for every service 
 provider. Am I doing the impossible?

 Thanks in advance,
 Derek

 Sent via my BlackBerry from Vodacom - let your email find you!

 

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


cfpop attachments question

2009-06-15 Thread Victor Moore

Hi,

Does cfpop treat attachments different depending of their extension?
I have this case where an email contains a number of eml attachments.
If view the email in outlook i can see all the attachments listed.
When dumping the cfpop query I have the attachmentfiles listed but the
attachments column is empty.
Of course it works fine with other extensions.

Am I missing something?

Thanks
Victor

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


CFPOP Checker/Uploader best practices

2009-05-29 Thread John Drake

I'm building an app that uses CFPOP to check an email box and puts whatever 
attachments are in the email onto a server and then emails back the sender the 
URL (and a TinyURL of the file as well).

I've added security - there are only a few email addresses that it will grab 
attachments for - otherwise it just deletes the mail.

I realize there are better ways to go about getting files to a server but my 
users are novices and I think it's worth a try.

I've got it working with a Gmail account and my initial tests have gone well.

The server that would be performing this does not have a significant load, and 
only a handful of users would be emailing files (mostly 1-3mb jpegs, 2mg or so 
PDFs) but still I am concerned about how it might affect the performance of the 
box.

It is on a Windows 2000 server w/ CF 6.1 so CFThread is not an option.

If it's chugging away grabbing mail attachments off the Gmail account - are 
other requests to the box slowed to a crawl?

I'm also debating how often the page with the CFPop should be called from the 
Scheduler - maybe 2 or 3 minutes apart?  It's a fine line between giving the 
user the info within a reasonable time period versus taxing the server too much 
because it's constantly checking email.  I would definitely have it stop once 
office hours were over.

If anyone has experience with this sort of thing I've love to hear of 
suggestions, solutions, pitfalls, etc. 

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


Re: cfpop using hotmail

2008-12-02 Thread Javier Buzzi
Bump.

King. 

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


Re: cfpop using hotmail

2008-12-02 Thread Javier Buzzi
Bump.

King. 

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


Re: cfpop using hotmail

2008-12-02 Thread C. Hatton Humphrey
Two things:
1) There's no need to bump a message twice in the span of a minute.
2) If you're getting that error message that means a few things:
 a) the port is correct
 b) CF is communicating correctly with the MSN Live server
 c) From the brief Google searches that I did (Hotmail POP3, MSN
POP3) I found the following:
http://mailcall.spaces.live.com/Blog/cns!CC9301187A51FE33!44348.entry

The most telling thing is this line:
PS - please note that I said Hotmail Plus users and not MSN Premium
users. We are working to offer everyone POP access eventually, but for
now, Hotmail Plus users are the only ones that can do so.

Try accessing the email from Outlook or some other client and see if
you can.  If that works then there's a problem with your code,
otherwise you may be out of luck for a while.

Hatton

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


cfpop using hotmail

2008-12-01 Thread Javier Buzzi
Hi, Im working on a prof of concept using the pop service on hotmail. I've 
found info on Google saying that hotmail give pop access to premium access 
users - i have a one of those accounts. I heard that it does SSL only and cfpop 
does not right off the bat, so i did some digging and found this:

cfset javaSystem = createObject(java, java.lang.System) /
cfset javaSystemProps = javaSystem.getProperties() /
cfset javaSystemProps.setProperty(mail.pop3.socketFactory.class, 
javax.net.ssl.SSLSocketFactory) /

cfset javaSystemProps.setproperty(mail.pop3.port,995) /
cfset javaSystemProps.setProperty(mail.pop3.socketFactory.port, 995) /

Now, the port may be wrong or not but when i finish writing the statement:

cfpop name=test
action=GETHEADERONLY 
username=[EMAIL PROTECTED]
password=**
server=pop3.live.com

cfdump var=#test#

I get a mailbox for =[EMAIL PROTECTED] is not available. Please help, no one 
even mentions hotmail and cfpop online, its as if im the only one thats even 
attempted to do this.

King. 

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


Re: CFPOP and Email gateway

2008-07-28 Thread Varun Dixit
Thanks for the info Dave. It's always good to know of alternate solutions, but, 
I was thinking more on the line of gateway which would continuously listen for 
emails (just like it would do for SMS messages), any thoughts on that? Is it 
possible to listen for emails at all?

Varun,

I forgot to mention that I have my VB app running as a Service on my server.

Dave

Varun,

I had an issue like this and couldn't find a 'pure' ColdFusion solution.  I
ended up building a little VB app that checked the mailbox every 5 seconds
to see if had any mail and then, if it did, it would then execute my CF page
to pull the mail.  Of course, I was checking every 5 seconds, and, as a
result, since it would take longer than 5 seconds for my page to run, I had
the issue of multiple requests trying to process the mail at the same time.
So, I set up a DB variable that would, in effect, 'lock' the process so that
it could only be running once at any given time.  Once the VB app saw there
was mail, it would start firing the CF request (it would shell out to WGET
which would execute the HTTP call to the CF page) every 5 seconds until
there was no mail anymore.  The first request would actually start the
processing and the remaining requests would just abort because the process
was already running.

This has been working well for us for two months now.

I'm sure there are other ways to accomplish this, and maybe even a 'Pure'
ColdFusion solution, but I found the overhead on CFPOP so slow that I
couldn't reliably expect it to check for messages every 5 seconds
successfully without killing my server (sometimes a single CFPOP call would
take more than 5 seconds anyway).

HTH,

Dave

I have a CRM tool which uses CFPOP to pull the email from the mailbox,
parses those email and connects them to an existing open tickets in the CRM
tool for that email address. 
I have a scheduled task which runs every 15 minutes and does the pull,parse
and append. I need to have this task run every 2 minutes but because we have
a lot already going on in that tool it has huge performance issues.

I was thinkin may be, if there is a email gateway or some other method to
continusouly listen the mailbox and as soon as we get email parse it, append
it. 

Please advise if any of you have ever looked into some solutions where the
app can continuously listen for event (email in this case) without having
huge performance impact.

Thanks 

~|
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:309803
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFPOP and Email gateway

2008-07-24 Thread Varun Dixit
I have a CRM tool which uses CFPOP to pull the email from the mailbox, parses 
those email and connects them to an existing open tickets in the CRM tool for 
that email address. 
I have a scheduled task which runs every 15 minutes and does the pull,parse and 
append. I need to have this task run every 2 minutes but because we have a lot 
already going on in that tool it has huge performance issues.

I was thinkin may be, if there is a email gateway or some other method to 
continusouly listen the mailbox and as soon as we get email parse it, append 
it. 

Please advise if any of you have ever looked into some solutions where the app 
can continuously listen for event (email in this case) without having huge 
performance impact.

Thanks 

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


RE: CFPOP and Email gateway

2008-07-24 Thread Dave Phillips
Varun,

I had an issue like this and couldn't find a 'pure' ColdFusion solution.  I
ended up building a little VB app that checked the mailbox every 5 seconds
to see if had any mail and then, if it did, it would then execute my CF page
to pull the mail.  Of course, I was checking every 5 seconds, and, as a
result, since it would take longer than 5 seconds for my page to run, I had
the issue of multiple requests trying to process the mail at the same time.
So, I set up a DB variable that would, in effect, 'lock' the process so that
it could only be running once at any given time.  Once the VB app saw there
was mail, it would start firing the CF request (it would shell out to WGET
which would execute the HTTP call to the CF page) every 5 seconds until
there was no mail anymore.  The first request would actually start the
processing and the remaining requests would just abort because the process
was already running.

This has been working well for us for two months now.

I'm sure there are other ways to accomplish this, and maybe even a 'Pure'
ColdFusion solution, but I found the overhead on CFPOP so slow that I
couldn't reliably expect it to check for messages every 5 seconds
successfully without killing my server (sometimes a single CFPOP call would
take more than 5 seconds anyway).

HTH,

Dave

-Original Message-
From: Varun Dixit [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 24, 2008 3:45 PM
To: CF-Talk
Subject: CFPOP and Email gateway

I have a CRM tool which uses CFPOP to pull the email from the mailbox,
parses those email and connects them to an existing open tickets in the CRM
tool for that email address. 
I have a scheduled task which runs every 15 minutes and does the pull,parse
and append. I need to have this task run every 2 minutes but because we have
a lot already going on in that tool it has huge performance issues.

I was thinkin may be, if there is a email gateway or some other method to
continusouly listen the mailbox and as soon as we get email parse it, append
it. 

Please advise if any of you have ever looked into some solutions where the
app can continuously listen for event (email in this case) without having
huge performance impact.

Thanks 



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


RE: CFPOP and Email gateway

2008-07-24 Thread Dave Phillips
Varun,

I forgot to mention that I have my VB app running as a Service on my server.

Dave

-Original Message-
From: Dave Phillips [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 24, 2008 3:59 PM
To: CF-Talk
Subject: RE: CFPOP and Email gateway

Varun,

I had an issue like this and couldn't find a 'pure' ColdFusion solution.  I
ended up building a little VB app that checked the mailbox every 5 seconds
to see if had any mail and then, if it did, it would then execute my CF page
to pull the mail.  Of course, I was checking every 5 seconds, and, as a
result, since it would take longer than 5 seconds for my page to run, I had
the issue of multiple requests trying to process the mail at the same time.
So, I set up a DB variable that would, in effect, 'lock' the process so that
it could only be running once at any given time.  Once the VB app saw there
was mail, it would start firing the CF request (it would shell out to WGET
which would execute the HTTP call to the CF page) every 5 seconds until
there was no mail anymore.  The first request would actually start the
processing and the remaining requests would just abort because the process
was already running.

This has been working well for us for two months now.

I'm sure there are other ways to accomplish this, and maybe even a 'Pure'
ColdFusion solution, but I found the overhead on CFPOP so slow that I
couldn't reliably expect it to check for messages every 5 seconds
successfully without killing my server (sometimes a single CFPOP call would
take more than 5 seconds anyway).

HTH,

Dave

-Original Message-
From: Varun Dixit [mailto:[EMAIL PROTECTED] 
Sent: Thursday, July 24, 2008 3:45 PM
To: CF-Talk
Subject: CFPOP and Email gateway

I have a CRM tool which uses CFPOP to pull the email from the mailbox,
parses those email and connects them to an existing open tickets in the CRM
tool for that email address. 
I have a scheduled task which runs every 15 minutes and does the pull,parse
and append. I need to have this task run every 2 minutes but because we have
a lot already going on in that tool it has huge performance issues.

I was thinkin may be, if there is a email gateway or some other method to
continusouly listen the mailbox and as soon as we get email parse it, append
it. 

Please advise if any of you have ever looked into some solutions where the
app can continuously listen for event (email in this case) without having
huge performance impact.

Thanks 





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


Sorting output from CFPOP

2008-06-07 Thread Phillip M. Vector
Besides doing a query within a query.. Is there any other way I can sort 
the output of cfpop so that my newest mail is at the top instead of the 
bottom?

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


Re: Sorting output from CFPOP

2008-06-07 Thread s. isaac dealey
Phillip Vector wrote:
 Besides doing a query within a query.. Is there any other way I can
 sort the output of cfpop so that my newest mail is at the top instead
 of the bottom?

Just because I'm in the mood to be silly. 

cfscript
/**
 * Reverses the order of elements in a one-dimensional array.
 * 
 * @param InArrayOne-dimensional array to be reversed. 
 * @return Returna a new one dimensional array. 
 * @author Raymond Simmons ([EMAIL PROTECTED]) 
 * @version 1.0, October 9, 2001 
 */
function ArrayReverse(inArray){
var outArray = ArrayNew(1);
var i=0;
var j = 1;
for (i=ArrayLen(inArray);i GT 0;i=i-1){
outArray[j] = inArray[i];
j = j + 1;
}
return outArray;
}
/cfscript

cffunction name=QueryReverse output=false
cfargument name=Query type=Query required=true /
cfset var column =  /
cfset var data =  /
cfset var qNew = QueryNew() /

cfloop index=column list=#Query.columnlist#
cfset data = ArrayReverse(Query[#column#]) /
cfset QueryAddColumn(qNew,column,data) /
/cfloop

cfreturn qNew /
/cffunction

p.s. may be time to upgrade your server. ;) 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 617.365.5732

http://onTap.riaforge.org/blog



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


Re: Sorting output from CFPOP

2008-06-07 Thread Phillip M. Vector
*scratches his head*

Ok.. I kind of get this... I'll have to mull it over so I can see what 
you are doing... Thanks.

s. isaac dealey wrote:
 Phillip Vector wrote:
 Besides doing a query within a query.. Is there any other way I can
 sort the output of cfpop so that my newest mail is at the top instead
 of the bottom?
 
 Just because I'm in the mood to be silly. 
 
 cfscript
 /**
  * Reverses the order of elements in a one-dimensional array.
  * 
  * @param InArray  One-dimensional array to be reversed. 
  * @return Returna a new one dimensional array. 
  * @author Raymond Simmons ([EMAIL PROTECTED]) 
  * @version 1.0, October 9, 2001 
  */
 function ArrayReverse(inArray){
   var outArray = ArrayNew(1);
   var i=0;
 var j = 1;
   for (i=ArrayLen(inArray);i GT 0;i=i-1){
   outArray[j] = inArray[i];
   j = j + 1;
   }
   return outArray;
 }
 /cfscript
 
 cffunction name=QueryReverse output=false
   cfargument name=Query type=Query required=true /
   cfset var column =  /
   cfset var data =  /
   cfset var qNew = QueryNew() /
   
   cfloop index=column list=#Query.columnlist#
   cfset data = ArrayReverse(Query[#column#]) /
   cfset QueryAddColumn(qNew,column,data) /
   /cfloop
   
   cfreturn qNew /
 /cffunction
 
 p.s. may be time to upgrade your server. ;) 
 

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


Re: Sorting output from CFPOP

2008-06-07 Thread s. isaac dealey
 *scratches his head*
 
 Ok.. I kind of get this... I'll have to mull it over so I can see what 
 you are doing... Thanks.

Well the short human-language explanation is loop over the columns in
the query and since you can treat each column as an array fetch the
array, reverse the array, then feed it into a new empty query with the
same column name.

I'm not sure if it's more or fewer lines of code, but since it loops
over the whole query once for each column to reverse them, it's probably
slower than just looping over the query once in reverse and inserting
each record into a new query that already had all the same column names. 

cfset total = qMail.recordcount /
cfset qNew = QueryNew(qMail.columnlist) /
cfset QueryAddRow(qNew,total) /
cfloop index=x from=#total# to=1 step=-1
cfloop index=column list=#qMail.columnlist#
cfset qNew[column][1+total-x] = qMail[column][x] /
/cfloop
/cfloop

In retrospect... yeah, that's fewer lines of code... and probably faster...
I did the other one kind of as a joke... don't ask, I thought it was
funny. :) 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 617.365.5732

http://onTap.riaforge.org/blog



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


Re: CFPOP Inquiry

2008-05-28 Thread Bilal Soylu
Graham,
we had occasional trouble with cfpop, especially connecting to Lotus Notes. In 
those circumstances we have used an alternate plug in (CFX_POP3), cost about 
$50 successfully.

Cheers,
Bilal




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


CFPOP Inquiry

2008-05-23 Thread Graham Pearson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
 
I am trying to solve an issue with cfpop about not getting the message 
headers withiin a pop3 account. I have enabled the debug of the cfpop so 
I can see what commands are issues to the pop3 mail server. When I run 
the test page I see that cfpop issues the following commands of user 
username, pass password, STAT and UIDL. The STAT returns 1 message which 
is the same message that I show on the cfdump of qMessageList in my test 
page. However if on the server I perform the same commands via telnet 
that are logged to the cfusion-out.log file and via telnet on the STAT I 
am showing 34 messages instead of 1.

Does anyone have other ideas as to why this is happening or things I can 
try.


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.8 (MingW32)
Comment: GnuPT 2.6.2.1 by EQUIPMENTE.DE
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
 
iD8DBQFINurX3GqPAgBSy90RAg3lAJ47L1k6B+Ms+Xj8sJMjLss80bqafgCfd24S
gDTE6X4hDt+98BuTOIDKR6Q=
=V3h/
-END PGP SIGNATURE-


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


Issue with cfpop lotus notes

2008-05-15 Thread Gualtiero Sappa
Hi all,
i'm using cfpop tag to retrieve e-mail messages from a Lotus Notes mail server 
(Lotus 
Domino Release 6.5.4).

First of all I use CFPOP to retrieve messages header informations 
(action=GETHEADERONLY), then I loop on message headers query to retrieve each 
message 
body (action=GETALL with messageNumber specified).

It seems that every cfpop returns only new messages and mark all messages it 
returns as 
read. In this way when I perform the second call (action=GETALL with 
messageNumber 
specified) the returned query it's empty.

Note that the same code it's runing fine on another customer Lotus Notes.

Many thank in advance.

Gualtiero




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


CFPOP #Body# and carriage returns

2008-03-11 Thread Steve Good
I am pulling data from a pop3 server using the cfpop tag and everything 
is working smoothly, but I noticed that there are no carriage returns in 
the body of the emails.  Do I need to specify a delimiter or anything or 
am I just SOL?
-- 

~Steve
http://goodcf.instantspot.com/blog


~|
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:300988
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CFPOP #Body# and carriage returns

2008-03-11 Thread Brad Wood
How are you outputting the body of the E-mail?  If you are simply
outputting it on an HTML page, you will need to replace carriage
returns/line feeds with br tags since HTML ignores them.  
Either that, or place the output in pre tags.  
I'm assuming you are dealing with a plain text E-mail.  That may or may
not be a safe assumption to make though.

~Brad

-Original Message-
From: Steve Good [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 11, 2008 2:21 PM
To: CF-Talk
Subject: CFPOP #Body# and carriage returns

I am pulling data from a pop3 server using the cfpop tag and everything 
is working smoothly, but I noticed that there are no carriage returns in

the body of the emails.  Do I need to specify a delimiter or anything or

am I just SOL?
-- 

~|
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:300990
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFPOP #Body# and carriage returns

2008-03-11 Thread Steve Good
I am indeed working with plain text emails.  I will eventually be 
outputting the body in html.  Thanks for the push in the right direction.

~Steve
http://goodcf.instantspot.com/blog



Brad Wood wrote:
 How are you outputting the body of the E-mail?  If you are simply
 outputting it on an HTML page, you will need to replace carriage
 returns/line feeds with br tags since HTML ignores them.  
 Either that, or place the output in pre tags.  
 I'm assuming you are dealing with a plain text E-mail.  That may or may
 not be a safe assumption to make though.

 ~Brad

 -Original Message-
 From: Steve Good [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, March 11, 2008 2:21 PM
 To: CF-Talk
 Subject: CFPOP #Body# and carriage returns

 I am pulling data from a pop3 server using the cfpop tag and everything 
 is working smoothly, but I noticed that there are no carriage returns in

 the body of the emails.  Do I need to specify a delimiter or anything or

 am I just SOL?
   

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


RE: CFPOP #Body# and carriage returns

2008-03-11 Thread Brad Wood
Glad I could help.  Here is a snippet of code I have used before when I
need to output plain text in HTML.  It escapes special HTML characters
like  and it preserves line breaks as well as tabs.  The reason I
replace line feeds separately a second time, is sometimes you get line
feeds without carriage returns.  Yes, regex could simplify that a bit
but I'll let you do that.  :)

!--- Escape any reserved HTML chars ---
cfset my_string = htmleditformat(my_string)
!--- Put in br's in place of carriage returns  line feeds ---
cfset my_string = replacenocase(my_string,chr(13)chr(10),br
/,all)
!--- Put in br's for the preview in place of line feeds ---
cfset my_string = replacenocase(my_string, chr(10),br /,all)
!--- Replace tabs with 5 spaces ---
cfset my_string =
replacenocase(my_string,chr(09),nbsp;nbsp;nbsp;nbsp;nbsp;,all)


~Brad

-Original Message-
From: Steve Good [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, March 11, 2008 2:36 PM
To: CF-Talk
Subject: Re: CFPOP #Body# and carriage returns

I am indeed working with plain text emails.  I will eventually be 
outputting the body in html.  Thanks for the push in the right
direction.

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


CFPOP and Yahoo! mail - possible?

2008-02-01 Thread Mike Kear
Is it possible to get access to a Yahoo! mail box using CFPOP?   I
know there's a gadget called YPOPs that allows clients like outlook to
connect to Yahoo, acting as a sort of proxy.   But i haven't been able
to make CFPOP and yPOPs talk to each other yet, so I'm not sure if it
will work.

Does anyone konw if you can get into a Yahoo! mail box with CFPOP?

-- 
Cheers
Mike Kear
Windsor, NSW, Australia
Adobe Certified Advanced ColdFusion Developer
AFP Webworks
http://afpwebworks.com
ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month

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


Re: CFPOP and Yahoo! mail - possible?

2008-02-01 Thread Azadi Saryev
you should be able to, but i think you may need to sign up for Yahoo POP 
access, which is part of their premium services or whatever they are 
called now...

---
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com



Mike Kear wrote:
 Is it possible to get access to a Yahoo! mail box using CFPOP?   I
 know there's a gadget called YPOPs that allows clients like outlook to
 connect to Yahoo, acting as a sort of proxy.   But i haven't been able
 to make CFPOP and yPOPs talk to each other yet, so I'm not sure if it
 will work.

 Does anyone konw if you can get into a Yahoo! mail box with CFPOP?

   

~|
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:297984
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Constantly execute (refresh?) page, for cfpop?

2007-10-08 Thread George Linderman
Hey guys,

I'm trying to make a little app that will get my email from the pop server, and 
then send as an SMS the subject and sender. I can see that I can do that with 
the cfpop and cfmail tag, but then I realized that the tags will only 
execute when someone refreshes the page, or goes to it. However, I'd like this 
to check every 5 minutes, and then send the emails to my cell. If I'm at my 
computer, refreshing the page, then it obviously defeats the purpose.

In other words, how do I write an app...very simple one, with only cfmail and 
cfpop tags, that will execute every 5 minutes? 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

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


Re: Constantly execute (refresh?) page, for cfpop?

2007-10-08 Thread gary gilbert
Hi George,

You could create the page as normal and set up a scheduled event in the
administrator to run it every 5 minutes.

-- 
Gary Gilbert
http://www.garyrgilbert.com/blog


~|
Get involved in the latest ColdFusion discussions, product
development sharing, and articles on the Adobe Labs wiki.
http://labs/adobe.com/wiki/index.php/ColdFusion_8

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


RE: Constantly execute (refresh?) page, for cfpop?

2007-10-08 Thread Adkins, Randy
take a look at CFSchedule or the Scheduled Tasks in the CF Administrator.
 



From: George Linderman [mailto:[EMAIL PROTECTED]
Sent: Mon 10/8/2007 3:15 AM
To: CF-Talk
Subject: Constantly execute (refresh?) page, for cfpop?



Hey guys,

I'm trying to make a little app that will get my email from the pop server, and 
then send as an SMS the subject and sender. I can see that I can do that with 
the cfpop and cfmail tag, but then I realized that the tags will only 
execute when someone refreshes the page, or goes to it. However, I'd like this 
to check every 5 minutes, and then send the emails to my cell. If I'm at my 
computer, refreshing the page, then it obviously defeats the purpose.

In other words, how do I write an app...very simple one, with only cfmail and 
cfpop tags, that will execute every 5 minutes?



~|
Check out the new features and enhancements in the
latest product release - download the What's New PDF now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

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


CF8 CFPOP? Better?

2007-09-11 Thread Scott Weikert
For a good while I've been using the 'CFX_POP3' tag in lieu of CF's 
built in 'CFPOP' (using 6.1). It's always worked better/faster for me.

Now, we're in the process of prepping a couple of new servers, with CF8, 
and I'm curious whether or not I should continue to use the CFX tag or 
migrate back to the CFPOP tag.

Does CFPOP work significantly better in CF8? Opinions?

--Scott

~|
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:288157
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF8 CFPOP? Better?

2007-09-11 Thread Eric Roberts
Depends...if you are accessing an exchange server...check out the cfexchange
tags...

Eric


On 9/11/07, Scott Weikert [EMAIL PROTECTED] wrote:

 For a good while I've been using the 'CFX_POP3' tag in lieu of CF's
 built in 'CFPOP' (using 6.1). It's always worked better/faster for me.

 Now, we're in the process of prepping a couple of new servers, with CF8,
 and I'm curious whether or not I should continue to use the CFX tag or
 migrate back to the CFPOP tag.

 Does CFPOP work significantly better in CF8? Opinions?

 --Scott

 

~|
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-72catid=648

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


RE: CFPOP

2007-06-13 Thread Jake Churchill
I'm using it and haven't run into any issues yet.  

_ 

Jake Churchill 
CF Webtools 
11204 Davenport, Ste. 200b 
Omaha, NE  68154 
http://www.cfwebtools.com 
402-408-3733 x103 

-Original Message-
From: Jenny [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 12, 2007 9:30 PM
To: CF-Talk
Subject: CFPOP

Is this more reliable in CF 7?  it wasn't very stable in 6 

Anyone using it ?

Jenny




~|
ColdFusion MX7 and Flex 2 
Build sales  marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

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


CFPOP

2007-06-12 Thread Jenny
Is this more reliable in CF 7?  it wasn't very stable in 6 

Anyone using it ?

Jenny


~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


CFPOP Missing UID - cfmx 6.1

2007-04-07 Thread joe velez
Hi

I have tried using CFPOP ACTION='GETALL' and CFPOP ACTION='GETHEADERONLY' (for 
testing purposes) and have noticed that on several occasions more than 1 
message will not provide a UID. When I ouput the UID for each message a lot of 
them are blank.

Has anyone else seen this problem? How can it be fixed (without trying to parse 
the headers -- which can be done later).

Additionally, I've noticed the following. If the message does return a UID the 
message has Message-ID: followed by the returned UID located in the headers. 
If the message does not return a UID, the Message-ID: is not there, however, 
X-MessageId: is provided in the headers, but does not provide CF with a UID.

I run Xmail Server for my mail server -- so this might be part of the problem? 
I'm going to search their forums as well.
 
Thanks

Joe Velez

~|
Macromedia ColdFusion MX7
Upgrade to MX7  experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

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


cfpop From Field

2006-10-06 Thread George Owns
Hello there,

so I'm trying to do a Bounce Management system by myself.
But I ran into another problem:
If I output the from - field returned by cfpop I get:

John Doe

What I want to get is the e-mail address:

[EMAIL PROTECTED]

So I want to get the e-mail address rather than the name. Can anybody help?





-
Was ist Glück? Schlafen Fische überhaupt? Die Antworten gibt’s auf Yahoo! 
Clever.

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


RE: cfpop From Field

2006-10-06 Thread George Owns
Ok, i figured it out by myselft

The output that Coldfusion generates looks like that:

John Doe [EMAIL PROTECTED]

So of course the [EMAIL PROTECTED] doesn't gets displayed by the browser.

George Owns [EMAIL PROTECTED] schrieb: Hello there,

so I'm trying to do a Bounce Management system by myself.
But I ran into another problem:
If I output the from - field returned by cfpop I get:

John Doe

What I want to get is the e-mail address:

[EMAIL PROTECTED]

So I want to get the e-mail address rather than the name. Can anybody help?




   
-
Was ist Glück? Schlafen Fische überhaupt? Die Antworten gibt’s auf Yahoo! 
Clever.



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Using CFPOP to pull Microsoft Exchange message attachments?

2006-09-13 Thread powell
I'm stuck trying to make this happen.  I've used CFPOP a thousand times, but 
never before on Exchange mailboxes.  I can get the message headers information 
with no problems (so that means that I have the correct servername, username 
and password), but when I go to pull the attachment on a message that clearly 
has a filename in the Attachments column of the query returned from 
ACTION=GETALL, nothing comes back.  No file appears in the specified directory, 
and nothing is in the ATTACHMENTFILES column of the query.

Is there something about dealing with Exchange's mailboxes using POP that I 
need to take into account?

Here is the code that is trying to pull the attachment:

cfpop action=GETALL name=UploadMessage 
messagenumber=#emailtest.messagenumber# attachmentpath=D: 
generateuniquefilenames=Yes server=#url.servername# 
username=#url.POPusername# password=#url.POPpassword#

Ideas, anyone?
Thanks,
Reed

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: Using CFPOP to pull Microsoft Exchange message attachments?

2006-09-13 Thread Jochem van Dieten
powell wrote:
 No file appears in the specified directory, and nothing 
 is in the ATTACHMENTFILES column of the query.

 cfpop action=GETALL name=UploadMessage messagenumber=#emailtest.
 messagenumber# attachmentpath=D: generateuniquefilenames=Yes 
 server=#url.servername# username=#url.POPusername# password=#url.
 POPpassword#
 
 Ideas, anyone?

Try a \ after your attachmentpath. If that doesn't help, use a packetsniffer to 
check whether the problem is on the Exchange side or the CF side.

Jochem

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

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


Re: smtp questions cfpop

2006-05-17 Thread Jochem van Dieten
David Elliott wrote:
  
 When I try to send a 'test' email to myself or another email address I have, 
 the mail program acts like it sends it but when I check on it, Nothing!
  
 Any suggestions where to start?

1. The log file.
2. Setting spoolenable to false.

Jochem

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240787
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


smtp questions cfpop

2006-05-16 Thread David Elliott
I've managed to add my hyperlink to pull up a web page for sending my email.

I've also added it to my coldfusion server and tested it successfully.
 
When I try to send a 'test' email to myself or another email address I have, 
the mail program acts like it sends it but when I check on it, Nothing!
 
Any suggestions where to start?  If it makes any difference, when I set up 
outlook or outlook express, I have to require authorization to send mail.
 
Thanks,
 
Dave

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240723
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFPOP question...

2006-05-10 Thread Jacob
When using CFPOP, I would like to get the person's email address.  But
sometimes, I get it the name of the person, like Joe Blow and not
[EMAIL PROTECTED]

How can I get the email address?  The email address is not in the header
either.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240189
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFPOP question...

2006-05-10 Thread Paul Vernon
 When using CFPOP, I would like to get the person's email 
 address.  But sometimes, I get it the name of the person, 
 like Joe Blow and not [EMAIL PROTECTED]

This is a feature of CFPOP

 How can I get the email address?  The email address is not in 
 the header either.

It is... Use HTMLEditFormat() to output the header The email address is
surrounded by  and therefore if you don't escape them you wont see it when
you output the header...

shamelessPlug
Oh and if you are on Windows... You could use CFX_POP3 :)
/shamelessPlug

Paul



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:240191
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFPOP error

2006-04-25 Thread joe velez
Hi -

I am running a basic CFPOP tag:
cfpop action=getall name=chk_msgs server=#my_server# 
username=#session.email# password=#session.password#

but I am getting an error which doesnt really say much:
--
Attribute validation error for tag cfoutput.  
The value of the attribute query, which is currently chk_msgs, is invalid.  
  
The error occurred in C:\UWH\webmail\messages_check.cfm: line 22
 
20 : /tr
21 : cfset rcnt = 0
22 : cfoutput query='chk_msgs'
--

Has anyone had a similar error? Know a reason why this occurs? How to correct?

This only occurs in some rare cases. For the most part my webmail application 
is running fine. 

The account in question only has about 10 emails and I have added STARTROW=1 
MAXROWS=X where x is incrementing by 1 so I can see which message is causing 
the issue.

Its about the 8th message.

Thanks

JV
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238712
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFPOP Error [more info]

2006-04-25 Thread hof
This appears to be the message that is causing problems:

Return-Path: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Date: Fri, 21 Apr 2006 11:52:34 -0500
X-MessageId: 1145638475427.2832.8f48.YSCP
X-SmtpMessageId: S990067
From: MYEMAILSERVERDOMAIN.COM PostMaster [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Error sending message [1145638475427.2832.8f48.YSCP] from 
[MYEMAILSERVERDOMAIN.COM]
X-MailerServer: XMail 1.21
X-MailerError: Message = [1145638475427.2832.8f48.YSCP] Server = 
[MYEMAILSERVERDOMAIN.COM]

[00] XMail bounce: [EMAIL PROTECTED];Error=[554- (RTR:RD)  
http://postmaster.info.aol.com/errors/554rtrrd.html
554  Connecting IP: 69.85.234.2]


[01] Error sending message [1145638475427.2832.8f48.YSCP] from 
[MYEMAILSERVERDOMAIN.COM].

ID:S990067
Mail From: [EMAIL PROTECTED]
Rcpt To:   [EMAIL PROTECTED]
Server:xn.mx.aol.com [64.12.138.152]


[02] The reason of the delivery failure was:

554- (RTR:RD)  http://postmaster.info.aol.com/errors/554rtrrd.html
554  Connecting IP: 69.85.234.2


[05] Here is listed the initial part of the message:

Received: from YSCP ([192.168.10.208]:1229)
by mail.MYEMAILSERVERDOMAIN.COM with [XMail 1.21 ESMTP Server]
id S990067 for [EMAIL PROTECTED] from [EMAIL PROTECTED];
Fri, 21 Apr 2006 11:52:33 -0500
Message-ID: [EMAIL PROTECTED]
Date: Fri, 21 Apr 2006 11:52:33 -0500 (CDT)
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Neptune's Daughters
Mime-Version: 1.0
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Mailer: ColdFusion MX Application Server



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238716
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Using CfPOP

2006-03-28 Thread Ken
Hi. I have a mailing list in a db, and I need to start flagging email
addresses that bounce back emails. I am thinking of using CFPOP to read
bounced emails, or read a special header that I embed when sending the
emails. Then update a flag in the db.

That's vaguely what i need to do. However, has anyone done this in a better
and more efficient manner? If so, please help.

Thanks,
Ken.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236309
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFPOP MessageRemovedException Error

2006-03-22 Thread LaCroix, Chris
I have an application that uses CFPOP and most of the time it runs fine,
but every once and a while I receive the following error:
 
Error Message:
An exception occurred while retrieving mail. 

Error Detail
The cause of this exception was: javax.mail.MessageRemovedException.

My code does the following:
1) Loops though 4 exchange mailboxes
2) Getting header only
3) If error while trying to cfpop send email alert to admin, else
process wanted mail items then delete processed items.
 
I can also supply some code if that helps.
 
ColdFusion MX  Standard Edition (Version  7,0,1,116466)
Windows 2003
Exchange 2003
 
Thanks,  --Chris
 

__
This transmittal may be a confidential attorney-client communication or may 
otherwise be privileged or confidential. If it is not clear that you are the 
intended recipient, you are hereby notified that you have received this 
transmittal in error; any review, dissemination, distribution or copying of 
this transmittal is strictly prohibited. If you suspect that you have received 
this communication in error, please notify us immediately by telephone at 
1-860-275-8200, or e-mail at [EMAIL PROTECTED] and immediately delete this 
message and all its attachments.
__
This email has been scanned by the MessageLabs Email Security System.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235981
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFPOP MessageRemovedException Error

2006-03-22 Thread Michael Traher
Are you using the messagenumber or uid when you delete the messages?

This is a bit of a vague memory but I seem to remember that messagenumber
cannot be relied upon 100% and that uid works better.

Sorry that is rather sketchy but may give you an avenue to explore. :-)

On 3/22/06, LaCroix, Chris [EMAIL PROTECTED] wrote:

 I have an application that uses CFPOP and most of the time it runs fine,
 but every once and a while I receive the following error:

 Error Message:
 An exception occurred while retrieving mail.

 Error Detail
 The cause of this exception was: javax.mail.MessageRemovedException.

 My code does the following:
 1) Loops though 4 exchange mailboxes
 2) Getting header only
 3) If error while trying to cfpop send email alert to admin, else
 process wanted mail items then delete processed items.

 I can also supply some code if that helps.

 ColdFusion MX  Standard Edition (Version  7,0,1,116466)
 Windows 2003
 Exchange 2003

 Thanks,  --Chris


 __
 This transmittal may be a confidential attorney-client communication or
 may otherwise be privileged or confidential. If it is not clear that you are
 the intended recipient, you are hereby notified that you have received this
 transmittal in error; any review, dissemination, distribution or copying of
 this transmittal is strictly prohibited. If you suspect that you have
 received this communication in error, please notify us immediately by
 telephone at 1-860-275-8200, or e-mail at [EMAIL PROTECTED] and immediately 
 delete
 this message and all its attachments.
 __
 This email has been scanned by the MessageLabs Email Security System.

 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235983
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFPOP MessageRemovedException Error

2006-03-22 Thread LaCroix, Chris
I am using messageNumber to delete the messages, but I error before
that.
Unless you thinking the message I tried to delete is causing an error
the next time the process ran again.
FYI:  This morning I received this sporadically for over two hours, but
have not received the error for the last 3 hours.


-Original Message-
From: Michael Traher [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 22, 2006 1:44 PM
To: CF-Talk
Subject: Re: CFPOP MessageRemovedException Error


Are you using the messagenumber or uid when you delete the messages?

This is a bit of a vague memory but I seem to remember that
messagenumber cannot be relied upon 100% and that uid works better.

Sorry that is rather sketchy but may give you an avenue to explore. :-)

On 3/22/06, LaCroix, Chris [EMAIL PROTECTED] wrote:

 I have an application that uses CFPOP and most of the time it runs 
 fine, but every once and a while I receive the following error:

 Error Message:
 An exception occurred while retrieving mail.

 Error Detail
 The cause of this exception was: javax.mail.MessageRemovedException.

 My code does the following:
 1) Loops though 4 exchange mailboxes
 2) Getting header only
 3) If error while trying to cfpop send email alert to admin, else 
 process wanted mail items then delete processed items.

 I can also supply some code if that helps.

 ColdFusion MX  Standard Edition (Version  7,0,1,116466) Windows 2003
 Exchange 2003

 Thanks,  --Chris


 __
 This transmittal may be a confidential attorney-client communication 
 or may otherwise be privileged or confidential. If it is not clear 
 that you are the intended recipient, you are hereby notified that you 
 have received this transmittal in error; any review, dissemination, 
 distribution or copying of this transmittal is strictly prohibited. If

 you suspect that you have received this communication in error, please

 notify us immediately by telephone at 1-860-275-8200, or e-mail at 
 [EMAIL PROTECTED] and immediately delete this message and all its attachments.

 __
 This email has been scanned by the MessageLabs Email Security System.

 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235984
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFPOP MessageRemovedException Error

2006-03-22 Thread Paul Vernon
If you are running multiple requests on the same mailbox you may receive
this error under the following circumstances

Thread 1 processes mail and starts to delete messages

Thread 2 connects to the mailbox

Thread 1 completes deleting mail. The mail server renumbers any existing
mails starting from 1 again.

Thread 2 starts processing and attempts to access a messagenumber that no
longer exists. It errors out...

The use of cflock around all of the calls in a particular page using the
name attribute and locking on say [EMAIL PROTECTED] would fix the
issue...

Paul



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235987
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFPOP MessageRemovedException Error

2006-03-22 Thread Michael Traher
I think the messagenumber relates to the set you have retrieved, but is not
unique, so if you are the only process accessing the mailbox then all is
well, but if another process removes a message between you selecting the
headers and then trying to do something else with them the messagenumber may
now refer to another message.

I think using uid is more robust - whether it is the root of your problem is
hard to tell...

On 3/22/06, LaCroix, Chris [EMAIL PROTECTED] wrote:

 I am using messageNumber to delete the messages, but I error before
 that.
 Unless you thinking the message I tried to delete is causing an error
 the next time the process ran again.
 FYI:  This morning I received this sporadically for over two hours, but
 have not received the error for the last 3 hours.


 -Original Message-
 From: Michael Traher [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 22, 2006 1:44 PM
 To: CF-Talk
 Subject: Re: CFPOP MessageRemovedException Error


 Are you using the messagenumber or uid when you delete the messages?

 This is a bit of a vague memory but I seem to remember that
 messagenumber cannot be relied upon 100% and that uid works better.

 Sorry that is rather sketchy but may give you an avenue to explore. :-)

 On 3/22/06, LaCroix, Chris [EMAIL PROTECTED] wrote:
 
  I have an application that uses CFPOP and most of the time it runs
  fine, but every once and a while I receive the following error:
 
  Error Message:
  An exception occurred while retrieving mail.
 
  Error Detail
  The cause of this exception was: javax.mail.MessageRemovedException.
 
  My code does the following:
  1) Loops though 4 exchange mailboxes
  2) Getting header only
  3) If error while trying to cfpop send email alert to admin, else
  process wanted mail items then delete processed items.
 
  I can also supply some code if that helps.
 
  ColdFusion MX  Standard Edition (Version  7,0,1,116466) Windows 2003
  Exchange 2003
 
  Thanks,  --Chris
 
 
  __
  This transmittal may be a confidential attorney-client communication
  or may otherwise be privileged or confidential. If it is not clear
  that you are the intended recipient, you are hereby notified that you
  have received this transmittal in error; any review, dissemination,
  distribution or copying of this transmittal is strictly prohibited. If

  you suspect that you have received this communication in error, please

  notify us immediately by telephone at 1-860-275-8200, or e-mail at
  [EMAIL PROTECTED] and immediately delete this message and all its 
  attachments.

  __
  This email has been scanned by the MessageLabs Email Security System.
 
 



 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235989
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFPOP MessageRemovedException Error

2006-03-22 Thread LaCroix, Chris
I have included my code to see if it helps any.  From what your saying I
should add cflock around the cfpop and the cfdelete?
I assume each step waits for the prior step to complete.

cfloop query=qryMailServers
cfset strRecServer = #trim(qryMailServers.recServer)#
cfset strRecUsername = #trim(qryMailServers.recusername)#
cfset strRecPassword = #trim(qryMailServers.recPassword)#
cfset bErrorFound = N
cftry
cfpop server=#strRecServer#
   username=#strRecUsername#
   password=#strRecPassword#
   action=getHeaderOnly
   name=qryITagentMail

cfcatch type=any
!--- Error occured with cfpop - send alert mail
to admin---
cfset bErrorFound = Y
cfmail to=strAlertToAddress
from=#strAlertFromAddress# 
subject=Email Error
Notification (POP) -- Exchange Server: #strRecServer# 
type=html
strongExchange Server:/strong
#strRecServer# br /
strongError Message:/strongbr
/#cfcatch.message#br /
strongError Detail/strongbr
/#cfcatch.Detail#br /
/cfmail
/cfcatch
/cftry
cfif bErrorFound EQ N
cfloop query=qryITagentMail
!---Do something with email data then mark item
as ready for deletion---
cfset iDeleteMsg = iDeleteMsg  , 
#qryITagentMail.uid# !--- messageNumber -- store message number you
want to delete ---
/cfloop

!--- Delete These messages after processing ---
cfset iDeleteMsg = mid(iDeleteMsg,2,len(iDeleteMsg))
cfif trim(iDeleteMsg) NEQ ''
!--- delete selected mailings ---
cfpop server=#strRecServer#
   username=#strRecUsername#
   password=#strRecPassword#
   action=Delete
   messagenumber=#iDeleteMsg#
/cfif
/cfif
/cfloop



-Original Message-
From: Paul Vernon [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 22, 2006 2:25 PM
To: CF-Talk
Subject: RE: CFPOP MessageRemovedException Error


If you are running multiple requests on the same mailbox you may receive
this error under the following circumstances

Thread 1 processes mail and starts to delete messages

Thread 2 connects to the mailbox

Thread 1 completes deleting mail. The mail server renumbers any existing
mails starting from 1 again.

Thread 2 starts processing and attempts to access a messagenumber that
no longer exists. It errors out...

The use of cflock around all of the calls in a particular page using the
name attribute and locking on say [EMAIL PROTECTED] would fix the
issue...

Paul





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235991
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFPOP MessageRemovedException Error

2006-03-22 Thread Paul Vernon
One lock just before the cftry ending just before the /cfloop

cflock name=[EMAIL PROTECTED] type=exclusive
timeout=60

.

/cflock

Should stop the problem...

Paul

 -Original Message-
 From: LaCroix, Chris [mailto:[EMAIL PROTECTED] 
 Sent: Wednesday, 22 March 2006 20:05
 To: CF-Talk
 Subject: RE: CFPOP MessageRemovedException Error
 
 I have included my code to see if it helps any.  From what 
 your saying I should add cflock around the cfpop and the cfdelete?
 I assume each step waits for the prior step to complete.
 
 cfloop query=qryMailServers
   cfset strRecServer = #trim(qryMailServers.recServer)#
   cfset strRecUsername = #trim(qryMailServers.recusername)#
   cfset strRecPassword = #trim(qryMailServers.recPassword)#
   cfset bErrorFound = N
   cftry
   cfpop server=#strRecServer#
  username=#strRecUsername#
  password=#strRecPassword#
  action=getHeaderOnly
  name=qryITagentMail
   
   cfcatch type=any
   !--- Error occured with cfpop - send 
 alert mail to admin---
   cfset bErrorFound = Y
   cfmail to=strAlertToAddress
 from=#strAlertFromAddress# 
   subject=Email Error
 Notification (POP) -- Exchange Server: #strRecServer# 
   type=html
   strongExchange Server:/strong
 #strRecServer# br /
   strongError Message:/strongbr
 /#cfcatch.message#br /
   strongError Detail/strongbr
 /#cfcatch.Detail#br /
   /cfmail
   /cfcatch
   /cftry
   cfif bErrorFound EQ N
   cfloop query=qryITagentMail
   !---Do something with email data then 
 mark item as ready for deletion---
   cfset iDeleteMsg = iDeleteMsg  ,  
 #qryITagentMail.uid# !--- messageNumber -- store message 
 number you want to delete ---
   /cfloop
 
   !--- Delete These messages after processing ---
   cfset iDeleteMsg = mid(iDeleteMsg,2,len(iDeleteMsg))
   cfif trim(iDeleteMsg) NEQ ''
   !--- delete selected mailings ---
   cfpop server=#strRecServer#
  username=#strRecUsername#
  password=#strRecPassword#
  action=Delete
  messagenumber=#iDeleteMsg#
   /cfif
   /cfif
 /cfloop
 
 
 
 -Original Message-
 From: Paul Vernon [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 22, 2006 2:25 PM
 To: CF-Talk
 Subject: RE: CFPOP MessageRemovedException Error
 
 
 If you are running multiple requests on the same mailbox you 
 may receive
 this error under the following circumstances
 
 Thread 1 processes mail and starts to delete messages
 
 Thread 2 connects to the mailbox
 
 Thread 1 completes deleting mail. The mail server renumbers 
 any existing
 mails starting from 1 again.
 
 Thread 2 starts processing and attempts to access a messagenumber that
 no longer exists. It errors out...
 
 The use of cflock around all of the calls in a particular 
 page using the
 name attribute and locking on say [EMAIL PROTECTED] 
 would fix the
 issue...
 
 Paul
 
 
 
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236002
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFPop Gmail

2006-02-09 Thread Baz
Hi,

I am having trouble CFPOP'ing my gmail account. I think it may have to do
with the fact that an SSL connection is required. Has anyone got it to work?

Cheers,
Baz




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231767
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


getting an email address from a cfpop bounce back

2006-02-03 Thread dave
im sending out newsletters to the companies database of subscribers, they say 
they get several thousand bounce backs each time. So I want to remove those 
bounce back emails from db. So i figured I'd set up a seperate email account 
just for the newsletters and grab all the bounce backs via cfpop and loop thru 
the results and run a delete against the mailing list db and get rid of them 
all.

so the problem is that the email address comes back in the body section of the 
bounce back message and you have to go in and find it and grab it then run it 
into the delete query. You can use a regex but im not sure how to just get the 
email address out of all that.

here is a sample of a bounce back


 I'm sorry to have to inform you that your message could not be
be delivered to one or more recipients. It's attached below.

For further assistance, please send mail to postmaster

If you do so, please include this problem report. You can
delete your own text from the attached returned message.

 The Postfix program

[EMAIL PROTECTED]: host mail.asdd.com[216.77.62.196] said: 550 5.1.1 User
 unknown (in reply to RCPT TO command) 


how do i get that out and into its own variable?

~Dave the disruptor~
I forgot what I was gunna put here, Will woulda stole it anyways! 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:231345
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-18 Thread kola.oyedeji
John,

Out of curiosity what specifically was wrong with CFPOP?

Kola

 -Original Message-
 From: Brian Polackoff [mailto:[EMAIL PROTECTED]
 Sent: 17 January 2006 22:42
 To: CF-Talk
 Subject: RE: Opinons on Mail Servers and Tags - CFPOP Sucks
 
 John,
 I am sure many people will agree with me that if you need a good quality
 POP3 tag, that is simple to implement strong with abilities then Paul's
 CFX_POP3 tag is the way to go.  I have been using it in production
 environment and thus far has processed over 35 thousand emails since
October
 of last year.
 
 Additionally having needed support from Paul he is quick to answer.
 
 Brian Polackoff
 http://www.centuron.net
 
 
 -Original Message-
 From: Paul Vernon [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 17, 2006 5:20 PM
 To: CF-Talk
 Subject: RE: Opinons on Mail Servers and Tags - CFPOP Sucks
 
 John,
 
  That was one of the tags I mentioned in my original post.
  Thanks for the opinion.  That tag is so inexpensive that I
  will try it just because of the price and your recommendation.
 
 I write and maintain CFX_POP3 Std and Pro. One of your requirements in
your
 original post was platform independence and CFX_POP3 is not platform
 independent. That is why I haven't mentioned it The tag is a pure
 Windows dll so you wont get much mileage out of it on a Linux or other
 platform ;)
 
 Paul
 
 
 
 
 
 
 ~
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229874
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-18 Thread Russ
I know you're asking John, but for us the problem was that it doesn't
support UTF7 encoding which is what a large percentage of email messages is
coded as.  It's not a problem of CFPOP, but java in general, which is why a
c++ based CFX_POP3 tag solved the problem for us. 

It's also more efficient, and has a bunch more options.  

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, January 18, 2006 11:43 AM
 To: CF-Talk
 Subject: RE: Opinons on Mail Servers and Tags - CFPOP Sucks
 
 John,
 
 Out of curiosity what specifically was wrong with CFPOP?
 
 Kola
 
  -Original Message-
  From: Brian Polackoff [mailto:[EMAIL PROTECTED]
  Sent: 17 January 2006 22:42
  To: CF-Talk
  Subject: RE: Opinons on Mail Servers and Tags - CFPOP Sucks
 
  John,
  I am sure many people will agree with me that if you need a good quality
  POP3 tag, that is simple to implement strong with abilities then Paul's
  CFX_POP3 tag is the way to go.  I have been using it in production
  environment and thus far has processed over 35 thousand emails since
 October
  of last year.
 
  Additionally having needed support from Paul he is quick to answer.
 
  Brian Polackoff
  http://www.centuron.net
 
 
  -Original Message-
  From: Paul Vernon [mailto:[EMAIL PROTECTED]
  Sent: Tuesday, January 17, 2006 5:20 PM
  To: CF-Talk
  Subject: RE: Opinons on Mail Servers and Tags - CFPOP Sucks
 
  John,
 
   That was one of the tags I mentioned in my original post.
   Thanks for the opinion.  That tag is so inexpensive that I
   will try it just because of the price and your recommendation.
 
  I write and maintain CFX_POP3 Std and Pro. One of your requirements in
 your
  original post was platform independence and CFX_POP3 is not platform
  independent. That is why I haven't mentioned it The tag is a pure
  Windows dll so you wont get much mileage out of it on a Linux or other
  platform ;)
 
  Paul
 
 
 
 
 
 
  ~
 
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229877
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-18 Thread Paul Hastings
Russ wrote:
 I know you're asking John, but for us the problem was that it doesn't
 support UTF7 encoding which is what a large percentage of email messages is

it is? how do you know that? bounces, etc. maybe. general email, i think 
  not.

 coded as.  It's not a problem of CFPOP, but java in general, which is why a
 c++ based CFX_POP3 tag solved the problem for us. 

you can workaround this rather easily. see 
http://www.sustainablegis.com/blog/cfg11n/index.cfm?mode=entryentry=A8A05480-20ED-7DEE-2AF21FB14CB5B594

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229902
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-17 Thread John McKown
Damien McKenna wrote:
 How about BlueDragon and its CFIMAP tag?
 

Never tried it.  How is it?

-- 
John McKown
President/CEO
Delaware.Net, Inc.
Toll-Free: 888-432-7965
ICQ: 1812513

We host Fusebox.org, and we build all of our applications in ColdFusion 
and Fusebox including our Store-Logic Ecommerce engine and our 
Team-Logic CRM platform.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229806
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-17 Thread Damien McKenna
 -Original Message-
 From: John McKown [mailto:[EMAIL PROTECTED] 
 
 Damien McKenna wrote:
  How about BlueDragon and its CFIMAP tag?
 
 Never tried it.  How is it?

No idea, sorry.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229816
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-17 Thread Russ
We found out that CFPOP sucks about a year ago... that's when we got 

http://www.cftagstore.com/tags/cfxpop3professional.cfm

Worked like a charm.  And at $60 it's not that expensive.  



 -Original Message-
 From: Damien McKenna [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, January 17, 2006 4:10 PM
 To: CF-Talk
 Subject: RE: Opinons on Mail Servers and Tags - CFPOP Sucks
 
  -Original Message-
  From: John McKown [mailto:[EMAIL PROTECTED]
 
  Damien McKenna wrote:
   How about BlueDragon and its CFIMAP tag?
 
  Never tried it.  How is it?
 
 No idea, sorry.
 
 --
 Damien McKenna - Web Developer - [EMAIL PROTECTED]
 The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
 #include stdjoke.h
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229817
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-17 Thread Jochem van Dieten
John McKown wrote:
 Damien McKenna wrote:
 How about BlueDragon and its CFIMAP tag?
 
 Never tried it.  How is it?

A very minimal implementation: I know more IMAP by hard from 
telnet'ing to IMAP servers then I can use with CFIMAP in BlueDragon.


What sort of email integration do you need? How far would a 
delivery agent with advanced rules help you? If you go for 
something like the Dovecot mail server with delivery rules in 
Sieve or through procmail you can easily scale to a large cluster 
if you need more power on the mail processing end: 
http://www.dovecot.org/
But if you really just need to read all the email into CF and you 
might be better of with a mailserver that stores the email 
directly in a database so you can just query it: 
http://www.dbmail.org/ (Obviously I would recommend using it in 
combination with PostgreSQL.)

Jochem

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229819
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-17 Thread John McKown
Russ,

That was one of the tags I mentioned in my original post.
Thanks for the opinion.  That tag is so inexpensive that I will try it 
just because of the price and your recommendation.

Thanks.


-- 
John McKown
President/CEO
Delaware.Net, Inc.
Toll-Free: 888-432-7965
ICQ: 1812513

We host Fusebox.org, and we build all of our applications in ColdFusion 
and Fusebox including our Store-Logic Ecommerce engine and our 
Team-Logic CRM platform.

Russ wrote:
 We found out that CFPOP sucks about a year ago... that's when we got 
 
 http://www.cftagstore.com/tags/cfxpop3professional.cfm
 
 Worked like a charm.  And at $60 it's not that expensive.  
 
 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229825
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-17 Thread Jennifer Gavin-Wear
http://store.newmediadevelopment.net/cfx_tag.cfm?ProductID=2

I'm using the above and it works really well.  docs are good too.

also v. cheap and excellent support.

-Original Message-
From: John McKown [mailto:[EMAIL PROTECTED]
Sent: 17 January 2006 21:59
To: CF-Talk
Subject: Re: Opinons on Mail Servers and Tags - CFPOP Sucks


Russ,

That was one of the tags I mentioned in my original post.
Thanks for the opinion.  That tag is so inexpensive that I will try it
just because of the price and your recommendation.

Thanks.


--
John McKown
President/CEO
Delaware.Net, Inc.
Toll-Free: 888-432-7965
ICQ: 1812513

We host Fusebox.org, and we build all of our applications in ColdFusion
and Fusebox including our Store-Logic Ecommerce engine and our
Team-Logic CRM platform.

Russ wrote:
 We found out that CFPOP sucks about a year ago... that's when we got

 http://www.cftagstore.com/tags/cfxpop3professional.cfm

 Worked like a charm.  And at $60 it's not that expensive.





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229829
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-17 Thread Paul Vernon
John,

 That was one of the tags I mentioned in my original post.
 Thanks for the opinion.  That tag is so inexpensive that I 
 will try it just because of the price and your recommendation.

I write and maintain CFX_POP3 Std and Pro. One of your requirements in your
original post was platform independence and CFX_POP3 is not platform
independent. That is why I haven't mentioned it The tag is a pure
Windows dll so you wont get much mileage out of it on a Linux or other
platform ;)

Paul 




~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229830
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-17 Thread Brian Polackoff
John,
I am sure many people will agree with me that if you need a good quality
POP3 tag, that is simple to implement strong with abilities then Paul's
CFX_POP3 tag is the way to go.  I have been using it in production
environment and thus far has processed over 35 thousand emails since October
of last year.

Additionally having needed support from Paul he is quick to answer.

Brian Polackoff
http://www.centuron.net


-Original Message-
From: Paul Vernon [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, January 17, 2006 5:20 PM
To: CF-Talk
Subject: RE: Opinons on Mail Servers and Tags - CFPOP Sucks

John,

 That was one of the tags I mentioned in my original post.
 Thanks for the opinion.  That tag is so inexpensive that I 
 will try it just because of the price and your recommendation.

I write and maintain CFX_POP3 Std and Pro. One of your requirements in your
original post was platform independence and CFX_POP3 is not platform
independent. That is why I haven't mentioned it The tag is a pure
Windows dll so you wont get much mileage out of it on a Linux or other
platform ;)

Paul 






~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229838
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Opinons on Mail Servers and Tags - CFPOP Sucks

2006-01-16 Thread John McKown
We are in the process of building a robust webmail client, one that 
incorporates not only Spam/AV, but one that also dovetails with our CRM 
applications for true inbound email automation.  This is critical for 
our CRM application, and it will also use Ajax.

In playing with CFPOP and CFMAIL, it is very obvious that we can't use 
them.   We are looking at IMail, IMS, some CFX tags, and other solutions 
to replace CFPOP and perhaps also CFMAIL. Since this is basically a 
webmail system on steroids, and because it MUST run on our CRM Linux 
cluster, Windows Email servers and windows-only CFX tags are NOT 
acceptable.  We are migrating all of our hosted apps to large clusters 
and Windows will not be a part of the clustered environment (including 
the DB servers).

So what I am interested in is opinions on both tag-based solutions 
(Java?) or email server choices that would be powerful enough to manage 
a fair amount of email, and yet also expose more functionality to CF so 
that we can process mail better.   An example would be getting some of 
the header attributes (like Status) out without having to run regex on 
every message (that is not scalable).

Thanks in advance for your opinions.

-- 
John McKown
President/CEO
Delaware.Net, Inc.
Toll-Free: 888-432-7965
ICQ: 1812513

We host Fusebox.org, and we build all of our applications in ColdFusion and 
Fusebox including our Store-Logic Ecommerce engine and our Team-Logic CRM 
platform.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229673
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   3   4   5   6   >