mirror of
https://github.com/silentsakky/zarafa-webapp-passwd
synced 2026-07-27 10:30:56 +02:00
- add flag to enable/disable strict password checking - use entryptionstore to store/retrieve passwords - remove builds directory, we will be maintaining builds using release versions - update documentation
46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE plugin SYSTEM "manifest.dtd">
|
|
<plugin version="2">
|
|
<info>
|
|
<version>1.3</version>
|
|
<name>Passwd</name>
|
|
<title>Password Change Plugin</title>
|
|
<author>Saket Patel</author>
|
|
<authorURL>https://github.com/silentsakky</authorURL>
|
|
<description>Change your password from webapp</description>
|
|
</info>
|
|
<config>
|
|
<configfile>config.php</configfile>
|
|
</config>
|
|
<translations>
|
|
<translationsdir>language</translationsdir>
|
|
</translations>
|
|
|
|
<components>
|
|
<component>
|
|
<files>
|
|
<server>
|
|
<serverfile>php/plugin.passwd.php</serverfile>
|
|
<serverfile type="module" module="passwdmodule">php/class.passwdmodule.php</serverfile>
|
|
</server>
|
|
<client>
|
|
<clientfile load="release">js/passwd.js</clientfile>
|
|
<clientfile load="debug">js/passwd-debug.js</clientfile>
|
|
|
|
<clientfile load="source">js/PasswdPlugin.js</clientfile>
|
|
<clientfile load="source">js/settings/SettingsPasswdCategory.js</clientfile>
|
|
<clientfile load="source">js/settings/SettingsPasswdWidget.js</clientfile>
|
|
<clientfile load="source">js/settings/PasswdPanel.js</clientfile>
|
|
<clientfile load="source">js/data/PasswdResponseHandler.js</clientfile>
|
|
<clientfile load="source">js/ABOUT.js</clientfile>
|
|
<clientfile load="source">js/external/PasswordMeter.js</clientfile>
|
|
</client>
|
|
<resources>
|
|
<resourcefile load="release">resources/css/passwd.css</resourcefile>
|
|
<resourcefile load="debug">resources/css/passwd.css</resourcefile>
|
|
<resourcefile load="source">resources/css/passwd-main.css</resourcefile>
|
|
</resources>
|
|
</files>
|
|
</component>
|
|
</components>
|
|
</plugin>
|