<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>管理全般に関するフォーラム</title>
    <link>https://moodle.org/mod/forum/view.php?f=1105</link>
    <description>　Moodleサイトを安全かつ快適に運用するための一般的な技術やテクニックに関する情報を交換するためのフォーラムです。インストール／アップグレード，セキュリティ，ユーザ管理に関する情報はそれぞれのフォーラムに投稿下さい。このフォーラムは2010年3月4日に開設されました。それ以前に提供された情報は「全般的日本語フォーラム」や「Moodle開発者フォーラム」に投稿されていますので、本フォーラムで目的の情報が発見できなかった場合はそちらをご参照下さい。</description>
    <generator>Moodle</generator>
    <language>en</language>
    <copyright>(c) 2026 Moodle - Open-source learning platform | Moodle.org</copyright>
    <image>
      <url>https://moodle.org/theme/image.php/moodleorg/core/1777401252/i/rsssitelogo</url>
      <title>moodle</title>
      <link>https://moodle.org</link>
      <width>140</width>
      <height>35</height>
    </image>
    <item>
      <title>password 再設定以外の e-mail 送信を止める方法</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=469857&amp;parent=1886298</link>
      <pubDate>Mon, 15 Sep 2025 12:02:23 GMT</pubDate>
      <description>by Takayuki ISHIKAWA. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;text_to_html&quot;&gt;ありがとうございます。試してみます。&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=469857&amp;parent=1886298</guid>
    </item>
    <item>
      <title>password 再設定以外の e-mail 送信を止める方法</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=469857&amp;parent=1886295</link>
      <pubDate>Mon, 15 Sep 2025 11:41:37 GMT</pubDate>
      <description>by Mitsuhiro Yoshida. &amp;nbsp;&lt;p&gt;
&lt;p&gt;以下のプログラム修正でご希望の動作になるかと思います。&lt;/p&gt;
&lt;pre&gt;&lt;span style=&quot;color: #88888;&quot;&gt;修正対象プログラム:&lt;br&gt;lib/moodlelib.php
&lt;/span&gt;
修正箇所:&lt;br&gt;5633行目
[ 修正前 ]&lt;br&gt;    if (over_bounce_threshold($user)) {&lt;br&gt;        debugging(&quot;email_to_user: User $user-&amp;gt;id (&quot;.fullname($user).&quot;) is over bounce threshold! Not sending.&quot;);&lt;br&gt;        return false;&lt;br&gt;    }
&lt;br&gt;    // TLD .invalid  is specifically reserved for invalid domain names.&lt;br&gt;    // For More information, see {@link &lt;a href=&quot;http://tools.ietf.org/html/rfc2606#section-2&quot; class=&quot;_blanktarget&quot;&gt;http://tools.ietf.org/html/rfc2606#section-2&lt;/a&gt;}.&lt;br&gt;    if (substr($user-&amp;gt;email, -8) == '.invalid') {&lt;br&gt;        debugging(&quot;email_to_user: User $user-&amp;gt;id (&quot;.fullname($user).&quot;) email domain ($user-&amp;gt;email) is invalid! Not sending.&quot;);&lt;br&gt;        return true; // This is not an error.&lt;br&gt;    }
&lt;br&gt;[ 修正後 ]&lt;br&gt;    if (over_bounce_threshold($user)) {&lt;br&gt;        debugging(&quot;email_to_user: User $user-&amp;gt;id (&quot;.fullname($user).&quot;) is over bounce threshold! Not sending.&quot;);&lt;br&gt;        return false;&lt;br&gt;    }
&lt;span style=&quot;color: #0000ff;&quot;&gt;&lt;br&gt;// ▼▼▼ Start of added body filter ▼▼▼&lt;br&gt;    $combinedbody = $messagetext . ' ' . $messagehtml;&lt;br&gt;    if (strpos($combinedbody, 'forgot_password.php') === false) {&lt;br&gt;        // Do not send if 'forgot_password.php' is not found in the body&lt;br&gt;        debugging('email_to_user: blocked mail (no forgot_password.php in body). Subject: '.s($subject), DEBUG_DEVELOPER);&lt;br&gt;        return true;  // Returning true means “intentionally not sending” (treated as success)&lt;br&gt;    }&lt;br&gt;// ▲▲▲ End of added body filter ▲▲▲&lt;/span&gt;
&lt;br&gt;    // TLD .invalid  is specifically reserved for invalid domain names.&lt;br&gt;    // For More information, see {@link &lt;a href=&quot;http://tools.ietf.org/html/rfc2606#section-2&quot; class=&quot;_blanktarget&quot;&gt;http://tools.ietf.org/html/rfc2606#section-2&lt;/a&gt;}.&lt;br&gt;    if (substr($user-&amp;gt;email, -8) == '.invalid') {&lt;br&gt;        debugging(&quot;email_to_user: User $user-&amp;gt;id (&quot;.fullname($user).&quot;) email domain ($user-&amp;gt;email) is invalid! Not sending.&quot;);&lt;br&gt;        return true; // This is not an error.&lt;br&gt;    }&lt;/pre&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=469857&amp;parent=1886295</guid>
    </item>
    <item>
      <title>password 再設定以外の e-mail 送信を止める方法</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=469857&amp;parent=1886286</link>
      <pubDate>Mon, 15 Sep 2025 09:56:34 GMT</pubDate>
      <description>by Takayuki ISHIKAWA. &amp;nbsp;&lt;p&gt;&lt;p&gt;password 再設定以外の e-mail 送信を止める方法、どなたかご存知ないでしょうか。&lt;/p&gt;
