Commit 1ec1b3e4a03630fab442516efc4ef91cccc03254

Authored by root
1 parent c960516d

recommit

Showing 1000 changed files with 396 additions and 187 deletions

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

... ... @@ -7,6 +7,7 @@
7 7 //* 作成者 :
8 8 //*
9 9 //*****************************************************************************
  10 +header("Content-type: text/html; charset=EUC-JP");
10 11 include("include/dbcon.inc");
11 12 include("include/session_start.inc");
12 13 include("include/SessionChk.inc");
... ... @@ -197,6 +198,7 @@ for ($intCnt = 0; $intCnt < pg_numrows($objRecSet) ; $intCnt++) {
197 198 $str_sinsei_time=$str_sinsei_time_h.$str_sinsei_time_i;
198 199
199 200 if ($bbs_flg==1){
  201 +
200 202 $Mail_Headers = "Date: ".$GMT_RFC."\n";
201 203 $Mail_Headers .= "From: e-gru@media-tek.co.jp\n";
202 204 //20131009
... ... @@ -205,6 +207,9 @@ for ($intCnt = 0; $intCnt < pg_numrows($objRecSet) ; $intCnt++) {
205 207 $Mail_Headers .= "X-Mailer: PHP/".phpversion()."\n";
206 208 $Mail_Headers .= "Content-type: text/plain; charset=ISO-2022-JP\n";
207 209 $Mail_Headers .= "Content-Transfer-Encoding: 7bit";
  210 +
  211 + //20160112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  212 + $MailFrom = "e-gru@media-tek.co.jp";
208 213
209 214 // お知らせメールアドレス取得
210 215 $strSQL="SELECT mail_address,keitai__address FROM sendinfo_TBL Where syain_cd='$strSyain_cd'";
... ... @@ -227,8 +232,11 @@ for ($intCnt = 0; $intCnt < pg_numrows($objRecSet) ; $intCnt++) {
227 232
228 233 //メール送信(PC)
229 234 if ($Mail_address!=""){
  235 +
230 236 $Mail_Subject = "【E-gruPro】新着".$PHP_TITLE_NAME[8]."のお知らせ";
231   - $Mail_Subject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($Mail_Subject), 0, 3)) . "?=";
  237 + //$Mail_Subject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($Mail_Subject), 0, 3)) . "?=";
  238 + //20160112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  239 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($Mail_Subject), "JIS", "EUC-JP")). "?=";
232 240
233 241 $Mail_Body = "【タイトル】".$Title."\n";
234 242 $Mail_Body .= "【作 成 者】".$strNameData."\n";
... ... @@ -236,9 +244,14 @@ for ($intCnt = 0; $intCnt < pg_numrows($objRecSet) ; $intCnt++) {
236 244 //20081023
237 245 $Mail_Body .= "\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。\n";
238 246 $Mail_Body .= "\n内容は下記よりログイン後、確認してください。\n".$UrlHead_PC."index.php";
239   - $Mail_Body = jcodeconvert($Mail_Body,1,3);
  247 + //$Mail_Body = jcodeconvert($Mail_Body,1,3);
  248 + //20160112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  249 + $mlms = mb_convert_encoding(stripslashes($Mail_Body), "JIS", "EUC-JP");
  250 +
  251 + //20160112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  252 + //$rcd = mail($Mail_address, $Mail_Subject, $Mail_Body, $Mail_Headers);
  253 + $rcd = mail($Mail_address, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
240 254
241   - $rcd = mail($Mail_address, $Mail_Subject, $Mail_Body, $Mail_Headers);
242 255 if($rcd == false){
243 256 $Status = -1;
244 257 }
... ... @@ -247,7 +260,10 @@ for ($intCnt = 0; $intCnt < pg_numrows($objRecSet) ; $intCnt++) {
247 260 //メール送信(携帯)
248 261 if ($Mobile_address!=""){
249 262 $Mail_Subject = "【E-gruPro】新着".$PHP_TITLE_NAME[8]."のお知らせ";
250   - $Mail_Subject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($Mail_Subject), 0, 3)) . "?=";
  263 + //$Mail_Subject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($Mail_Subject), 0, 3)) . "?=";
  264 + //20160112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  265 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($Mail_Subject), "JIS", "EUC-JP")). "?=";
  266 +
251 267
252 268 $Mail_Body = "【タイトル】".$Title."\n";
253 269 $Mail_Body .= "【作 成 者】".$strNameData."\n";
... ... @@ -257,9 +273,15 @@ for ($intCnt = 0; $intCnt < pg_numrows($objRecSet) ; $intCnt++) {
257 273 //20081023
258 274 $Mail_Body .= "\n以下のアドレスよりログインしてください。\n".$UrlHead_MB."index_m.php?P_SYAIN_CD=$strSyain_cd&P_FOLDER=$PHP_FOLDER_NAME&C=1";
259 275 }
260   - $Mail_Body = jcodeconvert($Mail_Body,1,3);
  276 + //$Mail_Body = jcodeconvert($Mail_Body,1,3);
  277 + //20160112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  278 + $mlms = mb_convert_encoding(stripslashes($Mail_Body), "JIS", "EUC-JP");
261 279
262   - $rcd = mail($Mobile_address, $Mail_Subject, $Mail_Body, $Mail_Headers);
  280 +
  281 + //20160112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  282 + //$rcd = mail($Mobile_address, $Mail_Subject, $Mail_Body, $Mail_Headers);
  283 + $rcd = mail($Mobile_address, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
  284 +
263 285 if($rcd == false){
264 286 $Status = -1;
265 287 }
... ...
... ... @@ -7,7 +7,7 @@
7 7 //* 作成者 :
8 8 //*
9 9 //*****************************************************************************
10   -
  10 +header("Content-type: text/html; charset=EUC-JP");
11 11 include("include/session_start.inc");
12 12 include("include/SessionChk.inc");
13 13
... ... @@ -33,6 +33,16 @@ $objRecUp="null";
33 33 $strDate= date("Y") . "/" . date("m") . "/" . date("d");
34 34 $strTime= date("H") . ":" . date("i") . ":" . date("s");
35 35
  36 +//20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  37 +$MailFrom = "e-gru@media-tek.co.jp";
  38 +$Mail_Headers = "Date: ".$GMT_RFC."\n";
  39 +$Mail_Headers .= "From: ".$MailFrom."\n";
  40 +$Mail_Headers .= "MIME-Version: 1.0\n";
  41 +$Mail_Headers .= "X-Mailer: PHP/".phpversion()."\n";
  42 +$Mail_Headers .= "Content-type: text/plain; charset=ISO-2022-JP\n";
  43 +$Mail_Headers .= "Content-Transfer-Encoding: 7bit";
  44 +
  45 +
36 46 $open_flg=$open_flg;
37 47
38 48 if ($intK_flg==0){
... ... @@ -252,11 +262,14 @@ if ($intK_flg==0){
252 262 //20081023 追加
253 263 $mlms .="\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。";
254 264 $mlms .="\n\nコメントは下記よりログイン後、記入してください。\n".$UrlHead_PC."index.php";
255   - $mlsb = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($mlsb), 0, 3)) . "?=";
256   - $mlms = jcodeconvert($mlms,1,3);
  265 +
  266 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mlsb), "JIS", "EUC-JP")). "?=";
  267 + $mlms = mb_convert_encoding(stripslashes($mlms), "JIS", "EUC-JP");
257 268
258 269 // メール送信
259   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  270 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  271 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  272 + $rcd = mail($mlto, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
260 273 if($rcd == false){
261 274 $Status = -1;
262 275 }
... ... @@ -274,11 +287,13 @@ if ($intK_flg==0){
274 287 if((int)$PHP_MOBILE_FLG!=1){
275 288 $mlms .= "\n\n以下のアドレスよりログインしてください。\n".$UrlHead_MB."index_m.php?P_SYAIN_CD=$strStyain_cd&P_FOLDER=$PHP_FOLDER_NAME&C=1";
276 289 }
277   - $mlsb = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($mlsb), 0, 3)) . "?=";
278   - $mlms = jcodeconvert($mlms,1,3);
  290 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mlsb), "JIS", "EUC-JP")). "?=";
  291 + $mlms = mb_convert_encoding(stripslashes($mlms), "JIS", "EUC-JP");
