The difference is that FM2b3 parses MailFrom to create the reply address a la:

         <cfquery name="getEddr" datasource="#iMS#" dbtype="ODBC">
         select mailfrom, filename from mail
         where messageID=#url.messageid#
         </cfquery>
         <cfif find("<",getEddr.mailfrom) and find(">",getEddr.mailfrom) >
                 <cfset pos=find("<",getEddr.mailfrom)>
                 <cfset 
eddress=mid(trim(getEddr.mailfrom),pos+1,len(getEddr.mailfrom)-pos-1)>
         <cfelse>
                 <cfset eddress=getEddr.mailfrom>
         </cfif>
         <cfoutput><cfset savedto=eddress></cfoutput>


  whereas FM1.01 uses ReplyTo as the reply address.  But I notice my 
database for FM2 does not have any ReplyTo's in it for this mail.  (Both in 
writemessage.cfm)

In the above FM2 parsing, I assume it will suffice to test for and also 
remove any characters like "(paul smith)" from getEddr.mailfrom.  Will this 
cleanup suffice?  Or are there more options to consider?

best,  paul

At 02:24 PM 7/17/02 -0400, you wrote:
>Yes, sounds like an FM2 quirk.
>
>regards,
>
>Howie
>
>----- Original Message -----
>From: <[EMAIL PROTECTED] (paul smith)>
>To: "inFusion Support List" <[EMAIL PROTECTED]>
>Sent: Wednesday, July 17, 2002 2:16 PM
>Subject: Re: [iMS] Microset FusionMail 2 beta 3 Problem
>
>
> > It turns out the problem is that the addressee in a reply is written as:
> >
> > [EMAIL PROTECTED] (paul smith)
> >
> > Removing the "(paul smith)" and the reply is sent fine.
> >
> > I assume this must be a FM2b3 issue/bug/feature. Right?
> >
> > best,  paul
>
>
==^=======================================================
     This list server is Powered by iMS
   "The Swiss Army Knife of Mail Servers"
   --------------------------------------
To leave this list please complete the form at 
http://www.coolfusion.com/iMSSupport.cfm
Need an iMS Developer license?  Sign up for a free license here:
http://www.coolfusion.com/iMSDevelopers.cfm
List archives: http://www.mail-archive.com/infusion-email%40eoscape.com/
Note: You are subscribed as [email protected]
==^=======================================================


Reply via email to