Can't send 2 mails in 1 min

Hello! I need to send 1 mail in 30 seconds.
My config.php

define(‘MAILQUEUE_BATCH_SIZE’,2);
define(‘MAILQUEUE_BATCH_PERIOD’,60);
define(‘MAILQUEUE_THROTTLE’,30);
define(‘MAILQUEUE_AUTOTHROTTLE’,30);
define(‘USE_DOMAIN_THROTTLE’,1);
define(‘DOMAIN_BATCH_SIZE’,1);
define(‘DOMAIN_BATCH_PERIOD’,120);
define(‘DOMAIN_AUTO_THROTTLE’, 1);
define(‘MAX_PROCESSQUEUE_TIME’, 0);
But
phpList version 3.2.4 (c) 2000-2016 phpList Ltd, http://www.phplist.com
phpList - Started [0.0053150000] (91)
phpList - Processing has started, [0.0016460000] (94)
phpList - One campaign to process. [0.0132330000] (96)
phpList - Processing message 7 [0.2747310000] (124)
phpList - Looking for subscribers [0.0142350000] (129)
phpList - Found them: 7 to process [0.0230160000] (135)
phpList - sent 1 ETA Sat 20 Feb 15:41 sending 7413 msg/hr
phpList - sent 2 ETA Sat 20 Feb 15:41 sending 11334 msg/hr
phpList - sent 3 ETA Sat 20 Feb 15:41 sending 13048 msg/hr
phpList - sent 4 ETA Sat 20 Feb 15:41 sending 10061 msg/hr
phpList - sent 5 ETA Sat 20 Feb 15:41 sending 7520 msg/hr
phpList - sent 6 ETA Sat 20 Feb 15:41 sending 8505 msg/hr
phpList - sent 7 ETA Sat 20 Feb 15:41 sending 2836 msg/hr
phpList - Processed 7 out of 7 subscribers [8.5562110000] (274)
phpList - It took 09 seconds to send this message [0.1846430000] (289)
phpList - Script stage: 5 [0.0019120000] (292)
phpList - 7 messages sent in 9.07 seconds (2776 msgs/hr) [0.0011610000] (295)
phpList - Finished this run [0.0023420000] (299)

Whats wrong with it?

Please, i steel need help with it :cry:

In your original post the results you showed are not consistent with the config settings. You might be editing the wrong file.

If you want simply to send one email every 30s then these values should work. Note that you don’t want to use autothrottle nor domain throttle.

define('MAILQUEUE_BATCH_SIZE',0);
define('MAILQUEUE_BATCH_PERIOD',60);
define('MAILQUEUE_THROTTLE',30);
define('MAILQUEUE_AUTOTHROTTLE',0);
define('USE_DOMAIN_THROTTLE',0);
define('DOMAIN_BATCH_SIZE',1);
define('DOMAIN_BATCH_PERIOD',120);
define('DOMAIN_AUTO_THROTTLE', 0);