279 292
280 293 // メール送信
281   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  294 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  295 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  296 + $rcd = mail($mlto, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
282 297 if($rcd == false)
283 298 {
284 299 $Status = -1;
... ... @@ -353,7 +368,7 @@ if ($intK_flg==0){
353 368 $str_sinsei_time_h=substr($strTime,0,2);
354 369 $str_sinsei_time_i=substr($strTime,3,2);
355 370 $str_sinsei_time=$str_sinsei_time_h.$str_sinsei_time_i;
356   -
  371 +
357 372 if (pg_numrows($objSend)>0){
358 373 $objSendData = pg_fetch_object($objSend, 0);
359 374 if(($Mail_kyohi_flg == 0) || (($str_sinsei_time < $Mail_kyohi_start_time1) || ($str_sinsei_time > $Mail_kyohi_end_time1))
... ... @@ -362,27 +377,30 @@ if ($intK_flg==0){
362 377 if ($objSendData->send_flg1==1){
363 378 //メール送信(PC)
364 379 if ($objSendData->mail_address!=""){
365   - $mlfr = "From:e-gru@media-tek.co.jp";
  380 + //$mlfr = "From:e-gru@media-tek.co.jp";
366 381 $mlto = $objSendData->mail_address;
367 382 $mlsb = "【E-gruPro】新着回覧板のお知らせ(".$kairan_title.")";
368 383 $mlms = "【タイトル】".$kairan_title."\n".
369 384 "(".$strDate." ".$strTime." ".$strNameData.")\n".
370 385 $your_memo.
371 386 //20081023 追加
372   - "\n\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。".
373   - "\n\nコメントは下記よりログイン後、記入してください。\n".$UrlHead_PC."index.php";
374   - $mlsb = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($mlsb), 0, 3)) . "?=";
375   - $mlms = jcodeconvert($mlms,1,3);
  387 + "\n\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。".
  388 + "\n\nコメントは下記よりログイン後、記入してください。\n".$UrlHead_PC."index.php";
  389 +
  390 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mlsb), "JIS", "EUC-JP")). "?=";
  391 + $mlms = mb_convert_encoding(stripslashes($mlms), "JIS", "EUC-JP");
376 392
377 393 // メール送信
378   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  394 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  395 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  396 + $rcd = mail($mlto, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
379 397 if($rcd == false){
380 398 $Status = -1;
381 399 }
382 400 }
383 401 //携帯メールアドレス
384 402 if ($objSendData->keitai__address!=""){
385   - $mlfr = "From:e-gru@media-tek.co.jp";
  403 + //$mlfr = "From:e-gru@media-tek.co.jp";
386 404 $mlto = $objSendData->keitai__address;
387 405 $mlsb = "【E-gruPro】新着回覧板のお知らせ(".$kairan_title.")";
388 406 $mlms = "【タイトル】".$kairan_title."\n".
... ... @@ -393,11 +411,13 @@ if ($intK_flg==0){
393 411 if((int)$PHP_MOBILE_FLG!=1){
394 412 $mlms .= "\n\n以下のアドレスよりログインしてください。\n".$UrlHead_MB."index_m.php?P_SYAIN_CD=$strStyain_cd&P_FOLDER=$PHP_FOLDER_NAME&C=1";
395 413 }
396   - $mlsb = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($mlsb), 0, 3)) . "?=";
397   - $mlms = jcodeconvert($mlms,1,3);
  414 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mlsb), "JIS", "EUC-JP")). "?=";
  415 + $mlms = mb_convert_encoding(stripslashes($mlms), "JIS", "EUC-JP");
398 416
399 417 // メール送信
400   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  418 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  419 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  420 + $rcd = mail($mlto, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
401 421 if($rcd == false){
402 422 $Status = -1;
403 423 }
... ... @@ -494,7 +514,7 @@ if ($intK_flg==0){
494 514 //メール送信(PC)
495 515 if ($objSendData->mail_address!=""){
496 516
497   - $mlfr = "From:e-gru@media-tek.co.jp";
  517 + //$mlfr = "From:e-gru@media-tek.co.jp";
498 518 $mlto = $objSendData->mail_address;
499 519 $mlsb = "【E-gruPro】回覧板へ回答がありました(".$objftc2->title.")";
500 520 $mlms = "【タイトル】".$objftc2->title."\n".
... ... @@ -504,18 +524,20 @@ if ($intK_flg==0){
504 524 //20081023 追加
505 525 "\n\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。".
506 526 "\n\n下記よりログイン後、確認してください。\n".$UrlHead_PC."index.php";
507   - $mlsb = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($mlsb), 0, 3)) . "?=";
508   - $mlms = jcodeconvert($mlms,1,3);
  527 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mlsb), "JIS", "EUC-JP")). "?=";
  528 + $mlms = mb_convert_encoding(stripslashes($mlms), "JIS", "EUC-JP");
509 529
510 530 // メール送信
511   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  531 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  532 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  533 + $rcd = mail($mlto, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
512 534 if($rcd == false){
513 535 $Status = -1;
514 536 }
515 537 }
516 538 //携帯メールアドレス
517 539 if ($objSendData->keitai__address!=""){
518   - $mlfr = "From:e-gru@media-tek.co.jp";
  540 + //$mlfr = "From:e-gru@media-tek.co.jp";
519 541 $mlto = $objSendData->keitai__address;
520 542 $mlsb = "【E-gruPro】回覧板へ回答がありました(".$objftc2->title.")";
521 543 $mlms = "【タイトル】".$objftc2->title."\n".
... ... @@ -528,11 +550,13 @@ if ($intK_flg==0){
528 550 if((int)$PHP_MOBILE_FLG!=1){
529 551 $mlms .= "\n\n以下のアドレスよりログインしてください。\n".$UrlHead_MB."index_m.php?P_SYAIN_CD=".$objftc2->syain_cd."&P_FOLDER=$PHP_FOLDER_NAME&C=1";
530 552 }
531   - $mlsb = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($mlsb), 0, 3)) . "?=";
532   - $mlms = jcodeconvert($mlms,1,3);
  553 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mlsb), "JIS", "EUC-JP")). "?=";
  554 + $mlms = mb_convert_encoding(stripslashes($mlms), "JIS", "EUC-JP");
533 555
534 556 // メール送信
535   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  557 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  558 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  559 + $rcd = mail($mlto, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
536 560 if($rcd == false)
537 561 {
538 562 $Status = -1;
... ...
... ... @@ -41,10 +41,11 @@ if($intsts==1){
41 41 }
42 42
43 43 //***メールヘッダー処理***
  44 +//20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  45 +$MailFrom = "e-gru@media-tek.co.jp";
  46 +
44 47 $Headers = "Date: ".$GMT_RFC."\n";
45   -$Headers .= "From: e-gru@media-tek.co.jp\n";
46   -//20131009
47   -//$Headers .= "Subject: $MailSubject\n";
  48 +$Headers .= "From: ".$MailFrom."\n";
48 49 $Headers .= "MIME-Version: 1.0\n";
49 50 $Headers .= "X-Mailer: PHP/".phpversion()."\n";
50 51 $Headers .= "Content-type: text/plain; charset=ISO-2022-JP\n";
... ... @@ -268,7 +269,8 @@ if ($intsyorists==1){
268 269
269 270 //***お知らせメールタイトル名 ***
270 271 $MailSubject = "【E-グルPro】".$PHP_TITLE_NAME[8]." 判定依頼のお知らせ";
271   - $MailSubject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert($MailSubject, 0, 3)) . "?=";
  272 + $MailSubject = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($MailSubject), "JIS", "EUC-JP")). "?=";
  273 +
