Send mail very slowly

Hi all, I have installed phplist version 3.5.6 in an EC2 instance ( debian 10) on AWS with Aurora DB. the instance and DB work fine but the mail send very slowly, this is my config:

define(‘PHPMAILER_SMTP_DEBUG’, 0);
define(‘USE_ADMIN_DETAILS_FOR_MESSAGES’, 0);
define(‘EMAILTEXTCREDITS’, 1);
define(‘PAGETEXTCREDITS’, 1);
define(‘NOSTATSCOLLECTION’, 1);
define(‘MAILQUEUE_BATCH_SIZE’,5000);
define(‘MAILQUEUE_BATCH_PERIOD’,60);
define(‘MAILQUEUE_AUTOTHROTTLE’,0);
define(‘MAILQUEUE_THROTTLE’,0);
define(‘MAILQUEUE_AUTOTHROTTLE’,0);
define(‘USE_DOMAIN_THROTTLE’,1);
Could you tell me if it is ok or how can i improve it?
Thanks so much

Please confirm thsat the above is in your config.php file, not config_extended.php file initially.

Hi Dragonrider. Yes, it is my config.php

Using domain throttle slows the sending rate in an unpredictable way.
Also, use a cron job to process the queue, not through the browser.

What about AUTOTHROTTLE? I have an issue where all campaigns are not sending at the specified rate. I also cannot seem to export a specified segment. (I.e Campaign Activity>did not open>Any Campaigns in the last month)

The segment is about 32k records.

define(‘DEFAULT_MESSAGEAGE’, 15768000);
define(‘MAILQUEUE_BATCH_SIZE’, 50000);
define(‘MAILQUEUE_BATCH_PERIOD’, 3600);
define(‘MAILQUEUE_AUTOTHROTTLE’, 1);

Any thoughts?

Any help with this is greatly appreciated.