Page 1 of 1

task timeout to 0

Posted: Mon Feb 23, 2015 10:41 am
by stijnvan
Version of script: 2.6

Write your message below:

i cant save the task timeout time for pop3 fetching to 0, always receive 15.
other values can be saved.

Re: task timeout to 0

Posted: Mon Feb 23, 2015 11:21 am
by Klemen
I would recommend keeping it at least a small positive value to prevent multiple tasks running a once for the same POP3 account.

But to disable, in admin_settings_save.php find

Code: Select all

1, 1440, 15
and change it to

Code: Select all

0, 1440, 15
That should allow you to save as 0

(first value is minimum allowed, second is maximum allowed, third is default)

Re: task timeout to 0

Posted: Tue Feb 24, 2015 6:30 am
by stijnvan
thx !