272 274 if(($Mail_kyohi_flg == 0) || (($str_sinsei_time < $Mail_kyohi_start_time1) || ($str_sinsei_time > $Mail_kyohi_end_time1))
273 275 && (($str_sinsei_time < $Mail_kyohi_start_time2) || ($str_sinsei_time > $Mail_kyohi_end_time2))){
274 276
... ... @@ -282,8 +284,10 @@ if ($intsyorists==1){
282 284 $MailBody.= $UrlHead_PC."index.php";
283 285 //$mlms = i18n_convert(stripslashes($MailBody), "JIS");
284 286 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
285   -
286   - $rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  287 +
  288 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  289 + //$rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  290 + $rcd = mail($mail_address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
287 291 }
288 292 //携帯電話版
289 293 if ($keitai__address!=""){
... ... @@ -297,8 +301,10 @@ if ($intsyorists==1){
297 301 }
298 302 //$mlms = i18n_convert(stripslashes($MailBody), "JIS");
299 303 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
300   -
301   - $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  304 +
  305 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  306 + //$rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  307 + $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
302 308 }
303 309 }
304 310 }
... ... @@ -349,7 +355,7 @@ if ($intsyorists==1){
349 355 //新決裁者テーブルがあったら
350 356 //決済上書き保存
351 357 $strSQLUp ="UPDATE kessaijoukyou_tbl SET kessai_joukyou = $intsts, ";
352   - $strSQLUp .= "kessai_comment = '".mb_convert_encoding(addslashes($Comment), "eucjp-win", "auto")."', ";
  358 + $strSQLUp .= "kessai_comment = '".mb_convert_encoding(addslashes($Comment."1"), "eucjp-win", "auto")."', ";
353 359 $strSQLUp .= "kessai_day = '$reg_date',kessai_time = '$reg_time' ";
354 360 $strSQLUp .= "WHERE sinsei_seq=$intseq AND syain_cd='$syain_cd' AND kessai_no = $intindex";
355 361 $objData = pg_exec($strSQLUp);
... ... @@ -364,7 +370,7 @@ if ($intsyorists==1){
364 370 $strDat = "sinsei_flg".$intindex."=".$intsts.",";
365 371 $strDat .= "sinsei_date".$intindex."='".$reg_date."',";
366 372 $strDat .= "sinsei_time".$intindex."='".$reg_time."',";
367   - $strDat .= "comment".$intindex."='".mb_convert_encoding(addslashes($Comment), "eucjp-win", "auto")."' ";
  373 + $strDat .= "comment".$intindex."='".mb_convert_encoding(addslashes($Comment."2"), "eucjp-win", "auto")."' ";
368 374 $strSQL="Update sinsei_tbl Set ".$strDat." Where seq=$intseq";
369 375 $objData = pg_exec($strSQL);
370 376 if($objData==false){
... ... @@ -396,114 +402,121 @@ if ($intsyorists==1){
396 402
397 403 //***決裁者メール種類判定処理***
398 404 if($App_syain_cd != "" AND $intsts==1){
399   - //***申請中***
400   - //お知らせメール通知フラグ取得
401   - $strSQL="SELECT * FROM kojin_data_tbl WHERE seq=12 AND syain_cd='$App_syain_cd'";
402   - $objFlg = pg_exec($strSQL);
403   - if($objFlg==false){
404   - echo("SQL実行に失敗しました(SELECT)");
405   - exit;
406   - }
407   - if (pg_numrows($objFlg) > 0){
408   - $objFlgData=pg_fetch_object($objFlg, 0);
409   - $denshi_flg=$objFlgData->memo;
410   - if ($denshi_flg==""){
411   - $denshi_flg=0;
412   - }
413   - }else{
414   - $denshi_flg=0;
415   - }
416   -
417   - //お知らせ拒否時間取得
418   - $Mail_kyohi_flg = 0;
419   - $Mail_kyohi_time = "";
420   - $strSQL="SELECT no_alarm_time FROM mst_alarm WHERE syain_cd='$App_syain_cd'";
421   - $objData = pg_exec($strSQL);
422   - if($objData==false){
423   - echo("SQL実行に失敗しました(SELECT)");
424   - exit;
425   - }
  405 + //***申請中***
  406 + //お知らせメール通知フラグ取得
  407 + $strSQL="SELECT * FROM kojin_data_tbl WHERE seq=12 AND syain_cd='$App_syain_cd'";
  408 + $objFlg = pg_exec($strSQL);
  409 + if($objFlg==false){
  410 + echo("SQL実行に失敗しました(SELECT)");
  411 + exit;
  412 + }
  413 + if (pg_numrows($objFlg) > 0){
  414 + $objFlgData=pg_fetch_object($objFlg, 0);
  415 + $denshi_flg=$objFlgData->memo;
  416 + if ($denshi_flg==""){
  417 + $denshi_flg=0;
  418 + }
  419 + }else{
  420 + $denshi_flg=0;
  421 + }
426 422
427   - if (pg_numrows($objData) > 0){
428   - $objRec =pg_fetch_object($objData, 0);
429   - $Mail_kyohi_time=$objRec->no_alarm_time;
430   - if ($Mail_kyohi_time != ""){
431   - //拒否時間分割
432   - $Mail_kyohi_start_time=substr($Mail_kyohi_time,0,4);
433   - $Mail_kyohi_end_time=substr($Mail_kyohi_time,4,7);
434   - $Mail_kyohi_flg=1;
435   - }
436   - }
  423 + //お知らせ拒否時間取得
  424 + $Mail_kyohi_flg = 0;
  425 + $Mail_kyohi_time = "";
  426 + $strSQL="SELECT no_alarm_time FROM mst_alarm WHERE syain_cd='$App_syain_cd'";
  427 + $objData = pg_exec($strSQL);
  428 + if($objData==false){
  429 + echo("SQL実行に失敗しました(SELECT)");
  430 + exit;
  431 + }
437 432
438   - //拒否時間判定
439   - if($Mail_kyohi_start_time > $Mail_kyohi_end_time){
440   - $Mail_kyohi_start_time1=$Mail_kyohi_start_time;
441   - $Mail_kyohi_end_time1="2400";
442   - $Mail_kyohi_start_time2="0000";
443   - $Mail_kyohi_end_time2=$Mail_kyohi_end_time;
444   - }else{
445   - $Mail_kyohi_start_time1=$Mail_kyohi_start_time;
446   - $Mail_kyohi_end_time1=$Mail_kyohi_end_time;
447   - $Mail_kyohi_start_time2=$Mail_kyohi_start_time;
448   - $Mail_kyohi_end_time2=$Mail_kyohi_end_time;
449   - }
  433 + if (pg_numrows($objData) > 0){
  434 + $objRec =pg_fetch_object($objData, 0);
  435 + $Mail_kyohi_time=$objRec->no_alarm_time;
  436 + if ($Mail_kyohi_time != ""){
  437 + //拒否時間分割
  438 + $Mail_kyohi_start_time=substr($Mail_kyohi_time,0,4);
  439 + $Mail_kyohi_end_time=substr($Mail_kyohi_time,4,7);
  440 + $Mail_kyohi_flg=1;
  441 + }
  442 + }
450 443
451   - //申請時間編集
452   - $str_sinsei_time_h=substr($reg_time,0,2);
453   - $str_sinsei_time_i=substr($reg_time,3,2);
454   - $str_sinsei_time=$str_sinsei_time_h.$str_sinsei_time_i;
  444 + //拒否時間判定
  445 + if($Mail_kyohi_start_time > $Mail_kyohi_end_time){
  446 + $Mail_kyohi_start_time1=$Mail_kyohi_start_time;
  447 + $Mail_kyohi_end_time1="2400";
  448 + $Mail_kyohi_start_time2="0000";
  449 + $Mail_kyohi_end_time2=$Mail_kyohi_end_time;
  450 + }else{
  451 + $Mail_kyohi_start_time1=$Mail_kyohi_start_time;
  452 + $Mail_kyohi_end_time1=$Mail_kyohi_end_time;
  453 + $Mail_kyohi_start_time2=$Mail_kyohi_start_time;
  454 + $Mail_kyohi_end_time2=$Mail_kyohi_end_time;
  455 + }
455 456
456   - //お知らせメール送信判定
457   - if ($denshi_flg==1){
458   - //決裁対象者お知らせメール取得
459   - $strSQLsend="SELECT mail_address,keitai__address FROM sendinfo_TBL Where syain_cd='$App_syain_cd'";
460   - $objSend = pg_exec($strSQLsend);
461   - if($objSend==false){
462   - echo("SQL実行に失敗しました(SELECT)");
463   - exit;
464   - }
465   - if (pg_numrows($objSend)>0){
466   - $objSendData = pg_fetch_object($objSend, 0);
467   - $mail_address = $objSendData->mail_address;
468   - $keitai__address = $objSendData->keitai__address;
469   - }else{
470   - $mail_address = "";
471   - $keitai__address = "";
472   - }
  457 + //申請時間編集
  458 + $str_sinsei_time_h=substr($reg_time,0,2);
  459 + $str_sinsei_time_i=substr($reg_time,3,2);
  460 + $str_sinsei_time=$str_sinsei_time_h.$str_sinsei_time_i;
  461 +
  462 + //お知らせメール送信判定
  463 + if ($denshi_flg==1){
  464 + //決裁対象者お知らせメール取得
  465 + $strSQLsend="SELECT mail_address,keitai__address FROM sendinfo_TBL Where syain_cd='$App_syain_cd'";
  466 + $objSend = pg_exec($strSQLsend);
  467 + if($objSend==false){
  468 + echo("SQL実行に失敗しました(SELECT)");
  469 + exit;
  470 + }
  471 + if (pg_numrows($objSend)>0){
  472 + $objSendData = pg_fetch_object($objSend, 0);
  473 + $mail_address = $objSendData->mail_address;
  474 + $keitai__address = $objSendData->keitai__address;
  475 + }else{
  476 + $mail_address = "";
  477 + $keitai__address = "";
  478 + }
473 479
474   - //***お知らせメールタイトル名 ***
475   - $MailSubject = "【E-グルPro】".$PHP_TITLE_NAME[8]." 判定依頼のお知らせ";
476   - $MailSubject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert($MailSubject, 0, 3)) . "?=";
477   - if(($Mail_kyohi_flg == 0) || (($str_sinsei_time < $Mail_kyohi_start_time1) || ($str_sinsei_time > $Mail_kyohi_end_time1))
478   - && (($str_sinsei_time < $Mail_kyohi_start_time2) || ($str_sinsei_time > $Mail_kyohi_end_time2))){
479   - //PC版
480   - if ($mail_address != ""){
481   - //本文作成
482   - $MailBody = "【申請者】".$strNameData."\n";
483   - $MailBody.= "【申請種別】".$Mail_sinsei_name."\n";
484   - $MailBody.= "【申請順】第".$kessai_no."次決裁\n";
485   - //20081023 追加
486   - $MailBody.= "\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。\n";
487   - $MailBody.= "\n下記よりログイン後、".$kessai_no."次決裁してください。\n";
488   - $MailBody.= $UrlHead_PC."index.php";
489   - $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
490   - $rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
491   - }
492   - //携帯電話版
493   - if ($keitai__address!=""){
494   - //本文作成
495   - $MailBody = "【申請者】".$strNameData."\n";
496   - $MailBody.= "【申請種別】".$Mail_sinsei_name."\n";
497   - $MailBody.= "【申請順】第".$kessai_no."次決裁\n";
498   - //20081023 追加
499   - $MailBody.= "\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。\n";
500   - $MailBody.= "\n下記よりログイン後、".$kessai_no."次決裁してください。\n";
501   - if((int)$PHP_MOBILE_FLG!=1){
502   - $MailBody .= "\n".$UrlHead_MB."index_m.php?P_SYAIN_CD=$App_syain_cd&P_FOLDER=$PHP_FOLDER_NAME&C=1";
  480 + //***お知らせメールタイトル名 ***
  481 + $MailSubject = "【E-グルPro】".$PHP_TITLE_NAME[8]." 判定依頼のお知らせ";
  482 + $MailSubject = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($MailSubject), "JIS", "EUC-JP")). "?=";
  483 +
  484 + if(($Mail_kyohi_flg == 0) || (($str_sinsei_time < $Mail_kyohi_start_time1) || ($str_sinsei_time > $Mail_kyohi_end_time1))
  485 + && (($str_sinsei_time < $Mail_kyohi_start_time2) || ($str_sinsei_time > $Mail_kyohi_end_time2))){
  486 + //PC版
  487 + if ($mail_address != ""){
  488 + //本文作成
  489 + $MailBody = "【申請者】".$strNameData."\n";
  490 + $MailBody.= "【申請種別】".$Mail_sinsei_name."\n";
  491 + $MailBody.= "【申請順】第".$kessai_no."次決裁\n";
  492 + //20081023 追加
  493 + $MailBody.= "\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。\n";
  494 + $MailBody.= "\n下記よりログイン後、".$kessai_no."次決裁してください。\n";
  495 + $MailBody.= $UrlHead_PC."index.php";
  496 + $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
  497 +
  498 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  499 + //$rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  500 + $rcd = mail($mail_address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
  501 + }
  502 + //携帯電話版
  503 + if ($keitai__address!=""){
  504 + //本文作成
  505 + $MailBody = "【申請者】".$strNameData."\n";
  506 + $MailBody.= "【申請種別】".$Mail_sinsei_name."\n";
  507 + $MailBody.= "【申請順】第".$kessai_no."次決裁\n";
  508 + //20081023 追加
  509 + $MailBody.= "\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。\n";
  510 + $MailBody.= "\n下記よりログイン後、".$kessai_no."次決裁してください。\n";
  511 + if((int)$PHP_MOBILE_FLG!=1){
  512 + $MailBody .= "\n".$UrlHead_MB."index_m.php?P_SYAIN_CD=$App_syain_cd&P_FOLDER=$PHP_FOLDER_NAME&C=1";
  513 + }
  514 + $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
  515 +
  516 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  517 + //$rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  518 + $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
503 519 }
504   - $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
505   - $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
506   - }
507 520 }
508 521 }
509 522 }
... ... @@ -635,7 +648,7 @@ if ($intsyorists==1){
635 648
636 649 //***お知らせメールタイトル名 ***
637 650 $MailSubject = "【E-グルPro】".$PHP_TITLE_NAME[8]." 判定完了のお知らせ";
638   - $MailSubject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert($MailSubject, 0, 3)) . "?=";
  651 + $MailSubject = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($MailSubject), "JIS", "EUC-JP")). "?=";
639 652
640 653 if(($Mail_kyohi_flg == 0) || (($str_sinsei_time < $Mail_kyohi_start_time1) || ($str_sinsei_time > $Mail_kyohi_end_time1))
641 654 && (($str_sinsei_time < $Mail_kyohi_start_time2) || ($str_sinsei_time > $Mail_kyohi_end_time2))){
... ... @@ -650,7 +663,10 @@ if ($intsyorists==1){
650 663 $MailBody.= $UrlHead_PC."index.php";
651 664 //$mlms = i18n_convert(stripslashes($MailBody), "JIS");
652 665 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
653   - $rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  666 +
  667 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  668 + //$rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  669 + $rcd = mail($mail_address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
654 670 }
655 671 //携帯電話版
656 672 if ($keitai__address!=""){
... ... @@ -664,7 +680,10 @@ if ($intsyorists==1){
664 680 }
665 681 //$mlms = i18n_convert(stripslashes($MailBody), "JIS");
666 682 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
667   - $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  683 +
  684 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  685 + //$rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  686 + $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
668 687 }
669 688 }
670 689 }
... ... @@ -676,7 +695,7 @@ if ($intsyorists==1){
676 695 $strDat="sinsei_flg".$intindex."=".$intsts.",".
677 696 "sinsei_date".$intindex."='".$reg_date."',".
678 697 "sinsei_time".$intindex."='".$reg_time."',".
679   - "comment".$intindex."='".mb_convert_encoding(addslashes($Comment), "eucjp-win", "auto")."' ";
  698 + "comment".$intindex."='".mb_convert_encoding(addslashes($Comment."3"), "eucjp-win", "auto")."' ";
680 699 $strSQL="Update sinsei_tbl Set ".$strDat." Where seq=$intseq";
681 700 $objData = pg_exec($strSQL);
682 701 if($objData==false){
... ... @@ -796,7 +815,8 @@ if ($intsyorists==1){
796 815
797 816 //***お知らせメールタイトル名 ***
798 817 $MailSubject = "【E-グルPro】".$PHP_TITLE_NAME[8]." 判定依頼のお知らせ";
799   - $MailSubject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert($MailSubject, 0, 3)) . "?=";
  818 + $MailSubject = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($MailSubject), "JIS", "EUC-JP")). "?=";
  819 +
800 820 $Kessai_jun=$intindex+1;
801 821 //PC版
802 822 if(($Mail_kyohi_flg == 0) || (($str_sinsei_time < $Mail_kyohi_start_time1) || ($str_sinsei_time > $Mail_kyohi_end_time1))
... ... @@ -812,7 +832,10 @@ if ($intsyorists==1){
812 832 $MailBody.= $UrlHead_PC."index.php";
813 833 //$mlms = i18n_convert(stripslashes($MailBody), "JIS");
814 834 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
815   - $rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  835 +
  836 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  837 + //$rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  838 + $rcd = mail($mail_address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
816 839 }
817 840 //携帯電話版
818 841 if ($keitai__address!=""){
... ... @@ -828,7 +851,10 @@ if ($intsyorists==1){
828 851 }
829 852 //$mlms = i18n_convert(stripslashes($MailBody), "JIS");
830 853 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
831   - $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  854 +
  855 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  856 + //$rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  857 + $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
832 858 }
833 859 }
834 860 }
... ... @@ -908,7 +934,7 @@ if ($intsyorists==1){
908 934
909 935 //***お知らせメールタイトル名 ***
910 936 $MailSubject = "【E-グルPro】".$PHP_TITLE_NAME[8]." 判定完了のお知らせ";
911   - $MailSubject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert($MailSubject, 0, 3)) . "?=";
  937 + $MailSubject = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($MailSubject), "JIS", "EUC-JP")). "?=";
