I saw that it is a bug in clustered enviroments in CF. It's on
beta.allaire.com sign up to be a beta tester if you aren't already, then go
to the SP1 RC1 and read the documentation.

Robert Everland III
Web Developer
Dixon Ticonderoga


-----Original Message-----
From: Linda Pedersen [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 27, 2000 4:01 PM
To: [EMAIL PROTECTED]
Subject: Re: cfmail sedning bare linefeeds (LF)


Hi,

We dealt with this. It does not seem to occur when you use a form to pass
the body of the email. However, if you create the body in a cf template
that is when this appears to happen. It is not really a bug with CF. You
can clean up your message before sending with code like this:

<cfset lf= Chr(10)>
<cfset crlf = Chr(13) & Chr(10)>
<cfset SendMsg = Replace( SendMsg, crlf, lf, "all")>
<cfset SendMsg = Replace( SendMsg, lf, crlf, "all")> 

 <CFMAIL TO="[EMAIL PROTECTED]" 
        FROM="[EMAIL PROTECTED]" 
        SUBJECT="MySubject">#SendMsg#</CFMAIL>

--Linda
C Y B E R E L F  I N C.
Web Hosting * Programming * Web Site Development
(813) 991-7979 * http://www.cyberelf.com

At 04:19 PM 7/27/00 +0200, you wrote:
>Hi
>
>I get this in my mail.log when using cfmail to send emails through my mail 
>server.
>"Error","TID=2540","07/27/00","16:05:24","Failed to send the spooled mail 
>file, C:\CFUSION\MAIL\spool\7B9.cfmail. SMTP server replied "See 
>http://pobox.com/~djb/docs/smtplf.html." Moved file to 
>C:\CFUSION\MAIL\undelivr\7BB.cfmail."
>
>As you can see by reading the document at 
>http://pobox.com/~djb/docs/smtplf.html cf is sending a bare linefeed which 
>is "a bad thing"(tm).
>Any comments on this from you cf-gurus?
>
>//Nille
>
>---------------------------------------------------------------------------
---
>Archives: http://www.mail-archive.com/[email protected]/
>To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
>
>
C Y B E R E L F  I N C.
Web Hosting * Programming * Web Site Development
(813) 991-7979 * http://www.cyberelf.com
----------------------------------------------------------------------------
--
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to