host = "mail.momoso-net.com"; // ユーザーID $this->user = "blogfarmmail"; // パスワード $this->pass = "4qper4293jdvxk5z"; /*-- アイテムを追加するNucleus情報のデフォルト--*/ // メールでアイテムを追加するNucleusユーザー名 $this->bloguser = "blogfarmmail"; // 上記Nucleusユーザーのパスワード $this->blogpassword = "4qper4293jdvxk5z"; // メールでアイテムを追加するblogのID $this->blogid = 1; // メールでアイテムを追加するカテゴリの名前 $this->categoryname = "General"; // 添付メールだけを記録する?Yes=1 No=0(Noの時はすべてのメールを追加) $this->imgonly = 0; // 直接blogにアイテムを追加する?Yes=1 No=0(Noの時はドラフト追加) $this->DefaultPublish = 1; /*-- メールのタイトルに各種オプションを含める場合の設定--*/ // オプション記述開始のの区切り文字 $this->optionsKeyword = '@'; // オプションでblogidを指定する場合のキー (小文字で指定、メール入力は大文字でOK) $this->blogKeyword = 'b'; // オプションでカテゴリを指定する場合のキー (小文字で指定、メール入力は大文字でOK) $this->categoryKeyword = 'c'; // オプションでストレートにpublish指定する場合のキー (小文字で指定、メール入力は大文字でOK) $this->publishKeyword = 's'; //ストレートのsです。 // 投稿許可アドレス(ログに記録する) $this->accept = array('farm@momoso-net.com','totokaka123-321akakotot@docomo.ne.jp'); // 件名がないときの題名 $this->nosubject = "(タイトルなし)"; // 件名がないときの題名 $this->imail = "(モブログ)"; // htmlメールの場合に除去しないタグ //そのままアイテム本文に記録されますが、blogの設定が改行文字置換onの場合は再編集で
$this->no_strip_tags = '<hr><h1><h2><h3><h4><h5><h6><div><p><pre><sup><ul><ol><br><dl><dt><table><caption><tr><li><dd><th><td><a><area><img><form><input><textarea><button><select><option>'; // 最大添付量(バイト・1ファイルにつき)※超えるものは保存しない $this->maxbyte = 100000; //100KB // 対応MIMEタイプ(正規表現)Content-Type: image/jpegの後ろの部分。octet-streamは危険かも $this->subtype = "gif|jpe?g|png|bmp|octet-stream|x-pmd|x-mld|x-mid|x-smd|x-smaf|x-mpeg"; // 保存しないファイル(正規表現) $this->viri = '.+\.exe$|.+\.zip$|.+\.pif$|.+\.scr$'; /*-- サムネイル--*/ //サムネイルを使用する? Yes=1 No=0(GDライブラリ利用不可の場合は自動判定) $this->thumb_ok = 1; //サムネイルの大きさ(これ以上の大きい画像はjpg,pngのサムネイル作成) $this->W = 120; $this->H = 120; //サムネイルを作る対象画像(サムネイルを作成しない場合は、値を空にしてください) $this->thumb_ext = '.+\.jpe?g$|.+\.png$'; /*-- サムネイル作成できない(orしない)場合)--*/ //アイテム内に表示する画像の最大横幅(imgタグ内のwidthの値) $this->smallW = 120; /*-- ここから先は自動生成--*/ // ★画像保存ディレクトリ // echo $DIR_MEDIA."<br />\n"; $mem = new MEMBER(); if ($mem->login($this->bloguser, $this->blogpassword)){ $this->memid = $mem->getID(); // echo $this->memid; // return ; }else{echo "設定エラー:Nucleusユーザー名又はパスワードが違います。ログインできません";} // $this->tmpdir = "/hsphere/local/home/nakahara/xx.nakahara21.net/media/1/"; $this->tmpdir = $DIR_MEDIA.$this->memid.'/'; if(!is_writable($this->tmpdir)){ echo "設定エラー:medeia/".$this->memid."/ディレクトリが存在しないか、書き込み可能になっていません"; } //★サムネイル保存ディレクトリ // $this->thumb_dir = "/hsphere/local/home/nakahara/xx.nakahara21.net/media/1/"; $this->thumb_dir = $DIR_MEDIA.$this->memid.'/'; } // コマンドー送信!! function _sendcmd($sock,$cmd) { //echo "000".$this->sock; fputs($sock, $cmd."\r\n"); $buf = fgets($sock, 512); if(substr($buf, 0, 3) == '+OK') { return $buf; } else { die("$cmd => $buf"); } return false; } /* ヘッダと本文を分割する */ function mime_split($data) { $part = split("\r\n\r\n", $data, 2); $part[1] = ereg_replace("\r\n[\t ]+", " ", $part[1]); return $part; } /* メールアドレスを抽出する */ function addr_search($addr) { if (eregi("[-!#$%&\'*+\\./0-9A-Z^_`a-z{|}~]+@[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+", $addr, $fromreg)) { return $fromreg[0]; } else { return false; } } /* 文字コードコンバートauto→SJIS */ function convert($str) { if (function_exists('mb_convert_encoding')) { /*return mb_convert_encoding($str, "EUC", "auto");*/ return mb_convert_encoding($str, "EUC-JP", "ASCII,JIS,UTF-8,EUC-JP,SJIS"); } elseif (function_exists('JcodeConvert')) { return JcodeConvert($str, 0, 1); } return true; } function parseToken($line,$keyword) { $words = explode($keyword,$line); $words = explode('=',$words[1]); $word = explode('&',$words[1]); return $word[0]; } function thumb_create($src, $W, $H, $thumb_dir="./"){ // 画像の幅と高さとタイプを取得 $size = GetImageSize($src); switch ($size[2]) { case 1 : return false; break; case 2 : $im_in = @ImageCreateFromJPEG($src); break; case 3 : $im_in = ImageCreateFromPNG($src); break; } if (!$im_in) die("GDをサポートしていないか、ソースが見つかりません<br>phpinfo()でGDオプションを確認してください"); // リサイズ if ($size[0] > $W || $size[1] > $H) { $key_w = $W / $size[0]; $key_h = $H / $size[1]; ($key_w < $key_h) ? $keys = $key_w : $keys = $key_h; $out_w = $size[0] * $keys; $out_h = $size[1] * $keys; } else { $out_w = $size[0]; $out_h = $size[1]; } // 出力画像(サムネイル)のイメージを作成し、元画像をコピーします。(GD2.0用) $im_out = ImageCreateTrueColor($out_w, $out_h); $resize = ImageCopyResampled($im_out, $im_in, 0, 0, 0, 0, $out_w, $out_h, $size[0], $size[1]); // ここでエラーが出る方は下2行と置き換えてください。(GD2.0以下 //$im_out = ImageCreate($out_w, $out_h); //ImageCopyResized($im_out, $im_in, 0, 0, 0, 0, $out_w, $out_h, $size[0], $size[1]); // サムネイル画像をブラウザに出力、保存 $filename = substr($src, strrpos($src,"/")+1); $filename = substr($filename, 0, strrpos($filename,".")); $this->thum_filename = $filename . "-small.jpg"; ImageJPEG($im_out, $this->thumb_dir.$this->thum_filename); //jpgサムネイル作成 // ImagePNG($im_out, $this->thumb_dir.$filename."-small.png"); //pngサムネイル作成 // 作成したイメージを破棄 ImageDestroy($im_in); ImageDestroy($im_out); } function doSkinVar($skinType) { $this->blogByMail(); // echo "<hr />".'Hello World!'; } //end of function doSkinVar($skinType) function blogByMail(){ global $manager, $blog, $CONF; $sock = fsockopen($this->host, 110, $err, $errno, 10) or die("サーバーに接続できません"); $buf = fgets($sock, 512); if(substr($buf, 0, 3) != '+OK') die($buf); $buf = $this->_sendcmd($sock, "USER $this->user"); $buf = $this->_sendcmd($sock, "PASS $this->pass"); //echo $buf; $data = $this->_sendcmd($sock, "STAT");//STAT -件数とサイズ取得 +OK 8 1234 sscanf($data, '+OK %d %d', $num, $size); //echo $data; if ($num == "0") { $buf = $this->_sendcmd($sock, "QUIT"); //バイバイ fclose($sock); //echo "no mail"; } else{ // メールがある時の処理 // 件数分 for($i=1;$i<=$num;$i++) { $line = $this->_sendcmd($sock, "RETR $i");//RETR n -n番目のメッセージ取得(ヘッダ含) while (!ereg("^\.\r\n",$line)) {//EOFの.まで読む $line = fgets($sock,512); $dat[$i].= $line; } $data = $this->_sendcmd($sock, "DELE $i");//DELE n n番目のメッセージ削除 } $buf = $this->_sendcmd($sock, "QUIT"); //バイバイ fclose($sock); //print_r($dat); for($j=1;$j<=$num;$j++) { //メールの件数分ループで内容を取り出す $write = true; $subject = $from = $text = $atta = $part = $attach = ""; list($head, $body) = $this->mime_split($dat[$j]); //ヘッダと本文を分割する echo "<hr />"; // echo "\$head:<br />\n".$head."<br />\n"; // echo "\$body:<br />\n".$body."<br />\n"; // 日付の抽出---------- eregi("Date:[ \t]*([^\r\n]+)", $head, $datereg); $now = strtotime($datereg[1]); if ($now = -1) $now = time(); //1061340376 // echo "\$now:<br />\n".$now."<br />\n"; // サブジェクトの抽出 if (eregi("\nSubject:[ \t]*([^\r\n]+)", $head, $subreg)) { $subject = $subreg[1]; while (eregi("(.*)=\?iso-2022-jp\?B\?([^\?]+)\?=(.*)",$subject,$regs)) {//MIME Bデコード $subject = $regs[1].base64_decode($regs[2]).$regs[3]; } while (eregi("(.*)=\?iso-2022-jp\?Q\?([^\?]+)\?=(.*)",$subject,$regs)) {//MIME Bデコード $subject = $regs[1].quoted_printable_decode($regs[2]).$regs[3]; } $subject = htmlspecialchars($this->convert($subject)); // echo "◆題名そのまま\$subject:<br />\n".$subject."<br />\n"; //オプション分割 if (preg_match('/'.$this->optionsKeyword.'/', $subject)) { list($subject,$option) = spliti($this->optionsKeyword,$subject,2); // echo "◆オプション除いた\$subject:<br />\n".$subject."<br />\n"; // echo "◆オプション抽出\$option:<br />\n".$option."<br />\n"; $option = strtolower($option); // echo "◆変換後\$option:<br />\n".$option."<br />\n"; if (preg_match('/'.$this->blogKeyword.'/', $option)) { $this->blogid = $this->parseToken($option,$this->blogKeyword); } if (preg_match('/'.$this->categoryKeyword.'/', $option)) { $this->categoryname = $this->parseToken($option,$this->categoryKeyword); } if (preg_match('/'.$this->publishKeyword.'/', $option)) { $this->DefaultPublish = $this->parseToken($option,$this->publishKeyword); } } } // 送信者アドレスの抽出 if (eregi("From:[ \t]*([^\r\n]+)", $head, $freg)) { $from = $this->addr_search($freg[1]); } elseif (eregi("Reply-To:[ \t]*([^\r\n]+)", $head, $freg)) { $from = $this->addr_search($freg[1]); } elseif (eregi("Return-Path:[ \t]*([^\r\n]+)", $head, $freg)) { $from = $this->addr_search($freg[1]); } // echo "\$from:<br />\n".$from."<br />\n"; // 受付アドレス if (in_array ($from, $this->accept)) { // echo "受け付けます"; }else{ // echo "拒否します"; $write = false; } // マルチパートならばバウンダリに分割 if (eregi("\nContent-type:.*multipart/",$head)) { eregi('boundary="([^"]+)"', $head, $boureg); $body = str_replace($boureg[1], urlencode($boureg[1]), $body); $part = split("\r\n--".urlencode($boureg[1])."-?-?",$body); if (eregi('boundary="([^"]+)"', $body, $boureg2)) {//multipart/altanative $body = str_replace($boureg2[1], urlencode($boureg2[1]), $body); $body = eregi_replace("\r\n--".urlencode($boureg[1])."-?-?\r\n","",$body); $part = split("\r\n--".urlencode($boureg2[1])."-?-?",$body); } } else { $part[0] = $dat[$j];// 普通のテキストメール } //print_r($part); foreach ($part as $multi) { list($m_head, $m_body) = $this->mime_split($multi); $m_body = ereg_replace("\r\n\.\r\n$", "", $m_body); if (!eregi("Content-type: *([^;\n]+)", $m_head, $type)) continue; list($main, $sub) = explode("/", $type[1]); // echo "<br />\$type[1]: $type[1],\$sub: $sub<br />"; // 本文をデコード if (strtolower($main) == "text") { if (eregi("Content-Transfer-Encoding:.*base64", $m_head)) $m_body = base64_decode($m_body); if (eregi("Content-Transfer-Encoding:.*quoted-printable", $m_head)) $m_body = quoted_printable_decode($m_body); $text = $this->convert($m_body); $text = strip_tags($text,$this->no_strip_tags); $blog = new BLOG($this->blogid); if( $blog->getSetting('bconvertbreaks') ){ //blog設定で改行を<br />に置換onの場合 if ($sub == "html"){ //改行文字を削除、<br>タグを\nへ $text = str_replace("\r\n", "\r",$text); $text = str_replace("\r", "\n",$text); $text = str_replace("\n", "", $text); $text = str_replace("<br>", "\n", $text); } } /* else{ //Nucleusが改行文字を自動置換しない場合 if ($sub == "text"){ //テキストメールの改行を<br>に置換してやる $text = str_replace(">",">",$text); $text = str_replace("<","<",$text); $text = str_replace("\r\n", "\r",$text); $text = str_replace("\r", "\n",$text); $text = preg_replace("/\n{2,}/", "\n\n", $text); $text = str_replace("\n", "<br />", $text); } } */ } // ファイル名を抽出 if (eregi("name=\"?([^\"\n]+)\"?",$m_head, $filereg)) { $filename = trim($filereg[1]); if (eregi("(.*)=\?iso-2022-jp\?B\?([^\?]+)\?=(.*)",$filename,$regs)) { $filename = $regs[1].base64_decode($regs[2]).$regs[3]; $filename = $this->convert($filename); } // $filename = time() . "-".$filename; $filename = date(Ymd) . "-".$filename; //ファイル名の重複の可能性がある場合は上の行使用 } // echo $filename; // 添付データをデコードして保存 if (eregi("Content-Transfer-Encoding:.*base64", $m_head) && eregi($this->subtype, $sub)) { // echo "書き込み開始"; $tmp = base64_decode($m_body); if (!$filename) $filename = time().".$sub"; if (strlen($tmp) < $this->maxbyte && !eregi($this->viri, $filename)) { $fp = fopen($this->tmpdir.$filename, "w"); fputs($fp, $tmp); fclose($fp); $link = rawurlencode($filename); $attach = $filename; // echo "\$attach:<br />".$attach; //サムネイル $size = getimagesize($this->tmpdir.$filename); if($this->thumb_ok&& function_exists('ImageCreate')) { //サムネイル作成する場合 if (preg_match("/$this->thumb_ext/i",$filename)) { //サムネイル作成する拡張子の場合 if ($size[0] > $this->W || $size[1] > $this->H) { $this->thumb_create($this->tmpdir.$filename,$this->W,$this->H,$this->thumb_dir); } } } //(UPDATE 2005-02-17 Coyama : Delete !) //if(! @getimagesize($this->thumb_dir.$this->thum_filename)) //if(getimagesize($this->thumb_dir.$this->thum_filename)){$this->thumb_ok = 0;} if(! @getimagesize($this->thumb_dir.$this->thum_filename)){$this->thumb_ok = 0;} } else { $write = false; // echo "378"; } } //end 添付データをデコードして保存 } //end foreach if ($this->imgonly && $attach==""){ // echo "添付ファイルがないので書き込みません"; $write = false; } if(trim($subject)=="iMail"){ //題名がiMail $subject = $this->imail; } if(trim($subject)==""){ //題名がない場合 $subject = $this->nosubject; } // $dumydata = "<xmp>$now<>$subject<>$from<>$text<>$attach<></xmp>\n"; // echo $dumydata; if ($attach==""){ $body = $text; }else{ //添付ファイルがある場合の本文のソース if($this->thumb_ok){ //サムネイルがある場合のソース $thumb_size = getimagesize($this->thumb_dir.$this->thum_filename); //$body = '<div class="rightbox"><a href="'.$CONF['MediaURL'].$this->memid.'/'.$attach.'" target="_blank"><%image('.$this->memid.'/'.$this->thum_filename.'|'.$thumb_size[0].'|'.$thumb_size[1].'|)%></a></div>'.$text; $body = '<div class="rightbox"><a href="'.$CONF['MediaURL'].$this->memid.'/'.$attach.'" target="_blank"><img src="'.$CONF['MediaURL'].$this->memid.'/'.$this->thum_filename.'" width="'.$thumb_size[0].'" height="'.$thumb_size[1].'" alt="" /></a></div>'.$text.'<BR><BR><BR><BR>'; }else{ //サムネイルがない場合のソース if( $size[0] > $this->smallW){ //縮小表示 $smallH = round($this->smallW / $size[0] * $size[1] , 0); //$body = '<div class="rightbox"><a href="'.$CONF['MediaURL'].$this->memid.'/'.$attach.'" target="_blank"><%image('.$this->memid.'/'.$attach.'|'.$this->smallW.'|'.$smallH.'|)%></a></div>'.$text; $body = '<div class="rightbox"><a href="'.$CONF['MediaURL'].$this->memid.'/'.$attach.'" target="_blank"><img src="'.$CONF['MediaURL'].$this->memid.'/'.$attach.'" width="'.$this->smallW.'" height="'.$smallH.'" alt="" /></a></div>'.$text.'<BR><BR><BR><BR>'; }else{ //そのまま表示 //$body = '<div class="rightbox"><%image('.$this->memid.'/'.$attach.'|'.$size[0].'|'.$size[1].'|)%></a></div>'.$text; $body = '<div class="rightbox"><img src="'.$CONF['MediaURL'].$this->memid.'/'.$attach.'" width="'.$size[0].'" height="'.$size[1].'" alt="" /></div>'.$text.'<BR><BR><BR><BR>'; } } } // echo "<xmp>".$body."</xmp>"; //====================== if ($write) { // echo "アイテム追加します!!!!!!!!!"; $timestamp = $blog->getCorrectTime(); $more = ""; $this->_addDatedItem($this->blogid, $subject, $body, $more, 0, $timestamp, 0, $this->categoryname); } //====================== } //end 件数分内容を取り出す /* echo "アイテムの追加がありましたのでリロードします...."; echo "<META HTTP-EQUIV=\"refresh\" content=\"2\">"; */ } //end メールがある時の処理 } //end of function blogByMail() function _addDatedItem($blogid,$title, $body, $more,$closed, $timestamp, $future, $catname = "") { // 1. ログイン====================== $mem = new MEMBER(); if (!$mem->login($this->bloguser, $this->blogpassword)){ // echo "ログインできません"; return ; } // else{echo "ログインできました";} // 2. ブログ追加できるかチェック====================== if (!BLOG::existsID($this->blogid)) { // echo "存在しないblogです"; return ; } // else{echo "blogidはOK!";} if (!$mem->teamRights($blogid)) { // echo "メンバーではありません"; return; } // else{echo "メンバーチェックもok!";} if (!trim($body)){ // echo "空のアイテムは追加できません"; return; } // else{echo "アイテムは空じゃないです";} // 3. 値の補完====================== $blog = new BLOG($this->blogid); // カテゴリID ゲット (誤ったカテゴリID使用時はデフォを使用) $catid = $blog->getCategoryIdFromName($catname); // echo "追加するcatid".$catid; if ( $this->DefaultPublish ){ $draft = 0; }else{ $draft = 1; //ドラフト追加 // echo "ドラフトで追加します"; } if ($closed != 1) $closed = 0; //コメントを許可 // echo "\$catid:".$catid."|\$draft:".$draft."\$closed:".$closed; // 4. blogに追加====================== /* */ $store = $blog->getSetting('bconvertbreaks'); // htmlメールの場合は改行タグを入れない if ( $this->type == "html"){ $blog->setConvertBreaks(0); } $itemid = $blog->additem($catid, $title, $body, $more, $blogid, $mem->getID(), $timestamp, $closed, $draft); // echo $itemid; $blog->setConvertBreaks($store); } } ?> <div id="container"> <div class="content"> <!-- %blog(default/index,10)% --> <font color=green size=+2>毎日のごはんを美味しく食べていますか?</font><br /> <img src="skins/newgsc/images/farm_photo_sm.jpg" width="350" height="250" alt="渡部農園ファミリー" align="left"> <br /> <font size=+1>〒969-5344<br /> 福島県南会津郡下郷町大字沢田字宅地続甲25<br />   電話:0241-67-4127<br />   FAX:0241-67-2786<br /></font> <img src="skins/newgsc/images/farm_disk_sm.gif" alt="フライングディスク"> <br clear=left>   <br />   <br />   <h2>お知らせ</h2> <table><thead><tr> </tr></thead><tbody><tr> <td><center><iframe src="http://www.google.com/calendar/embed?src=farm%40momoso-net.com&ctz=Asia/Tokyo " style="border: 0" width="500" height="300" frameborder="0" scrolling="no"></iframe> <img src="http://www.momoso-net.com/~farm/media/header.gif"/> <img src="http://www.momoso-net.com/~farm/media/banner_hero_disc1.gif"/> <center></td> </tr><tr> <td>皆様、お待たせしました。 このブログでご注文ができるようになりました。右上のショッピングをクリックしてください。 お好みの品種と精米具合(白米か玄米か)を選びます。 購入方法はこちらからどうぞ! <a href="http://www.momoso-net.com/~farm/index.php?catid=38&blogid=1" title="Fram Shopping"><b>ショッピング(NEW)</b></a></td> </tr></tbody></table> <div class="newinfodiv newinfo"> <h2><font size=+1 color=green title="Read entry: もっとも新しい情報です。">最新情報</font></h2> </div> <!-- %blog(newgsc/nodate,1,メイン)% --> <div class="contenttitle"> <h2>01/14: <a href="?itemid=1318" title="Read entry: 祭の神">祭の神</a></h2> </div> <div class="contentitem"> <div class="contentitem1"> <small class="contentitemcategory"> Category: <a href="?catid=1" title="Category: General">General</a> </small> </div> <div class="contentitem2"> <small class="contentitempostedby"> Posted by: <a href="?memberid=3" title="Author: blogfarmmail">blogfarmmail</a> </small> </div> </div> <div class="contentbody"> <div class="rightbox"><a href="http://www.momoso-net.com/~farm/media/3/20110114-DVC00335.jpg" target="_blank"><img src="http://www.momoso-net.com/~farm/media/3/20110114-DVC00335-small.jpg" width="90" height="120" alt="" /></a></div>今年は来れました。<BR><BR><BR><BR> </div><br /> <!--div class="contenttitle"--> <h2><font size=+1 color=green title="Read entry: きっと素敵な情報が見つかります。">その他インフォメーション</font></h2> <!--/div--> <!-- %MultipleCategories(newgsc/newinfo,20,インフォメーション)% --> <blockquote> <ul>01/14: <a href="?itemid=1318" title="Read entry: 祭の神"><font color=black size=3>祭の神</font><li><font color=green>今年は来れました。</font></li></a></ul><ul>01/02: <a href="?itemid=1317" title="Read entry: 銀座に来ています"><font color=black size=3>銀座に来ています</font><li><font color=green>人がたくさん</font></li></a></ul><ul>01/01: <a href="?itemid=1316" title="Read entry: 明けましておめでとうございます!"><font color=black size=3>明けましておめでとうございます!</font><li><font color=green>新年あけましておめでとうございます。 新年の暦をあらためてみてみると、8のつく日は、『コメの日...</font></li></a></ul><ul>12/25: <a href="?itemid=1315" title="Read entry: Xmas present!!!!"><font color=black size=3>Xmas present!!!!</font><li><font color=green>東北リーグのホームページが完成しました!!! wata presents. これから育てていきますのでみな...</font></li></a></ul><ul>12/20: <a href="?itemid=1314" title="Read entry: Xmasプレゼント!"><font color=black size=3>Xmasプレゼント!</font><li><font color=green>トウホクリーグ参加の皆様へ 25日に素敵なプレゼントがあります。 お楽しみに!!!</font></li></a></ul><ul>12/06: <a href="?itemid=1313" title="Read entry: めちゃめちゃ綺麗です(^"><font color=black size=3>めちゃめちゃ綺麗です(^</font><li><font color=green>太陽に暖められた畑からもやが出ています。 綺麗です(^〜^)。</font></li></a></ul><ul>12/01: <a href="?itemid=1312" title="Read entry: 有機農産物講習会に来ています"><font color=black size=3>有機農産物講習会に来ています</font><li><font color=green>これから取り組む有機農産物の講習会に来ています。 県農業センター。 凄い施設です(^〜^)</font></li></a></ul><ul>11/30: <a href="?itemid=1311" title="Read entry: 餅つき練習中"><font color=black size=3>餅つき練習中</font><li><font color=green>本番に向けて練習中!</font></li></a></ul><ul>11/26: <a href="?itemid=1310" title="Read entry: すいっちにえんちゃんが来ました"><font color=black size=3>すいっちにえんちゃんが来ました</font><li><font color=green>すいっちにえんちゃんが来ました。 これから温泉! そして飲み!</font></li></a></ul><ul>11/20: <a href="?itemid=1309" title="Read entry: ふじ大人気!"><font color=black size=3>ふじ大人気!</font><li><font color=green>ガイアカップでふじを無料で食べてもらっておりますが、大人気です(^〜^)</font></li></a></ul><ul>11/19: <a href="?itemid=1308" title="Read entry: ガイアカップに来ています"><font color=black size=3>ガイアカップに来ています</font><li><font color=green>明日から静岡県富士市で開催されるクラブジュニアガイアカップの設営に来ています。 歓迎の富士山で...</font></li></a></ul><ul>11/16: <a href="?itemid=1307" title="Read entry: クリニックのおかげ"><font color=black size=3>クリニックのおかげ</font><li><font color=green>UPAに参加したバズバレッツの松野くんにいただきました。 うらは、クリニックに来ていただいたバズバレ...</font></li></a></ul><ul>11/07: <a href="?itemid=1306" title="Read entry: 秋晴れ最高です(^"><font color=black size=3>秋晴れ最高です(^</font><li><font color=green>道の駅エマットからの風景です。 最高に気持ち良いので遊びに来て下さい!</font></li></a></ul><ul>11/02: <a href="?itemid=1305" title="Read entry: ふじに蜜が入りました。"><font color=black size=3>ふじに蜜が入りました。</font><li><font color=green>嵐の中、見回りをしてふじを取ってきました。 切ると、 蜜が入りはじめました。 これなら大丈...</font></li></a></ul><ul>11/02: <a href="?itemid=1304" title="Read entry: ふじは強い!"><font color=black size=3>ふじは強い!</font><li><font color=green>昨日の夜から嵐が吹き荒れています。 心配で見回っていますが、被害はほとんどありませんでした。 ...</font></li></a></ul><ul>10/31: <a href="?itemid=1303" title="Read entry: クリニック講師、松野君UPA参戦!!!"><font color=black size=3>クリニック講師、松野君UPA参戦!!!</font><li><font color=green>いやーバズの松野君がUPAに参戦していますね。 詳しい内容は以下に載っています。 http://www.clubj...</font></li></a></ul><ul>10/30: <a href="?itemid=1302" title="Read entry: 焼きりんご"><font color=black size=3>焼きりんご</font><li><font color=green>しんごろうのあとは、焼きりんご!</font></li></a></ul><ul>10/27: <a href="?itemid=1301" title="Read entry: 初冠雪"><font color=black size=3>初冠雪</font><li><font color=green>周りの山に雪が降りました。 寒い{{(>_</font></li></a></ul><ul>10/26: <a href="?itemid=1300" title="Read entry: ヤマイモ販売中"><font color=black size=3>ヤマイモ販売中</font><li><font color=green>最初の一本です(^〜^) 今年は最高の出来のようです。 ディスクウ゛ィレッジのホームページに掲載...</font></li></a></ul><ul>10/25: <a href="?itemid=1299" title="Read entry: 金子牧場の生キャラメル"><font color=black size=3>金子牧場の生キャラメル</font><li><font color=green>しもごう町の金子牧場で生キャラメルを製造しています。 試作品を食べさせてもらいました。 口に...</font></li></a></ul> </blockquote> </div> </div> <!-- page menu --> <h2 class="hidden">Sidebar</h2> <div id="sidebarcontainer"> <!-- page menu --> <div class="sidebar navigation"> <dl class="sidebardl"> <center><div id='counter'><img src='nucleus/plugins/counter/total.gif' class='icon' title='Total' /><img src='nucleus/plugins/counter/7.gif' class='icon' title='7' /><img src='nucleus/plugins/counter/9.gif' class='icon' title='9' /><img src='nucleus/plugins/counter/8.gif' class='icon' title='8' /><img src='nucleus/plugins/counter/7.gif' class='icon' title='7' /><img src='nucleus/plugins/counter/6.gif' class='icon' title='6' /><img src='nucleus/plugins/counter/8.gif' class='icon' title='8' /> <span class='counter-detail'><img src='nucleus/plugins/counter/week.gif' class='icon' title='Week' /><img src='nucleus/plugins/counter/0.gif' class='icon' title='0' /><img src='nucleus/plugins/counter/2.gif' class='icon' title='2' /><img src='nucleus/plugins/counter/1.gif' class='icon' title='1' /> <img src='nucleus/plugins/counter/yesterday.gif' class='icon' title='Yesterday' /><img src='nucleus/plugins/counter/1.gif' class='icon' title='1' /><img src='nucleus/plugins/counter/9.gif' class='icon' title='9' /><img src='nucleus/plugins/counter/3.gif' class='icon' title='3' /> <img src='nucleus/plugins/counter/today.gif' class='icon' title='Today' /><img src='nucleus/plugins/counter/0.gif' class='icon' title='0' /><img src='nucleus/plugins/counter/2.gif' class='icon' title='2' /><img src='nucleus/plugins/counter/1.gif' class='icon' title='1' /></span> </div></center> <h3>navigation</h3> <!-- dt>ナビゲーション</dt --> <dd><a href="http://www.momoso-net.com/~farm/" title="Top">トップページ</a></dd> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=38&blogid=1" title="Fram Shopping"><b>ショッピング(NEW)</b></a></dd> <!-- archive: navigation --> <!-- archivelist: navigation --> <!-- error: navigation --> <!-- index: navigation --> <dd><a href="?blogid=1" title="Today's entry">最新情報</a></dd> <dd><a href="?archivelist=1" title="Archives">情報一覧</a></dd> <!-- item: navigation --> <!-- member: navigation --> <!-- search: navigation --> <!-- admin link, only visible if logged in --> </dl> </div> <!-- category list, not on error or member page --> <div class="sidebar categories"> <dl class="sidebardl"> <h3>Categories</h3> <!-- dt>カテゴリー</dt --> <!-- %categorylist(newgsc/index)% --> <!-- /dl --> <!-- dl class="sidebardl" --> <!-- ul style="line-height:150%;margin:5px 0px 15px 20px;padding:0px;" --> <style="line-height:150%;margin:5px 0px 15px 20px;padding:0px;"> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=1&blogid=1">General</a>(1036)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=1&blogid=1">General</a>(1036)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=22&blogid=1">米の値段と種類</a>(3)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=22&blogid=1">米の値段と種類</a>(3)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=24&blogid=1">りんごの値段と種類</a>(3)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=24&blogid=1">りんごの値段と種類</a>(3)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=23&blogid=1">送料</a>(1)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=23&blogid=1">送料</a>(1)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=25&blogid=1">特定商取引</a>(2)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=25&blogid=1">特定商取引</a>(2)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=27&blogid=1">ご注文はこちら</a>(3)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=27&blogid=1">ご注文はこちら</a>(3)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=8&blogid=1">家族</a>(90)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=8&blogid=1">家族</a>(90)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=5&blogid=1">フライングディスク</a>(105)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=5&blogid=1">フライングディスク</a>(105)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=30&blogid=1">レシピ</a>(1)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=30&blogid=1">レシピ</a>(1)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=34&blogid=1">お知らせ</a>(5)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=34&blogid=1">お知らせ</a>(5)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=38&blogid=1">ショッピング</a>(1)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=38&blogid=1">ショッピング</a>(1)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=43&blogid=1">今日の一言</a>(2)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=43&blogid=1">今日の一言</a>(2)</dd> <!-- li><a href="http://www.momoso-net.com/~farm/index.php?catid=26&blogid=1">とかレンダー</a>(13)</li --> <dd><a href="http://www.momoso-net.com/~farm/index.php?catid=26&blogid=1">とかレンダー</a>(13)</dd> <!-- /ul --> <!-- %ContentsList(@s)% --> <!-- %MultipleCategories(0,categorylist)% --> </dl> </div> <!-- members form --> <div class="sidebar member_exclusive_use"> <dl class="sidebardl"> <h3>member_exclusive_use</h3> <!-- dt>Member exclusive use</dt --> <!-- dd><a href="https://www.momoso-net.com/~gsc/cgi-bin/upload.cgi" title="Member exclusive use">会員ページ</a></dd --> <!-- dd><a href="http://www.momoso-net.com/~gsc/index.php?itemid=37&catid=3" title="BLOG簡単マニュアル">BLOG簡単マニュアル</a></dd --> <!-- Administrato --> 会員専用となっています。別途認証が必要です。 </dl> </div> <!-- search form --> <div class="sidebar search"> <dl class="sidebardl"> <h3>ページ内検索</h3> <!-- dt>Search</dt --> <dd><form method="get" action=""> <div class="searchform"> <input name="query" class="formfield" size="10" maxlength="60" accesskey="4" value="" /> <input type="hidden" name="amount" value="0" /> <input type="hidden" name="blogid" value="1" /> <br /> <input type="submit" value="検索" class="formbutton" /> </div> </form> </dd> </dl> </div> <!-- login form --> <div class="sidebar login"> <dl class="sidebardl"> <h3>ログイン</h3> <!-- dt>Login</dt --> <dd><a id="nucleus_lf"></a> <form method="post" action="#nucleus_lf"> <div class="loginform"> <input type="hidden" name="action" value="login" /> <label for="nucleus_lf_name" accesskey="l">ユーザー名</label>: <input id="nucleus_lf_name" name="login" size="10" value="" class="formfield" /> <br /> <label for="nucleus_lf_pwd">パスワード</label>: <input id="nucleus_lf_pwd" name="password" size="10" type="password" value="" class="formfield" /> <br /> <input type="submit" value="ログイン" class="formbutton" /> <br /> <input type="checkbox" value="1" name="shared" id="nucleus_lf_shared" /><label for="nucleus_lf_shared">このPCを他の人と共用する</label> </div> </form></dd> </dl> </div> <!-- links --> <div class="sidebar links"> <dl class="sidebardl"> <h3>リンク</h3> <dd><a href="http://touryukan.com/" title="藤龍館"><b>藤龍館</font></b></a></dd><dd><a href="http://www.seidai-tokyo.co.jp/" title="東京の島々の贈り物 潮騒水道橋店 ばんやしおさい笹塚店 正大ストア三宅島店"><b>東京の島々の贈り物 潮騒水道橋店 ばんやしおさい笹塚店 正大ストア三宅島店</font></b></a></dd><dd><a href="http://www.herofield.com/bbq/showa/index.html" title="昭和記念公園バーベキューガーデン"><b>昭和記念公園バーベキューガーデン</font></b></a></dd><dd><a href="http://calendar.yahoo.co.jp/tokatoka72" title="とカレンダー"><b>とカレンダー</font></b></a></dd><dd><a href="http://www.clubjr.com/" title="クラブジュニア"><b>クラブジュニア</font></b></a></dd><dd><a href="http://www.herodisc.com/" title="株式会社 ヒーロー"><b>株式会社 ヒーロー</font></b></a></dd><dd><a href="http://www.momoso-net.com/~farm/clubjrt.php" title="クラブジュニア東北営業所"><b>クラブジュニア東北営業所</font></b></a></dd><dd><a href="http://touhokuleague.blog92.fc2.com/" title="東北リーグ"><b>東北リーグ</font></b></a></dd><dd><a href="http://fsfda.web.fc2.com/" title="福島県フライングディスク協会"><b>福島県フライングディスク協会</font></b></a></dd><dd><a href="http://www.geocities.jp/joukigen2005/index.html" title="上喜元"><b>上喜元</font></b></a></dd><dd><a href="http://iwfda.com/" title="岩手県フライングディスク協会"><b>岩手県フライングディスク協会</font></b></a></dd><dd><a href="http://www.momoso-net.com/~switch/" title="みんなで創るスポーツクラブ すいっち"><b>みんなで創るスポーツクラブ すいっち</font></b></a></dd><dd><a href="http://blogs.yahoo.co.jp/switch19218" title="すいっちフライングディスクブログ"><b>すいっちフライングディスクブログ</font></b></a></dd><dd><a href="http://www.momoso-net.com/~gsc/" title="NPO法人南会津GreenStockClub"><b>NPO法人南会津GreenStockClub</font></b></a></dd><dd><a href="http://blog.juliniwa.com/" title="ジュリエッタのお気に入り"><b>ジュリエッタのお気に入り</font></b></a></dd><dd><a href="http://watamurmur.spaces.live.com/" title="watamurmur"><b>watamurmur</font></b></a></dd><dd><a href="http://www.amazon.co.jp/exec/obidos/redirect?tag=watanabefarmb-22& path=tg/browse/-/489986" title="Amazon.co.jpへようこそ!"><b>Amazon.co.jpへようこそ!</font></b></a></dd><dd><a href="http://www.7andy.jp/all/" title="セブンアンドワイ"><b>セブンアンドワイ</font></b></a></dd><dd><a href="http://waiwai.map.yahoo.co.jp/map?mid=NwG48r7Em9zjY0mm88Qk9flWPpf.havTWW4C" title="下郷おでかけMAP"><b>下郷おでかけMAP</font></b></a></dd> </dl> </div> <iframe src="http://rcm-jp.amazon.co.jp/e/cm?t=watanabefarm2-22&o=9&p=8&l=as1&asins=B0015C4VZW&fc1=000000&IS2=1<1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr " style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe> <iframe src="http://rcm-jp.amazon.co.jp/e/cm?t=watanabefarm2-22&o=9&p=8&l=as1&asins=B0001CQ04W&fc1=000000&IS2=1<1=_blank&m=amazon&lc1=0000FF&bc1=000000&bg1=FFFFFF&f=ifr " style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe> <!-- Powered by --> <div class="sidebar powered_by"> <!-- div class="sidebardl centerize" --> <div class="sidebardl"> <h3>Powered by</h3> <!-- dt>Powered by</dt --> <center><a href="http://www.momoso-net.com/"><img src="http://www.momoso-net.com/~ms08/momoso-net.com_logo.png" width="75" height="22" alt="Powered by MoMoSo-NET.COM." /></a> <div class="nucleusbutton"> <a href="http://nucleuscms.org/"><img src="http://www.momoso-net.com/~farm/skins/newgsc/images/nucleus.gif" width="85" height="31" alt="Powered by Nucleus CMS" /></a> </div> </center> </div> </div> </div> <!-- page footer --> <div class="clearing"> </div> </div> </div> <!-- end wrapper divs --> <!-- page footer, copyrights, etc. --> <div id="footer"> <div id="copyrights"> <small>Copyright | <a href="http://nucleuscms.org">Nucleus CMS v3.24</a> | <a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0 Strict</a> | <a href="http://jigsaw.w3.org/css-validator/">Valid CSS</a> | <a href="#top">Back to top</a></small> </div> </div> </body> </html>