912 938 //PC版
913 939 if(($Mail_kyohi_flg == 0) || (($str_sinsei_time < $Mail_kyohi_start_time1) || ($str_sinsei_time > $Mail_kyohi_end_time1))
914 940 && (($str_sinsei_time < $Mail_kyohi_start_time2) || ($str_sinsei_time > $Mail_kyohi_end_time2))){
... ... @@ -921,7 +947,11 @@ if ($intsyorists==1){
921 947 $MailBody.= "\n下記よりログイン後、確認してください。\n";
922 948 $MailBody.= $UrlHead_PC."index.php";
923 949 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
924   - $rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  950 +
  951 +
  952 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  953 + //$rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  954 + $rcd = mail($mail_address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
925 955 }
926 956 //携帯電話版
927 957 if ($keitai__address!=""){
... ... @@ -934,13 +964,15 @@ if ($intsyorists==1){
934 964 $MailBody .= "\n以下のアドレスよりログインしてください。\n".$UrlHead_MB."index_m.php?P_SYAIN_CD=$PHPsinsei_syain_cd&P_FOLDER=$PHP_FOLDER_NAME&C=1";
935 965 }
936 966 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
937   - $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  967 +
  968 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  969 + //$rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  970 + $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers, "-f".$MailFrom);
938 971 }
939 972 }
940 973 }
941 974 }
942 975 }
943   -
944 976 //header("Location:FLO003.php");
945 977 }
946 978
... ...
... ... @@ -17,11 +17,29 @@ include($strDBinc);
17 17
18 18 mb_language('Japanese');
19 19 mb_internal_encoding('EUC-JP'); // ☆
  20 +
  21 +
  22 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  23 + $mlto = $email1."@".$email2;
  24 + $mlfr = $email3."@".$email4;
  25 +
  26 + $Headers = "Date: ".$GMT_RFC."\n";
  27 + $Headers .= "From: ".$mlfr."\n";
  28 + $Headers .= "Subject: $MailSubject\n";
  29 + $Headers .= "MIME-Version: 1.0\n";
  30 + $Headers .= "X-Mailer: PHP/".phpversion()."\n";
  31 + $Headers .= "Content-type: text/plain; charset=ISO-2022-JP\n";
  32 + $Headers .= "Content-Transfer-Encoding: 7bit";
