Notes |
(0029832)
hernan (developer)
27-07-07 14:50
|
Mm, nice find. No there isn't throttle when importing and sending confirmation emails. Right now is only when processing the queue, but will we good to implement this in the next version (2.11) |
|
(0029839)
timeskipper (reporter)
27-07-07 20:02
|
In the mean time I did this:
- edit admin/import1.php
- find the line:
sendMail($email, getConfig("subscribesubject"), $subscribemessage,system_messageheaders(),$envelope);
- add this right after:
if (MAILQUEUE_THROTTLE) {
sleep(MAILQUEUE_THROTTLE);
}
But in config/config.php, MAILQUEUE_THROTTLE should be defined.
This modification will add a delay of MAILQUEUE_THROTTLE seconds between each mail sent.
For me it is working as I expected.
Will look forward to trying the next version. |
|
(0030017)
hernan (developer)
02-08-07 16:51
|
Ok, I have added this trick to the import1 and import2.
If you want you can check it out from cvs |
|