I found a work-around.
First in the settings i checked:
"When editing an item, display choice of next page as a radio group rather than as submit buttons"
Then when i clicked capture Inbox item all the time Someday was checked. Even when i unchecked it on an item, it stayed checked some how.
So i went into the code of item.php and i changed line from this:
<input type='checkbox' name='isSomeday' id='isSomeday' value='n' title='Places item in Someday file'<?php if ($values['isSomeday']==='y') echo " checked='checked'";?> />
To this:
<input type='checkbox' name='isSomeday' id='isSomeday' value='n' title='Places item in Someday file' />
Now the Someday checkbox is NEVER checked unless i specify it
