Extension:AutoProxyBlock
現在、この拡張機能は積極的な保守が行われていません! それでも機能する可能性はありますが、バグ報告や機能の要望は無視される可能性が高くなります。 この拡張機能の開発や保守の作業を引き受けることに興味がある場合は、リポジトリの所有権を申請できます。 礼儀として、作者に問い合わせることをお勧めします。 保守を引き継いだ場合、このテンプレートは除去すべきです。また、拡張機能ページの {{extension}} 基礎情報ボックス内のリストにあなたの名前を保守担当者として追加してください。 |
AutoProxyBlock リリースの状態: 保守されていない |
|
---|---|
実装 | 利用者アクセス |
説明 | Allows to block or logging proxy edits. |
作者 | Cryptocoryneトーク |
最新バージョン | 1.2.0 |
MediaWiki | 1.29+ |
ライセンス | GNU 一般公衆利用許諾書 2.0 以降 |
ダウンロード | |
|
|
|
|
translatewiki.net で翻訳を利用できる場合は、AutoProxyBlock 拡張機能の翻訳にご協力ください | |
問題点 | 未解決のタスク · バグを報告 |
The AutoProxyBlock extension allows to autoblock or logging (in common MediaWiki Log or by AbuseFilter) actions, performed through proxy.
インストール
- ダウンロードして、ファイルを
extensions/
フォルダー内のAutoProxyBlock
という名前のディレクトリ内に配置します。 - 以下のコードを LocalSettings.php の末尾に追加します:
wfLoadExtension( 'AutoProxyBlock' );
- 完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。
MediaWiki 1.24 以前を稼働させている利用者へ:
上記の手順では、wfLoadExtension()
を使用してこの拡張機能をインストールする新しい方法を記載しています。
この拡張機能をこれらの過去のバージョン (MediaWiki 1.24 以前) にインストールする必要がある場合は、wfLoadExtension( 'AutoProxyBlock' );
の代わりに以下を使用する必要があります:
require_once "$IP/extensions/AutoProxyBlock/AutoProxyBlock.php";
権限
- "proxyunbannable" (by default it's right of sysops) allow avoiding proxy blocks if edit-like actions forbidden.
- "notagproxychanges" protect account from tagging actions with "proxy" tag.
設定
- $wgProxyCanPerform -- array of actions, allowed to perform by proxy users (default -- "read" and "edit");
- $wgTagProxyActions -- if set to true, extension add public "proxy" tag to all matched actions.
- $wgAutoProxyBlockSources -- array of sources (proxy-lists):
- $wgAutoProxyBlockSources['api'] -- array of MediaWiki API urls, used for retrieving proxy information (i.e. English Wikipedia, many proxies blocked by Procsee Bot).
- $wgAutoProxyBlockSources['raw'] -- absolute path to local text files with proxy lists.
- $wgAutoProxyBlockSources['key'] -- string, regex to detect proxy block on foreigh site (i.e. proxies in enwiki blocked with key "blocked proxy").
- $wgAutoProxyBlockLog -- set to true for logging all forbidden proxy actions in Special:Log/proxyblock.