Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [UNRELEASED]

### Added

- GLPI 12 compatibility
- Sudo mode

## [1.5.4] - 2026-08-04

### Fixed

- Show the specific OAuth authorization error instead of a generic message
- Ignore the connection host/port/security level entered on the authorization diagnostic form and always use the provider's own values
- Escape mail collector host and login when displayed on the application's "Mail collectors" tab

## [1.5.3] - 2026-06-24

Expand Down
5 changes: 5 additions & 0 deletions inc/application.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ public static function getIcon()
return 'ti ti-login-2';
}

protected static function itemTypeRequiresReauthentication(): bool
{
return true;
}

public static function canCreate(): bool
{
return static::canUpdate();
Expand Down
5 changes: 5 additions & 0 deletions inc/authorization.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ class PluginOauthimapAuthorization extends CommonDBChild
// From CommonGlpi
protected $displaylist = false;

protected static function itemTypeRequiresReauthentication(): bool
{
return true;
}

// From CommonDBTM
public $dohistory = true;

Expand Down