Just set up the domain in iMS as a "forward domain" if you're using FusionMail.  Then, 
iMS will store and forward for that domain.
Just make sure that the DNS servers that iMS is using do not list iMS as being in the 
MX for the domain or a mail loop will occur.
In your templates if you predefine an MX for the domain and then relay with the MX 
prefilled then that is even better (FusionMail/1
does not have this functionality) but it would be something like the following 
modified FusionMail code from RCPT.CFM:

<!--- here we can accept relay mail for a remote user if we want --->
      <cfquery name="getrelay" datasource="iMS">
         select domains.domainid, domains.mx from domains inner join domainaliases on 
domains.domainid=domainaliases.domainid
            where domainaliases.domain='#todomain#' and domains.domaintype=2
      </cfquery>

      <cfif getrelay.recordcount gt 0>
         result=relay
<cfoutput>mx=#getrelay.mx#</cfoutput>
      <cfelse>

Notes:

The MX column needs to be added to the database and se tto a comma-delimited list of 
the primary mail servers of the domain.

Regards,

Howie

----- Original Message -----
From: <[EMAIL PROTECTED] (paul smith)>
To: "inFusion Support List" <[EMAIL PROTECTED]>
Sent: Monday, December 03, 2001 4:46 PM
Subject: Re: [iMS] Secondary Mail Servers


> Well, I was thinking of using my iMS server as a secondary for a mail server.
>
> What do I do then?
>
> 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