Extension:AutoProxyBlock
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
AutoProxyBlock Utgivningsstatus: inte underhållen |
|
---|---|
Genomförande | Användartillgång |
Beskrivning | Allows to block or logging proxy edits. |
Författare | Cryptocorynediskussion |
Senaste versionen | 1.2.0 |
MediaWiki | 1.29+ |
Licenser | GNU General Public License 2.0 eller senare |
Ladda ner | |
|
|
|
|
Översätt tillägget AutoProxyBlock om det finns tillgängligt på translatewiki.net | |
Ärenden | Öppna ärenden · Rapportera en bugg |
The AutoProxyBlock extension allows to autoblock or logging (in common MediaWiki Log or by AbuseFilter) actions, performed through proxy.
Installering
- Ladda ner och placera filen/filerna i en katalog som heter
AutoProxyBlock
i dinextensions/
-mapp. - Lägg till följande kod längst ner i dina LocalSettings.php:
wfLoadExtension( 'AutoProxyBlock' );
- Klart – Ta dig till Special:Version på din wiki för att bekräfta att tillägget har installerats ordentligt.
För användare som kör MediaWiki 1.24 eller äldre:
Instruktionerna ovan beskriver det nya sättet att installera tillägget med wfLoadExtension()
.
Behöver du installera tillägget på en äldre version (MediaWiki 1.24 eller äldre), så behöver du, istället för wfLoadExtension( 'AutoProxyBlock' );
, använda:
require_once "$IP/extensions/AutoProxyBlock/AutoProxyBlock.php";
Rättigheter
- "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.
Inställningar
- $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.