&lt;p&gt;spam 判定されないように e-mail server を設定できればよいのでしょうが、SPF, DKIM, DMARC を設定するのが面倒でして、本音を言うと e-mail 送信を全て止めたいです。ただ、password 再設定まで止めると困るので、これだけを残したいと考えています。&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Moodle 5.0.1+&lt;/li&gt;
&lt;li&gt;PHP 8.4.12&lt;/li&gt;
&lt;li&gt;CentOS Stream 9&lt;/li&gt;
&lt;li&gt;Apache 2.4.62&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=469857&amp;parent=1886286</guid>
    </item>
    <item>
      <title>moodle5.0に更新したら画像の表示ができていない。</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877237</link>
      <pubDate>Mon, 21 Apr 2025 02:10:46 GMT</pubDate>
      <description>by カツミ ヤマサキ. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;text_to_html&quot;&gt;自己解決しました。結局moodle5.0を再インストール。zipでdownloadして mv moodle /var/www/html/moodle&lt;br /&gt;
で移動します。ここで、config.phpは作らない。&lt;br /&gt;
chmod 777 /var/www/html/moodle　と書き込み可能の状態でブラウザでインストール作業を進めます。&lt;br /&gt;
エラーがないことを確認したら、必要に応じて&lt;br /&gt;
chown -R www-data:www-data /var/www/moodle&lt;br /&gt;
です。&lt;br /&gt;
chmod 755 /var/www/html/moodle&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877237</guid>
    </item>
    <item>
      <title>moodle5.0に更新したら画像の表示ができていない。</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877216</link>
      <pubDate>Sun, 20 Apr 2025 14:27:00 GMT</pubDate>
      <description>by カツミ ヤマサキ. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;text_to_html&quot;&gt;moodle5.0はphp8.4に対応と書いてあったのですが。moodle4.5に戻す事を考えています。&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877216</guid>
    </item>
    <item>
      <title>moodle5.0に更新したら画像の表示ができていない。</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877207</link>
      <pubDate>Sun, 20 Apr 2025 12:39:04 GMT</pubDate>
      <description>by カツミ ヤマサキ. &amp;nbsp;&lt;p&gt;&lt;p&gt;cgi.fix_pathinfoは１です。&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;img-fluid&quot; src=&quot;https://moodle.org/pluginfile.php/423106/mod_forum/post/1877207/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202025-04-20%20213653.png&quot; alt=&quot;CGI&quot; width=&quot;1002&quot; height=&quot;416&quot; /&gt;&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877207</guid>
    </item>
    <item>
      <title>moodle5.0に更新したら画像の表示ができていない。</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877206</link>
      <pubDate>Sun, 20 Apr 2025 11:20:21 GMT</pubDate>
      <description>by カツミ ヤマサキ. &amp;nbsp;&lt;p&gt;&lt;p&gt;日本語も掲載します。&lt;/p&gt;
&lt;p&gt;&lt;img class=&quot;img-fluid&quot; src=&quot;https://moodle.org/pluginfile.php/423106/mod_forum/post/1877206/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202025-04-20%20201513jpg.jpg&quot; alt=&quot;jpg&quot; width=&quot;1200&quot; height=&quot;909&quot; /&gt;&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877206</guid>
    </item>
    <item>
      <title>moodle5.0に更新したら画像の表示ができていない。</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877199</link>
      <pubDate>Sun, 20 Apr 2025 09:34:28 GMT</pubDate>
      <description>by カツミ ヤマサキ. &amp;nbsp;&lt;p&gt;&lt;p&gt;どうやら、テーマの更新に関することが原因のようです。&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877199</guid>
    </item>
    <item>
      <title>moodle5.0に更新したら画像の表示ができていない。</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877197</link>
      <pubDate>Sun, 20 Apr 2025 09:29:40 GMT</pubDate>
      <description>by カツミ ヤマサキ. &amp;nbsp;&lt;p&gt;&lt;div class=&quot;text_to_html&quot;&gt;それでもあまり変化なし。&lt;/div&gt;
&lt;div class=&quot;text_to_html&quot;&gt;&lt;img class=&quot;img-fluid&quot; src=&quot;https://moodle.org/pluginfile.php/423106/mod_forum/post/1877197/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202025-04-20%20182843.png&quot; alt=&quot;がぞう&quot; width=&quot;1017&quot; height=&quot;960&quot; /&gt;&lt;/div&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877197</guid>
    </item>
    <item>
      <title>moodle5.0に更新したら画像の表示ができていない。</title>
      <link>https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877195</link>
      <pubDate>Sun, 20 Apr 2025 09:24:27 GMT</pubDate>
      <description>by カツミ ヤマサキ. &amp;nbsp;&lt;p&gt;&lt;p&gt;エラーが出たplunin　coderunnerをアンインストールするとしたの画面。pluginは画像のようです。&lt;img class=&quot;img-fluid&quot; src=&quot;https://moodle.org/pluginfile.php/423106/mod_forum/post/1877195/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88%202025-04-20%20181907.png&quot; alt=&quot;ｐｈｐ&quot; width=&quot;1200&quot; height=&quot;1164&quot; /&gt;&lt;/p&gt;&lt;/p&gt;</description>
      <guid isPermaLink="true">https://moodle.org/mod/forum/discuss.php?d=467589&amp;parent=1877195</guid>
    </item>
  </channel>
</rss>