The ability to set up forwards and pop accounts is controlled by cfml and not by iMS.
So, what you would need to do is
have forwarding set up in your cfml. We are using a modified version of FusionMail
here that we added forwarding to.
Basically, you would add the forwards to your rcpt template. Our template looks
something like:
<!--- check forwarding --->
<cfset AllFwds=1>
<cfset fwdlist="">
<cfoutput query="getuser">
<cfif find("@",forward) gt 0>
<cfif fwdlist is "">
<cfset fwdlist=forward>
<cfelse>
<cfset fwdlist=fwdlist & "," & forward>
</cfif>
<cfelse>
<cfset Allfwds=0>
</cfif>
</cfoutput>
<cfoutput>fwdlist=#fwdlist#</cfoutput>
<cfif fwdlist neq "">
<cfoutput>recipients=#fwdlist#</cfoutput>
</cfif>
<cfif AllFwds is 1>
result=relay
<cfabort>
</cfif>
This code uses a previous query which contains a comma-delimited list of forward
addresses (we added this column to our
database). We are currently working on a completely new version of FusionMail which
is due to be released prior to the
Macromedia Devcon in October. There will be forwarding facilities built in as well as
a completely new webmail gui.
HTH,
Howie
----- Original Message -----
From: "Larry Juncker" <[EMAIL PROTECTED]>
To: "inFusion Support List" <[EMAIL PROTECTED]>
Sent: Thursday, August 29, 2002 11:31 AM
Subject: Re: [iMS] Replicatioon of Sendmail folders to iMSMail
> It basically sets up a folder in the sendmail queue as such:
>
> machine/sendmail/spool
>
> Any account that has a forward then has a folder in this spool folder that
> when you open it up, it has the forward address in a text file called
> forward.txt
>
> I have written a parser for this folder which will return a comma delimited
> list of all accounts and forwards, the format as such:
>
> accountname~[EMAIL PROTECTED],[EMAIL PROTECTED] etc
>
> This tells me the account name and the forward if one exists.
>
> If there is not a forward for an account then there is a text file with no
> extension created in this spool folder which contains ANY email for this
> account which has not already been pulled via pop.
>
> I hope this helps some.
>
>
> ----- Original Message -----
> From: "Howie Hamlin" <[EMAIL PROTECTED]>
> To: "inFusion Support List" <[EMAIL PROTECTED]>
> Sent: Thursday, August 29, 2002 10:18 AM
> Subject: Re: [iMS] Replicatioon of Sendmail folders to iMSMail
>
>
> > I'm not familiar with the workings of SendMail. Could you send me some
> details and examples? If it's a lot of stuff
> > then send it to me off-list and I'll take a look at it and let you know.
> >
> > Thanks,
> >
> > Howie
> >
> > ----- Original Message -----
> > From: "Larry Juncker" <[EMAIL PROTECTED]>
> > To: "inFusion Support List" <[EMAIL PROTECTED]>
> > Sent: Thursday, August 29, 2002 11:11 AM
> > Subject: [iMS] Replicatioon of Sendmail folders to iMSMail
> >
> >
> > > Howie;
> > >
> > > Is there a way that I can copy the SendMail folders from our NT machine
> to
> > > be used in any way with the SMTP and POP portion of iMSMail so that I
> can do
> > > away with the Sendmail program all together?
> > >
> > > Or do I need to create all of these entires by hand?
> > >
> > > Thanks
> > > Larry
> > >
==^=======================================================
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]
==^=======================================================