20 33
21 34 // mb_language("Japanese");
22   - $headers ="From:".$email3."@".$email4;
  35 + //$headers ="From:".$email3."@".$email4;
23 36 // mail($email1."@".$email2,mb_convert_encoding($mail_subject,"UTF-8","EUC-JP"),$memo,"From: ".$email3."@".$email4);
24   - mb_send_mail($email1."@".$email2,$mail_subject,$memo,$headers);
  37 + //mb_send_mail($email1."@".$email2,$mail_subject,$memo,$headers);
  38 +
  39 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mail_subject), "JIS", "EUC-JP")). "?=";
  40 + $mlms = mb_convert_encoding(stripslashes($memo), "JIS", "EUC-JP");
  41 +
  42 + $rcd = mail($mlto, $mlsb, $mlms, $Headers, "-f".$mlfr);
25 43
26 44 header("Location: ADR001.php");
27 45
... ...
... ... @@ -36,9 +36,9 @@ $objGroup = pg_fetch_object($objRecGroup, 0);
36 36 $PHP_DB_NAME=$objGroup->db_name;
37 37
38 38 //*** 個人情報の存在確認 ***//
39   -$hostname="localhost";
  39 +$hostname="172.31.18.14";
40 40 $database=$PHP_DB_NAME;
41   -if( !$pg_con=pg_connect("host=$hostname dbname=$database user=pgsqladmin password=pgsqladmin") ) {
  41 +if( !$pg_con=pg_connect("host=$hostname port=5433 dbname=$database user=pgsqladmin password=pgsqladmin") ) {
42 42 exit;
43 43 }
44 44
... ... @@ -295,4 +295,4 @@ function encoding($str) {
295 295 }
296 296
297 297
298   -?>
\ No newline at end of file
  298 +?>
... ...
... ... @@ -142,7 +142,13 @@ for ($i=0; $i < count($strSyainData); $i++){
142 142 $mlfr ="From:".$obj_J->mail_addr;
143 143 }
144 144
145   -
  145 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  146 + $Mail_Headers = "Date: ".$GMT_RFC."\n";
  147 + $Mail_Headers .= "From: ".$mlfr."\n";
  148 + $Mail_Headers .= "MIME-Version: 1.0\n";
  149 + $Mail_Headers .= "X-Mailer: PHP/".phpversion()."\n";
  150 + $Mail_Headers .= "Content-type: text/plain; charset=ISO-2022-JP\n";
  151 + $Mail_Headers .= "Content-Transfer-Encoding: 7bit";
146 152
147 153 //件名
148 154 $mlsb = "電子会議啓発メール";
... ... @@ -159,7 +165,9 @@ for ($i=0; $i < count($strSyainData); $i++){
159 165 $mlms = jcodeconvert($mlms,1,3);
160 166
161 167 // メール送信
162   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  168 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  169 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  170 + $rcd = mail($mlto, $mlsb, $mlms, $Mail_Headers, "-f".$mlfr);
163 171 if($rcd == false){
164 172 $Status = -1;
165 173 }
... ...
... ... @@ -260,6 +260,18 @@ function pageJump(){
260 260 </center>
261 261 <?php
262 262
  263 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  264 + $mlfr = "e-gru@media-tek.co.jp";
  265 +
  266 + $Headers = "Date: ".$GMT_RFC."\n";
  267 + $Headers .= "From: ".$mlfr."\n";
  268 + $Headers .= "Subject: $MailSubject\n";
  269 + $Headers .= "MIME-Version: 1.0\n";
  270 + $Headers .= "X-Mailer: PHP/".phpversion()."\n";
  271 + $Headers .= "Content-type: text/plain; charset=ISO-2022-JP\n";
  272 + $Headers .= "Content-Transfer-Encoding: 7bit";
  273 +
  274 +
263 275 for ($intI = 0; $intI<count($Syain_List);$intI++){
264 276 $DpCnt = $intI+1;
265 277
... ... @@ -287,11 +299,11 @@ function pageJump(){
287 299
288 300 //* PC *//
289 301 if ($Syain_List[$intI][3]!=""){
290   - $mlfr = "From:e-gru@media-tek.co.jp";
  302 + //$mlfr = "From:e-gru@media-tek.co.jp";
291 303 $mlto = $Syain_List[$intI][3];
292 304
293 305 $mlsb = "【E-グルPro】".$strMenuTitle[20]."(".$_REQUEST["Mail_Subject"].")";
294   - $mlsb = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($mlsb), 0, 3)) . "?=";
  306 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mlsb), "JIS", "EUC-JP")). "?=";
295 307
296 308 $mlms = "【タイトル】".$_REQUEST["Mail_Subject"]."\n";
297 309 $mlms .= "【配信日時】".$Send_Date." ".$Send_Time."\n";
... ... @@ -299,9 +311,13 @@ function pageJump(){
299 311 $mlms .= $_REQUEST["Mail_Body"]."\n";
300 312 $mlms .= "\n※このメールは、送信専用メールアドレスから配信されています。\nご返信いただいても配信元へは届きませんのでご了承ください。";
301 313 $mlms .= "\n\n回答は下記よりログイン後、記入してください。\n".$UrlHead_PC."index.php";
302   - $mlms = jcodeconvert($mlms,1,3);
  314 + $mlms = mb_convert_encoding(stripslashes($mlms), "JIS", "EUC-JP");
303 315
304   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  316 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  317 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  318 + $rcd = mail($mlto, $mlsb, $mlms, $Headers, "-f".$mlfr);
  319 +
  320 +
305 321 if($rcd == false){
306 322 $Status = -1;
307 323 }
... ... @@ -309,11 +325,11 @@ function pageJump(){
309 325
310 326 //* 携帯電話 *//
311 327 if ($Syain_List[$intI][4]!=""){
312   - $mlfr = "From:e-gru@media-tek.co.jp";
  328 + //$mlfr = "From:e-gru@media-tek.co.jp";
313 329 $mlto = $Syain_List[$intI][4];
314 330
315 331 $mlsb = "【E-グルPro】".$strMenuTitle[20]."(".$_REQUEST["Mail_Subject"].")";
316   - $mlsb = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert(stripslashes($mlsb), 0, 3)) . "?=";
  332 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mlsb), "JIS", "EUC-JP")). "?=";
