また仕様変更されたので

2chの書き込み確認ページのformにaccept-charset="Shift_JIS"が追加されたようで
formの置換ができてないようです。 

というわけで、書き込みができず


修正方法が書いてあったので修正
post.php 746行目を

if (!preg_match('{^\\.\\./test/(sub)?bbs\\.cgi(?:\\?guid=ON)?$}', $form->getAttribute('action'), $matches)) {

から

if (!preg_match('{^\\.\\./test/(sub)?bbs\\.cgi(?:\\?guid=ON)?$?(?: accept-charset="?Shift_JIS"?)?}', $form->getAttribute('action'), $matches)) {