Hi,
Thanks,
Jose
ow_plugins/notifications/bol/service.php
Change line in public function findUserIdListForSend( $count, $period = null )
$period = 24 * 3600; for anything else like $period = 600; for 10 minutes
In some accounts they are getting the notifications in the spam folder.
I guess you already have checked that! Right?
Jose
Did you checked the SMTP connection from the adming pages?
You might need to have SSH priviledges for this. It depends on what server your are using.
The activity notifications have been fixed in my site right after I changed the code that I've mentioned before. Now the users are happy!!!
Enjoy!!!
This code can no longer be found in Oxwall 1.5.3.
Could anyone tell me where to look for in that version of Oxwall?
I would like to reduce the default wait period for sending emails to 60 minutes instead of 2 days...
Thank you!
So here's the function:
public function fillSendQueue()
{
if ( $this->service->getSendQueueLength() == 0 )
{
$this->service->fillSendQueue(24 * 3600);
}
}
If my understanding of this is right, then notifications set to "Automatically" will go out after 24 hours, not 48, right?
And if I wanted to reduce that waiting period to 1 hour, I could simply change the last line to:
$this->service->fillSendQueue(1 * 3600);
is that right?
Thanks!