317 333
318 334 $mlms = "【タイトル】".$_REQUEST["Mail_Subject"]."\n";
319 335 $mlms .="【配信日時】".$Send_Date." ".$Send_Time."\n";
... ... @@ -328,10 +344,13 @@ function pageJump(){
328 344 $mlms .= "mail_id=$Mail_id&";
329 345 $mlms .= "C=1";
330 346 }
331   - $mlms = jcodeconvert($mlms,1,3);
  347 + $mlms = mb_convert_encoding(stripslashes($mlms), "JIS", "EUC-JP");
332 348
333 349 // メール送信
334   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  350 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  351 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  352 + $rcd = mail($mlto, $mlsb, $mlms, $Headers, "-f".$mlfr);
  353 +
335 354 if($rcd == false){
336 355 $Status = -1;
337 356 }
... ...
... ... @@ -373,6 +373,9 @@ function mail_send($syori_flg,$strSyain_cd,$strNameData,$Visit_name,$strDate,$s
373 373 $eigyou_flg=$objFlgData->memo;
374 374 }
375 375
  376 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  377 + $mlfr = "e-gru@media-tek.co.jp";
  378 +
376 379 if ($eigyou_flg==1){
377 380 //***メールヘッダー処理***
378 381 $Headers = "Date: ".$GMT_RFC."\n";
... ... @@ -448,7 +451,8 @@ function mail_send($syori_flg,$strSyain_cd,$strNameData,$Visit_name,$strDate,$s
448 451 }else{
449 452 $MailSubject = "【E-gruPro】更新 ".$PHP_TITLE."のお知らせ";
450 453 }
451   - $MailSubject = "=?iso-2022-jp?B?" . base64_encode(jcodeconvert($MailSubject, 0, 3)) . "?=";
  454 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($MailSubject), "JIS", "EUC-JP")). "?=";
  455 +
452 456
453 457 //PC版
454 458 if ($mail_address != ""){
... ... @@ -463,7 +467,9 @@ function mail_send($syori_flg,$strSyain_cd,$strNameData,$Visit_name,$strDate,$s
463 467 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
464 468
465 469 //メール配信処理
466   - $rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  470 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  471 + //$rcd = mail($mail_address, $MailSubject, $mlms, $Headers);
  472 + $rcd = mail($mail_address, $mlsb, $mlms, $Headers, "-f".$mlfr);
467 473 if($rcd == false){
468 474 $Status = -1;
469 475 }
... ... @@ -481,7 +487,9 @@ function mail_send($syori_flg,$strSyain_cd,$strNameData,$Visit_name,$strDate,$s
481 487 $MailBody.= $UrlHead_MB."index_m.php?P_SYAIN_CD=$strSyain_cd&P_FOLDER=$PHP_FOLDER_NAME&C=1";
482 488 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
483 489 //メール配信処理
484   - $rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  490 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  491 + //$rcd = mail($keitai__address, $MailSubject, $mlms, $Headers);
  492 + $rcd = mail($keitai__address, $mlsb, $mlms, $Headers, "-f".$mlfr);
485 493 if($rcd == false){
486 494 $Status = -1;
487 495 }
... ...

1.08 KB | W: | H:

1.08 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
... ... @@ -207,8 +207,22 @@ if (pg_numrows($objRec) > O){
207 207
208 208
209 209 //$headers ="From:$obj_J->mail_addr.\r\n";
210   - $headers ="From:$strFwMail.\r\n";
211   - $mail_subject="電話メモ"."(".$PHP_SYAIN_NAME.")";
  210 + //$headers ="From:$strFwMail.\r\n";
  211 +
  212 + $Mail_Headers = "Date: ".$GMT_RFC."\n";
  213 + $Mail_Headers .= "From: ".$strFwMail."\n";
  214 + $Mail_Headers .= "MIME-Version: 1.0\n";
  215 + $Mail_Headers .= "X-Mailer: PHP/".phpversion()."\n";
  216 + $Mail_Headers .= "Content-type: text/plain; charset=ISO-2022-JP\n";
  217 + $Mail_Headers .= "Content-Transfer-Encoding: 7bit";
  218 +
  219 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  220 + $MailFrom = $strFwMail;
  221 +
  222 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  223 + //$mail_subject="電話メモ"."(".$PHP_SYAIN_NAME.")";
  224 + $mail_subject="電話メモ"."(".$PHP_SYAIN_NAME.")";
  225 +
212 226 $strHead=$msg_mode."\n".$msgtype."\n";
213 227 if ($ML_Request != ""){
214 228 $strHead=$strHead . "依頼主:".mb_convert_kana($ML_Request,"K") ."\n";
... ... @@ -246,22 +260,68 @@ if (pg_numrows($objRec) > O){
246 260 for ($ii=0;$ii<mb_strlen($strMemo); $ii++) {
247 261 $strSet .= mb_substr($strMemo,$ii,1);
248 262 if (strlen($strSet) >= 480){
249   - mb_send_mail($obj_S->e_mail,$mail_subject."(分割".$intSendCnt.")",$strSet,$headers);
250   - $strSet="";
251   - $intSendCnt=$intSendCnt+1;
  263 +
  264 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  265 + //mb_send_mail($obj_S->e_mail,$mail_subject."(分割".$intSendCnt.")",$strSet,$headers);
  266 + $mlms = mb_convert_encoding(stripslashes($strSet), "JIS", "EUC-JP");
  267 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mail_subject."(分割".$intSendCnt.")"), "JIS", "EUC-JP")). "?=";
  268 + $rcd = mail($obj_S->e_mail, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
  269 +
  270 + if($rcd == false){
  271 + $Status = -1;
  272 + }
  273 +
  274 + $strSet="";
  275 + $intSendCnt=$intSendCnt+1;
252 276 }
253 277 }
254 278 if ($strSet!=""){
255 279 if (strlen($strSet.$strURL)>=480){
256   - mb_send_mail($obj_S->e_mail,$mail_subject."(分割".$intSendCnt.")",$strSet,$headers);
257   - $intSendCnt=$intSendCnt+1;
258   - mb_send_mail($obj_S->e_mail,$mail_subject."(分割".$intSendCnt.")",$strURL,$headers);
  280 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  281 + //mb_send_mail($obj_S->e_mail,$mail_subject."(分割".$intSendCnt.")",$strSet,$headers);
  282 + $mlms = mb_convert_encoding(stripslashes($strSet), "JIS", "EUC-JP");
  283 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mail_subject."(分割".$intSendCnt.")"), "JIS", "EUC-JP")). "?=";
  284 + $rcd = mail($obj_S->e_mail, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
  285 + if($rcd == false){
  286 + $Status = -1;
  287 + }
  288 +
  289 + $intSendCnt=$intSendCnt+1;
  290 +
  291 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  292 + //mb_send_mail($obj_S->e_mail,$mail_subject."(分割".$intSendCnt.")",$strURL,$headers);
  293 + $mlms = mb_convert_encoding(stripslashes($strURL), "JIS", "EUC-JP");
  294 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mail_subject."(分割".$intSendCnt.")"), "JIS", "EUC-JP")). "?=";
  295 + $rcd = mail($obj_S->e_mail, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
  296 + if($rcd == false){
  297 + $Status = -1;
  298 + }
  299 +
259 300 }else{
260   - mb_send_mail($obj_S->e_mail,$mail_subject."(分割".$intSendCnt.")",$strSet.$strURL,$headers);
  301 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  302 + //mb_send_mail($obj_S->e_mail,$mail_subject."(分割".$intSendCnt.")",$strSet.$strURL,$headers);
  303 + $mlms = mb_convert_encoding(stripslashes($strSet.$strURL), "JIS", "EUC-JP");
  304 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mail_subject."(分割".$intSendCnt.")"), "JIS", "EUC-JP")). "?=";
  305 + $rcd = mail($obj_S->e_mail, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
  306 +
  307 + if($rcd == false){
  308 + $Status = -1;
  309 + }
261 310 }
262 311 }
263 312 }else{
264   - mb_send_mail($obj_S->e_mail,$mail_subject,$strHonbun,$headers);
  313 +
  314 +
  315 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  316 + //mb_send_mail($obj_S->e_mail,$mail_subject,$strHonbun,$headers);
  317 + $mlms = mb_convert_encoding(stripslashes($strHonbun), "JIS", "EUC-JP");
  318 + $mlsb = "=?iso-2022-jp?B?" .base64_encode(mb_convert_encoding(stripslashes($mail_subject), "JIS", "EUC-JP")). "?=";
  319 + $rcd = mail($obj_S->e_mail, $mlsb, $mlms, $Mail_Headers, "-f".$MailFrom);
  320 +
  321 + if($rcd == false){
  322 + $Status = -1;
  323 + }
  324 +
265 325 }
266 326 }
267 327
... ...
... ... @@ -18,13 +18,24 @@ include("./include/dbcon.inc"); //DB接続
18 18 include("./include/url_get.inc"); //URLの頭取得
19 19 include("include/jcode.phps");
20 20
  21 +//20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  22 +$mlfr = "e-gru@media-tek.co.jp";
  23 +
  24 +$Headers = "Date: ".$GMT_RFC."\n";
  25 +$Headers .= "From: ".$mlfr."\n";
  26 +$Headers .= "Subject: $MailSubject\n";
  27 +$Headers .= "MIME-Version: 1.0\n";
  28 +$Headers .= "X-Mailer: PHP/".phpversion()."\n";
  29 +$Headers .= "Content-type: text/plain; charset=ISO-2022-JP\n";
  30 +$Headers .= "Content-Transfer-Encoding: 7bit";
  31 +
