(Go: >> BACK << -|- >> HOME <<)

build: Updating composer dependencies

* mediawiki/minus-x: 1.1.1 → 1.1.3
* php-parallel-lint/php-parallel-lint: 1.3.2 → 1.4.0

Change-Id: Ied0958fb8376a7a18dd8ad4c661f26477d944bd1
1 file changed
tree: f8e033b2220d126034082c318efda25b73ffc787
  1. .phan/
  2. i18n/
  3. includes/
  4. maintenance/
  5. sql/
  6. tests/
  7. .eslintrc.json
  8. .gitignore
  9. .gitreview
  10. .phpcs.xml
  11. CODE_OF_CONDUCT.md
  12. composer.json
  13. COPYING
  14. extension.json
  15. Gruntfile.js
  16. package-lock.json
  17. package.json
  18. README.md
  19. UserAvatar.svg
README.md

The LoginNotify extension notifies you when someone logs into your account. It can be configured to give warnings after a certain number of failed login attempts (The number is configurable, and can be different between unknown IPs/devices and known IP/devices). It can also give echo/email notices for successful logins from IPs you don't normally use. It can optionally integrate into the CheckUser extension in order to determine if the login is from an IP address you don't normally use. It can also set a cookie to try and determine if the login is from a device you normally use.

Installation

  • This extension requires the Echo extension to be installed. This extension can optionally integrate with the CheckUser extension if it is installed, but does not require it.
  • Download and place the file(s) in a directory called LoginNotify in your extensions/ folder.
  • Add the following code at the bottom of your LocalSettings.php: wfLoadExtension( 'LoginNotify' );
  • Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Configuration parameters

See extension.json.

To place the loginnotify_seen_net table in a shared database, use

$wgVirtualDomainsMapping['virtual-LoginNotify'] = [
	'db' => '<shared database name>'
];
$wgLoginNotifyUseCentralId = true;