I do not know why,,,,, but I am selecting a few forums in "Don't include videos from these boards:" and changes are not saved at all...
Any idea?
It's caused by a bug in the 2.0.8->2.0.9 patch - see HERE for description and fix.
Oh, Thanks!
I have erased that 1st line in the ManageServer file, then upload it... but I do not know if it is working properly... the select boards (to be ignored) should remain selected after saving it?Oooops, my bad... erased "$context['config_vars'][$config_var[1]]['name'] .= '[]';" too by mistake

It is alive! thanks a lot HoverClub
Ohhhh, BTW... I am using simplesef, and the "[Delete a recipient from the mailing list.]" do not work properly... it is redirecting to main admin page...
Should I add some action to the advanced simplesef section?
BTW2, the mod queries the DB for each news sent? can this cause a possible server hammering?
SOLVED
BTW3, in our forum it shows the monthly option as default... can be this changed to weekly for example? I am not so sure where to change here (btw, we added a daily option): <input type="submit" class="button_submit" name="subscribe" value="' . $txt['newsubscribe_mod_subscribe'] .'"/>' .
$txt['newsubscribe_mod_daily'] . '<Input type="radio" name ="period" value="1"' . (($context['user']['newsltr']['period'] == 1) ? ' checked="checked"' :'') . '>' .
$txt['newsubscribe_mod_week'] . '<Input type="radio" name ="period" value="7"' . (($context['user']['newsltr']['period'] == 7) ? ' checked="checked"' :'') . '>' .
$txt['newsubscribe_mod_fort'] . '<input type="radio" name ="period" value="14"' . (($context['user']['newsltr']['period'] == 14) ? ' checked="checked"' :'') . '>' .
$txt['newsubscribe_mod_month'] . '<input type="radio" name ="period" value="30"' . ((empty($context['user']['newsltr']['period']) OR $context['user']['newsltr']['period'] == 30) ? ' checked="checked"' : '') . '>';
It is made by the "something OR anotherthing" of the last line?
YES

Here we changed it to daily as default
<input type="submit" class="button_submit" name="subscribe" value="' . $txt['newsubscribe_mod_subscribe'] .'"/>' .
$txt['newsubscribe_mod_daily'] . '<Input type="radio" name ="period" value="1"' . ((empty($context['user']['newsltr']['period']) OR $context['user']['newsltr']['period'] == 1) ? ' checked="checked"' :'') . '>' .
$txt['newsubscribe_mod_week'] . '<Input type="radio" name ="period" value="7"' . (($context['user']['newsltr']['period'] == 7) ? ' checked="checked"' :'') . '>' .
$txt['newsubscribe_mod_fort'] . '<input type="radio" name ="period" value="14"' . (($context['user']['newsltr']['period'] == 14) ? ' checked="checked"' :'') . '>' .
$txt['newsubscribe_mod_month'] . '<input type="radio" name ="period" value="30"' . (($context['user']['newsltr']['period'] == 30) ? ' checked="checked"' : '') . '>';