Hi Guys.

Quick question is there a limit that says only one CFSMTP instance
can
be running within a single Bluedragon instance

My code below wraps the cfsmtp functionality

I'm effectively trying to do the following


<cfscript>
oSMTPListener1=CreateObject("component","services.smtplistener").init(8025)­;
oSMTPListener1.start();
oSMTPListener2=CreateObject("component","services.smtplistener").init(8026)­;
oSMTPListener2.start();
</cfscript>


<cfdump var="#oSMTPListener1.getStatus()#">
<cfdump var="#oSMTPListener2.getStatus()#">


My CFC just wraps the CFSMTP tag effectively so i'm trying to do


<cfsmtp action="start" port="8025" cfcmail="services.smtplistener">
<cfsmtp action="start" port="8026" cfcmail="services.smtplistener">


Which I would think generates two instances of the servlet listening
on two ports.


It doesn't seem to, it seems to stop on 8025 and start on 8026

Am i misunderstanding how it works would I have to run two seperate
instances of open bd in order to achieve this ?

Thanks

Alex


On Jul

-- 
official tag/function reference: http://openbd.org/manual/
 mailing list - http://groups.google.com/group/openbd?hl=en

Reply via email to