Nice 1 Alan, will give them a whirl

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

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 am i misunderstanding how it works would I have to
run two seperate servers if i wanted two instances.

Thanks

Alex

On Jul 12, 4:10 am, "Alan Williamson (aw2.0 cloud experts)"
<[email protected]> wrote:
> Alex,
>
> I have formalized a couple of new functions that you can use with the
> cfsmtp plugin:
>
> http://openbd.org/manual/?/function/mailwrite
> <http://openbd.org/manual/?/function/mailread>
>
> http://openbd.org/manual/?/function/mailread
>
> This will get you where you need to go.  Allowing you to easily capture
> email coming in, save them to disk, and process them later.
>
> Available now from the download site
>
> Alan Williamson (aw2.0 cloud experts) wrote:
>
>
>
> > There isn't a CFML function, but i see where there is a function in my
> > libraries i can expose.
>
> > I will do this evening and give you a couple of functions to easily do
> > this.- Hide quoted text -
>
> - Show quoted text -

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

Reply via email to