Enterprise does have a mail features that Professional does not.

- Maintains connections to SMTP servers

- Multithreaded delivery

- Backup mail servers

- High throughput of messages

We will not expose the batch processing in Professional to admin control.
It is what it is.  If you want more control, you need Enterprise.

You get what you pay for....

--
Tom Jordahl
Macromedia Server Development

-----Original Message-----
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]
Sent: Friday, June 11, 2004 4:02 PM
To: CF-Talk
Subject: RE: Slow Down CFmail?

One more question Tom,

How does each batch get sent out?

Does CF open a new connection to the mail server per message? If so, does CF
make multiple connections to the mail server at the same time?

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
  Vivid Media
  [EMAIL PROTECTED]
  www.vividmedia.com
  608.270.9770

  _____  

From: Mark W. Breneman [mailto:[EMAIL PROTECTED]
Sent: Friday, June 11, 2004 2:51 PM
To: CF-Talk
Subject: RE: Slow Down CFmail?

That is VERY good to know.  Thank you.

I will also post this in cfwish list. Would it be possible in future
versions of CF to have the ability to control this via xml config file OR CF
Admin?

Do the "features" list for Professional Vs. Enterprise state that the cf
mail is faster in the enterprise version?

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
  Vivid Media
  [EMAIL PROTECTED]
  www.vividmedia.com
  608.270.9770

  _____  

From: Tom Jordahl [mailto:[EMAIL PROTECTED]
Sent: Friday, June 11, 2004 1:46 PM
To: CF-Talk
Subject: RE: Slow Down CFmail?

Mark,

CFMX Professional has limits on the number of messages it will deliver when
the spooler runs.  The formula in CFMX 6.1 is:

        int batch_size = 35;

        if (size > 100)

        {

            batch_size = size / (int)Math.log ((double)size);

            if (batch_size > 1000) batch_size = 1000;

            if (batch_size < 35) batch_size = 35;

        }

There are no external tweaks to this calculation.

CFMX Enterprise goes flat out till *all* of the messages are delivered, and
then it will go to sleep for the spool interval.

--
Tom Jordahl
Macromedia Server Development

-----Original Message-----
From: Mark W. Breneman [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 10, 2004 2:56 PM
To: CF-Talk
Subject: RE: Slow Down CFmail?

The mail server is GMS (Gordano Messaging Server) http://www.ntmail.co.uk/
We contacted the makers and they told us that the "pro version" (250 user)
we have will slow down sending mail after a Approx, 5000 messages per day
have been reached. (I do not remember the exact number of messages) If we
upgraded to the enterprise version we would not see the slowdown. Even
though it would be just a SN that we would plug-in to our existing server to
make the server the enterprise version. : - (

The solution found at http://tutorial256.easycfm.com/ would work very well,
(in fact I am using something like that for another client.) But, I have
several clients mail list that I can't spend the time on rebuilding. I wish
I could.

I think tweaking something like the spooler frequency in the CFADMIN is what
I am looking for.

Does anyone know how many messages the spooler will take each time it checks
for new messages? Can that be tweaked in one of the xml config files?

Mark W. Breneman
-Cold Fusion Developer
-Network Administrator
  Vivid Media
  [EMAIL PROTECTED]
  www.vividmedia.com
  608.270.9770

  _____

  _____

  _____

  _____
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Reply via email to