21 32 $maddr = $account . "@" . $domain;
22 33 $Status = 0;
23 34 if($maddr == "" || $maddr == NULL){
24 35 $Status = -1;
25 36 }else{
26 37 // メール内容
27   - $mlfr = "From:e-gru@media-tek.co.jp";
  38 + //$mlfr = "From:e-gru@media-tek.co.jp";
28 39 $mlto = $maddr;
29 40 $mlsb = "【E-グルPro】携帯版URL";
30 41 if ($intsts==1){
... ... @@ -36,7 +47,11 @@ if($maddr == "" || $maddr == NULL){
36 47 $mlms = jcodeconvert($mlms,1,3);
37 48
38 49 // メール送信
39   - $rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  50 +
  51 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  52 + //$rcd = mail($mlto, $mlsb, $mlms, $mlfr);
  53 + $rcd = mail($mlto, $mlsb, $mlms, $Headers, "-f".$mlfr);
  54 +
40 55 if($rcd == false){
41 56 $Status = -1;
42 57 }
... ...
... ... @@ -120,6 +120,8 @@ if (trim($MailTo)==""){
120 120 $Headers .= "Content-type: text/plain; charset=ISO-2022-JP\n";
121 121 $Headers .= "Content-Transfer-Encoding: 7bit";
122 122
  123 + $mlfr = "webmaster@media-tek.co.jp";
  124 +
123 125 // 準備
124 126 mb_language('Japanese');
125 127 mb_internal_encoding('EUC-JP');
... ... @@ -138,8 +140,9 @@ if (trim($MailTo)==""){
138 140 //$mlms = i18n_convert(stripslashes($MailBody), "JIS");
139 141 $mlms = mb_convert_encoding(stripslashes($MailBody), "JIS", "EUC-JP");
140 142
141   -
142   - $rcd = mail($mlto, $MailSubject, $mlms, $Headers);
  143 + //20170112 サーバ移行時にmedia-tek.co.jpへメールが飛ばない対応
  144 + //$rcd = mail($mlto, $MailSubject, $mlms, $Headers);
  145 + $rcd = mail($mlto, $MailSubject, $mlms, $Headers, "-f".$mlfr);
143 146 }
144 147
145 148 ?>
... ...

25.5 KB | W: | H:

25.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

25 KB | W: | H:

25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

32.3 KB | W: | H:

32.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
No preview for this file type

2.33 KB | W: | H:

2.33 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.3 KB | W: | H:

2.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

137 KB | W: | H:

137 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

480 KB | W: | H:

480 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

824 Bytes | W: | H:

824 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.38 KB | W: | H:

1.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.6 KB | W: | H:

2.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.73 KB | W: | H:

3.73 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.15 KB | W: | H:

4.15 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.96 KB | W: | H:

3.96 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.44 KB | W: | H:

2.44 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.29 KB | W: | H:

2.29 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.76 KB | W: | H:

5.76 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.29 KB | W: | H:

5.29 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.63 KB | W: | H:

5.63 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.44 KB | W: | H:

3.44 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.87 KB | W: | H:

3.87 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.8 KB | W: | H:

3.8 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.08 KB | W: | H:

1.08 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.94 KB | W: | H:

4.94 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.19 KB | W: | H:

6.19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.59 KB | W: | H:

6.59 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.11 KB | W: | H:

5.11 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.23 KB | W: | H:

4.23 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.6 KB | W: | H:

4.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.03 KB | W: | H:

1.03 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.09 KB | W: | H:

6.09 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.29 KB | W: | H:

6.29 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.23 KB | W: | H:

6.23 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.52 KB | W: | H:

4.52 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4 KB | W: | H:

4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.36 KB | W: | H:

4.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.05 KB | W: | H:

1.05 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.98 KB | W: | H:

5.98 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.01 KB | W: | H:

7.01 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.3 KB | W: | H:

7.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.49 KB | W: | H:

5.49 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.33 KB | W: | H:

4.33 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.95 KB | W: | H:

4.95 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.96 KB | W: | H:

3.96 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.68 KB | W: | H:

6.68 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.34 KB | W: | H:

6.34 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.72 KB | W: | H:

6.72 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.15 KB | W: | H:

5.15 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.25 KB | W: | H:

4.25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.79 KB | W: | H:

4.79 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.47 KB | W: | H:

6.47 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.53 KB | W: | H:

6.53 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.59 KB | W: | H:

6.59 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.35 KB | W: | H:

6.35 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.74 KB | W: | H:

4.74 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.23 KB | W: | H:

4.23 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.05 KB | W: | H:

5.05 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.1 KB | W: | H:

6.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.44 KB | W: | H:

6.44 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.14 KB | W: | H:

6.14 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.95 KB | W: | H:

5.95 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.33 KB | W: | H:

4.33 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.97 KB | W: | H:

3.97 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.49 KB | W: | H:

4.49 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.42 KB | W: | H:

6.42 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.66 KB | W: | H:

6.66 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.75 KB | W: | H:

6.75 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.39 KB | W: | H:

6.39 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.63 KB | W: | H:

4.63 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.35 KB | W: | H:

4.35 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.17 KB | W: | H:

5.17 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.95 KB | W: | H:

5.95 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.87 KB | W: | H:

6.87 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.6 KB | W: | H:

6.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.15 KB | W: | H:

6.15 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.44 KB | W: | H:

4.44 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.15 KB | W: | H:

4.15 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.87 KB | W: | H:

4.87 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.87 KB | W: | H:

5.87 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.79 KB | W: | H:

6.79 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.78 KB | W: | H:

6.78 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.24 KB | W: | H:

6.24 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.57 KB | W: | H:

4.57 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.4 KB | W: | H:

4.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.51 KB | W: | H:

5.51 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

898 Bytes | W: | H:

898 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1004 Bytes | W: | H:

1004 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

924 Bytes | W: | H:

924 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.36 KB | W: | H:

1.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.24 KB | W: | H:

4.24 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.01 KB | W: | H:

4.01 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.85 KB | W: | H:

2.85 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.28 KB | W: | H:

5.28 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.04 KB | W: | H:

6.04 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.7 KB | W: | H:

5.7 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.62 KB | W: | H:

5.62 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.94 KB | W: | H:

3.94 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.08 KB | W: | H:

4.08 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.55 KB | W: | H:

4.55 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.35 KB | W: | H:

6.35 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.87 KB | W: | H:

5.87 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.22 KB | W: | H:

6.22 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.96 KB | W: | H:

5.96 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.38 KB | W: | H:

4.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.19 KB | W: | H:

4.19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.25 KB | W: | H:

5.25 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.45 KB | W: | H:

5.45 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.66 KB | W: | H:

5.66 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.22 KB | W: | H:

5.22 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.67 KB | W: | H:

5.67 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.59 KB | W: | H:

4.59 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.12 KB | W: | H:

4.12 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.49 KB | W: | H:

4.49 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.67 KB | W: | H:

5.67 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.16 KB | W: | H:

6.16 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.83 KB | W: | H:

3.83 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.9 KB | W: | H:

4.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.98 KB | W: | H:

4.98 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.54 KB | W: | H:

4.54 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.62 KB | W: | H:

4.62 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.45 KB | W: | H:

5.45 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.03 KB | W: | H:

6.03 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.11 KB | W: | H:

4.11 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.02 KB | W: | H:

5.02 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.26 KB | W: | H:

4.26 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.8 KB | W: | H:

4.8 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.85 KB | W: | H:

3.85 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.22 KB | W: | H:

5.22 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.1 KB | W: | H:

6.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.8 KB | W: | H:

5.8 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.31 KB | W: | H:

5.31 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.64 KB | W: | H:

4.64 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.07 KB | W: | H:

5.07 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.26 KB | W: | H:

4.26 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.04 KB | W: | H:

3.04 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.5 KB | W: | H:

4.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.32 KB | W: | H:

5.32 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.51 KB | W: | H:

5.51 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.55 KB | W: | H:

4.55 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.21 KB | W: | H:

4.21 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.79 KB | W: | H:

3.79 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.86 KB | W: | H:

3.86 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.19 KB | W: | H:

6.19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.17 KB | W: | H:

6.17 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.46 KB | W: | H:

6.46 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.82 KB | W: | H:

5.82 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.62 KB | W: | H:

4.62 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.27 KB | W: | H:

4.27 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.79 KB | W: | H:

5.79 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.39 KB | W: | H:

6.39 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.43 KB | W: | H:

5.43 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

21.5 KB | W: | H:

21.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

13 KB | W: | H:

13 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.23 KB | W: | H:

3.23 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

111 Bytes | W: | H:

111 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

332 Bytes | W: | H:

332 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

68 Bytes | W: | H:

68 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

351 Bytes | W: | H:

351 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

138 Bytes | W: | H:

138 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.15 KB | W: | H:

3.15 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

92 Bytes | W: | H:

92 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.05 KB | W: | H:

1.05 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

8.02 KB | W: | H:

8.02 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.4 KB | W: | H:

10.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

8.46 KB | W: | H:

8.46 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.45 KB | W: | H:

5.45 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.05 KB | W: | H:

5.05 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

13 KB | W: | H:

13 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.26 KB | W: | H:

6.26 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.05 KB | W: | H:

7.05 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.5 KB | W: | H:

10.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.65 KB | W: | H:

3.65 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.08 KB | W: | H:

4.08 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.1 KB | W: | H:

10.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.66 KB | W: | H:

2.66 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

43 Bytes | W: | H:

43 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

9.95 KB | W: | H:

9.95 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.09 KB | W: | H:

6.09 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

931 Bytes | W: | H:

931 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.05 KB | W: | H:

1.05 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

8.02 KB | W: | H:

8.02 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.4 KB | W: | H:

10.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.9 KB | W: | H:

10.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

8.09 KB | W: | H:

8.09 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2 KB | W: | H:

2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.42 KB | W: | H:

6.42 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

15.5 KB | W: | H:

15.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

3.14 KB | W: | H:

3.14 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.36 KB | W: | H:

5.36 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

9.96 KB | W: | H:

9.96 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.08 KB | W: | H:

4.08 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

5.54 KB | W: | H:

5.54 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.66 KB | W: | H:

2.66 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

43 Bytes | W: | H:

43 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

14.2 KB | W: | H:

14.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

6.23 KB | W: | H:

6.23 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

10.3 KB | W: | H:

10.3 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

11.1 KB | W: | H:

11.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

931 Bytes | W: | H:

931 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

42.1 KB | W: | H:

42.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

24.4 KB | W: | H:

24.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

31.8 KB | W: | H:

31.8 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

26.1 KB | W: | H:

26.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

19 KB | W: | H:

19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

27 KB | W: | H:

27 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

12.5 KB | W: | H:

12.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

17.4 KB | W: | H:

17.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

26.9 KB | W: | H:

26.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

12.5 KB | W: | H:

12.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

19 KB | W: | H:

19 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

65.5 KB | W: | H:

65.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

32.9 KB | W: | H:

32.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

31.6 KB | W: | H:

31.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

42.1 KB | W: | H:

42.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

56.2 KB | W: | H:

56.2 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

71.5 KB | W: | H:

71.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

31.1 KB | W: | H:

31.1 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

180 KB | W: | H:

180 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

24.4 KB | W: | H:

24.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

97.9 KB | W: | H:

97.9 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

118 KB | W: | H:

118 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

141 KB | W: | H:

141 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

120 KB | W: | H:

120 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

275 KB | W: | H:

275 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

43.4 KB | W: | H:

43.4 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

77.6 KB | W: | H:

77.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

96.6 KB | W: | H:

96.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

37.6 KB | W: | H:

37.6 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

38.5 KB | W: | H:

38.5 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

4.18 KB | W: | H:

4.18 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

987 Bytes | W: | H:

987 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

7.53 KB | W: | H:

7.53 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.81 KB | W: | H:

1.81 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.38 KB | W: | H:

2.38 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
No preview for this file type

705 Bytes | W: | H:

705 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

841 Bytes | W: | H:

841 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

841 Bytes | W: | H:

841 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.02 KB | W: | H:

1.02 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.06 KB | W: | H:

1.06 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

987 Bytes | W: | H:

987 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

944 Bytes | W: | H:

944 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

957 Bytes | W: | H:

957 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

957 Bytes | W: | H:

957 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

70 Bytes | W: | H:

70 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

1.94 KB | W: | H:

1.94 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin

173 Bytes | W: | H:

173 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

451 Bytes | W: | H:

451 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

56 Bytes | W: | H:

56 Bytes | W: | H:

  • 2-up
  • Swipe
  • Onion skin

2.43 KB | W: | H:

2.43 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
Please register or login to post a comment