pax_global_header00006660000000000000000000000064134374703100014514gustar00rootroot0000000000000052 comment=d62a0308f8dc4980a1909ac73b42d5e870225c4d fusiondirectory-plugins-1.3/000077500000000000000000000000001343747031000162665ustar00rootroot00000000000000fusiondirectory-plugins-1.3/.gitignore000066400000000000000000000000141343747031000202510ustar00rootroot00000000000000.directory fusiondirectory-plugins-1.3/.gitlab-ci.yml000066400000000000000000000073631343747031000207330ustar00rootroot00000000000000# Specify docker image image: debian:stretch # Define variable to disable SSL verification of GIT variables: GIT_SSL_NO_VERIFY: "true" stages: - lint - codestyle - manpages - transifex - tarballs ## Stage lint # PHP lint (jessie) create_php_lint_rapport_jessie: image: php:5.6.33-cli-jessie stage: lint only: - branches script: - find . -type f -name '*.php' -o -name '*.inc' -print0 | xargs -0 -n1 php -l # PHP lint (stretch) create_php_lint_rapport_stretch: image: php:cli-stretch stage: lint only: - branches script: - find . -type f -name '*.php' -o -name '*.inc' -print0 | xargs -0 -n1 php -l ## Stage codestyle # PHP codesniffer create_php_code_sniffer_rapport_13: stage: codestyle only: - branches before_script: - apt-get update -qq - apt-get install -y -qq git php-cli php-codesniffer script: - git clone https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git -b 1.3 ../dev-tools - find . -type f -name '*.php' -o -name '*.inc' > ./filelist - phpcs --ignore=class_sieve.inc --standard=../dev-tools/php-codesniffer-rules/FDStandard/ruleset.xml --file-list=./filelist # Sonar publishing sonar_publish: image: sonar-cli:3.1.0.1141 stage: codestyle only: - 1.3-dev script: - /home/sonar/*/bin/sonar-scanner -D sonar.projectKey=fusiondirectory-plugins-dev -D sonar.projectName=FusionDirectory-Plugins-Dev -D sonar.projectVersion=1.3 -D sonar.sourceEncoding=UTF-8 -D sonar.exclusions='mail/personal/mail/class_sieve.inc' -D sonar.gitlab.project_id="$CI_PROJECT_PATH" -D sonar.gitlab.commit_sha="$CI_COMMIT_SHA" -D sonar.gitlab.ref_name="$CI_COMMIT_REF_NAME" # Sonar preview sonar_preview: image: sonar-cli:3.1.0.1141 stage: codestyle except: - 1.3-dev script: - /home/sonar/*/bin/sonar-scanner -D sonar.projectKey=fusiondirectory-plugins-dev -D sonar.projectName=FusionDirectory-Plugins-Dev -D sonar.projectVersion=1.3 -D sonar.sourceEncoding=UTF-8 -D sonar.exclusions='mail/personal/mail/class_sieve.inc' -D sonar.gitlab.project_id="$CI_PROJECT_PATH" -D sonar.gitlab.commit_sha="$CI_COMMIT_SHA" -D sonar.gitlab.ref_name="$CI_COMMIT_REF_NAME" -D sonar.analysis.mode=preview # fusiondirectory-update-locale fusiondirectory-update-locale: image: php:cli-stretch stage: transifex only: - branches before_script: - apt-get update -qq - apt-get install -y -qq gettext git script: - git clone https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools - ../dev-tools/locale-scripts/fusiondirectory-update-locale-plugins # Update transifex update-transifex: image: php:cli-stretch stage: transifex only: - /^1.*$/ before_script: - apt-get update -qq - apt-get install -y -qq gettext git transifex-client script: - git clone https://gitlab.fusiondirectory.org/fusiondirectory/dev-tools.git ../dev-tools - echo $'[https://www.transifex.com]\nhostname = https://www.transifex.com\nusername = '"$TRANSIFEX_USER"$'\npassword = '"$TRANSIFEX_PASSWORD"$'\ntoken = '"$TRANSIFEX_API_TOKEN"$'\n' > ~/.transifexrc - tx pull -a -f - ../dev-tools/locale-scripts/fusiondirectory-update-locale-plugins - tx push -f -s -t --skip --no-interactive build-tarballs: stage: tarballs script: - tar -cvzf fusiondirectory-plugins.tar.gz * artifacts: paths: - fusiondirectory-plugins.tar.gz expire_in: 1h build-release: stage: tarballs only: - tags script: - tar -cvzf fusiondirectory-plugins-$(grep '%' Changelog.md | head -n1 | cut -d ' ' -f3 | tr -d '"').tar.gz * artifacts: paths: - fusiondirectory-plugins-$(grep '%' Changelog.md | head -n1 | cut -d ' ' -f3 | tr -d '"').tar.gz fusiondirectory-plugins-1.3/.gitlab/000077500000000000000000000000001343747031000176065ustar00rootroot00000000000000fusiondirectory-plugins-1.3/.gitlab/.gitkeep000066400000000000000000000000001343747031000212250ustar00rootroot00000000000000fusiondirectory-plugins-1.3/.gitlab/issue_templates/000077500000000000000000000000001343747031000230145ustar00rootroot00000000000000fusiondirectory-plugins-1.3/.gitlab/issue_templates/.gitkeep000066400000000000000000000000001343747031000244330ustar00rootroot00000000000000fusiondirectory-plugins-1.3/.gitlab/issue_templates/Backporting.md000066400000000000000000000012361343747031000256030ustar00rootroot00000000000000### Description ### Source FusionDirectory Version ### Destination FusionDirectory Version ### Plugin with the new code ### Reason of Backporting code ### What defect does it correct ### Additional Information fusiondirectory-plugins-1.3/.gitlab/issue_templates/Bugs.md000066400000000000000000000015241343747031000242400ustar00rootroot00000000000000### Description ### Distribution Name and Version ### FusionDirectory Version ### Plugin with the defect ### PHP version used ### Origin of php packages ### Steps to Reproduce 1. [First Step] 2. [Second Step] 3. [and so on...] **Expected behavior:** **Actual behavior:** **Reproduces how often:** ### Additional Information fusiondirectory-plugins-1.3/.gitlab/issue_templates/Contribution.md000066400000000000000000000016441343747031000260220ustar00rootroot00000000000000### Requirements * Filling out the template is required. Any Enhancement request that does not include enough information to be reviewed in a timely manner may be closed at the maintainers' discretion. * All new code requires tests to ensure against regressions ## Descriptive title for this contribution ### Step by step description of this contribution 1. [First Step] 2. [Second Step] 3. [and so on...] ### Schemas needed by this contribution ### Benefits ### Possible Drawbacks ### Actual use cases fusiondirectory-plugins-1.3/.gitlab/issue_templates/Enhancement.md000066400000000000000000000015311343747031000255630ustar00rootroot00000000000000### Requirements * Filling out the template is required. Any Enhancement request that does not include enough information to be reviewed in a timely manner may be closed at the maintainers' discretion. * All new code requires tests to ensure against regressions ## Descriptive title for this enhancement ### Actual behavior ### Expected behavior ### Step by step description of new behaviour 1. [First Step] 2. [Second Step] 3. [and so on...] ### Benefits ### Possible Drawbacks ### Applicable Issues fusiondirectory-plugins-1.3/.gitlab/merge_request_templates/000077500000000000000000000000001343747031000245335ustar00rootroot00000000000000fusiondirectory-plugins-1.3/.gitlab/merge_request_templates/.gitkeep000066400000000000000000000000001343747031000261520ustar00rootroot00000000000000fusiondirectory-plugins-1.3/.gitlab/merge_request_templates/Merge.md000066400000000000000000000013071343747031000261150ustar00rootroot00000000000000### Requirements * Filling out the template is required. Any pull request that does not include enough information to be reviewed in a timely manner may be closed at the maintainers' discretion. * All new code requires tests to ensure against regressions ## Title of the Pull Requests ### Description of the Change ### Benefits ### Possible Drawbacks ### Applicable Issues fusiondirectory-plugins-1.3/.tx/000077500000000000000000000000001343747031000167775ustar00rootroot00000000000000fusiondirectory-plugins-1.3/.tx/config000066400000000000000000000173311343747031000201740ustar00rootroot00000000000000[main] host = https://www.transifex.com type = PO [FusionDirectory-13.alias] file_filter = alias/locale//fusiondirectory.po source_file = alias/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.applications] file_filter = applications/locale//fusiondirectory.po source_file = applications/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.argonaut] file_filter = argonaut/locale//fusiondirectory.po source_file = argonaut/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.audit] file_filter = audit/locale//fusiondirectory.po source_file = audit/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.autofs] file_filter = autofs/locale//fusiondirectory.po source_file = autofs/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.certificates] file_filter = certificates/locale//fusiondirectory.po source_file = certificates/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.community] file_filter = community/locale//fusiondirectory.po source_file = community/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.cyrus] file_filter = cyrus/locale//fusiondirectory.po source_file = cyrus/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.debconf] file_filter = debconf/locale//fusiondirectory.po source_file = debconf/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.developers] file_filter = developers/locale//fusiondirectory.po source_file = developers/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.dhcp] file_filter = dhcp/locale//fusiondirectory.po source_file = dhcp/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.dns] file_filter = dns/locale//fusiondirectory.po source_file = dns/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.dovecot] file_filter = dovecot/locale//fusiondirectory.po source_file = dovecot/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.dsa] file_filter = dsa/locale//fusiondirectory.po source_file = dsa/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.ejbca] file_filter = ejbca/locale//fusiondirectory.po source_file = ejbca/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.fai] file_filter = fai/locale//fusiondirectory.po source_file = fai/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.freeradius] file_filter = freeradius/locale//fusiondirectory.po source_file = freeradius/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.fusioninventory] file_filter = fusioninventory/locale//fusiondirectory.po source_file = fusioninventory/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.gpg] file_filter = gpg/locale//fusiondirectory.po source_file = gpg/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.ipmi] file_filter = ipmi/locale//fusiondirectory.po source_file = ipmi/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.ldapdump] file_filter = ldapdump/locale//fusiondirectory.po source_file = ldapdump/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.ldapmanager] file_filter = ldapmanager/locale//fusiondirectory.po source_file = ldapmanager/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.mail] file_filter = mail/locale//fusiondirectory.po source_file = mail/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.mixedgroups] file_filter = mixedgroups/locale//fusiondirectory.po source_file = mixedgroups/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.nagios] file_filter = nagios/locale//fusiondirectory.po source_file = nagios/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.netgroups] file_filter = netgroups/locale//fusiondirectory.po source_file = netgroups/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.newsletter] file_filter = newsletter/locale//fusiondirectory.po source_file = newsletter/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.opsi] file_filter = opsi/locale//fusiondirectory.po source_file = opsi/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.personal] file_filter = personal/locale//fusiondirectory.po source_file = personal/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.postfix] file_filter = postfix/locale//fusiondirectory.po source_file = postfix/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.posix] file_filter = posix/locale//fusiondirectory.po source_file = posix/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.ppolicy] file_filter = ppolicy/locale//fusiondirectory.po source_file = ppolicy/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.puppet] file_filter = puppet/locale//fusiondirectory.po source_file = puppet/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.pureftpd] file_filter = pureftpd/locale//fusiondirectory.po source_file = pureftpd/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.quota] file_filter = quota/locale//fusiondirectory.po source_file = quota/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.repository] file_filter = repository/locale//fusiondirectory.po source_file = repository/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.renater-partage] file_filter = renater-partage/locale//fusiondirectory.po source_file = renater-partage/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.samba] file_filter = samba/locale//fusiondirectory.po source_file = samba/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.sinaps] file_filter = sinaps/locale//fusiondirectory.po source_file = sinaps/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.sogo] file_filter = sogo/locale//fusiondirectory.po source_file = sogo/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.spamassassin] file_filter = spamassassin/locale//fusiondirectory.po source_file = spamassassin/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.squid] file_filter = squid/locale//fusiondirectory.po source_file = squid/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.ssh] file_filter = ssh/locale//fusiondirectory.po source_file = ssh/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.subcontracting] file_filter = subcontracting/locale//fusiondirectory.po source_file = subcontracting/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.sudo] file_filter = sudo/locale//fusiondirectory.po source_file = sudo/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.supann] file_filter = supann/locale//fusiondirectory.po source_file = supann/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.sympa] file_filter = sympa/locale//fusiondirectory.po source_file = sympa/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.systems] file_filter = systems/locale//fusiondirectory.po source_file = systems/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.user-reminder] file_filter = user-reminder/locale//fusiondirectory.po source_file = user-reminder/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.weblink] file_filter = weblink/locale//fusiondirectory.po source_file = weblink/locale/en/fusiondirectory.po source_lang = en [FusionDirectory-13.webservice] file_filter = webservice/locale//fusiondirectory.po source_file = webservice/locale/en/fusiondirectory.po source_lang = en fusiondirectory-plugins-1.3/CODE_OF_CONDUCT.md000066400000000000000000000062611343747031000210720ustar00rootroot00000000000000# Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at . All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [https://www.contributor-covenant.org/version/1/4][version] [homepage]: https://www.contributor-covenant.org [version]: https://www.contributor-covenant.org/version/1/4/ fusiondirectory-plugins-1.3/CONTRIBUTING.md000066400000000000000000000236631343747031000205310ustar00rootroot00000000000000# Contributing to FusionDirectory projects ## Table Of Contents 1. [Welcome](#Welcome) 2. [Code of Conduct](#code-of-conduct) 3. [I just have a question!](#i-just-have-a-question) 4. [How Can I Contribute?](#how-can-i-contribute) * [Translate FusionDirectory in your language](#translate-fusiondirectory) * [Finding Wonderful Bugs](#finding-wonderful-bugs) * [Any Feedback To Enhance Our Apps](#any-feedback-to-enhance-our-apps) * [Your Awesome And Mighty Codes Contributions](#your-awesome-and-mighty-codes-contributions) 5. [Coding with style](#coding-with-style) * [Git Commit Messages](#git-commit-messages) * [PHP Style Guide](#php-style-guide) 6. [Licensing](#licensing) --- ## Welcome > «Here's a list of our guidelines, If you want to share a best practice, or think one of these guidelines should be removed, feel free to share it with us.» :tada: First off, thanks for taking the time to contribute! Now, sit comfortably at the fireplace, grab your glasses and immerse yourself in our documentation. ## Code Of Conduct All projects and everyone participating in it is governed by [FusionDirectory Code Of Conduct](./CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. Please read this before. ## I just have a question! > **Note:** Please don't file an issue to ask a question. You'll get faster results by using the resource below. We have an various channel of communications * [#fusiondirectory, the irc channel of FusionDirectory on freenode](https://webchat.freenode.net/), channel #fusiondirectory * [FusionDirectory Users mailing list](https://lists.fusiondirectory.org/wws/info/users) * [FusionDirectory dev mailing list](https://lists.fusiondirectory.org/wws/info/developpers) ## How Can I Contribute? So, you've developed a new cool feature? Fixed an annoying bug? Found a mistake? Want to help translate FusionDirectory in your own language. We'd be happy to hear from you! :+1: ### Translate FusionDirectory We are using [Transifex](https://www.transifex.com/fusiondirectory/FusionDirectory-1x/) to translate FusionDirectory. * Create a transifex account * Ask to be added to the language group you want to translate * Start translating ### Register for a FusionDirectory project account To create a FusionDirectory project Account you must go to * [FusionDirectory Sign UP](https://register.fusiondirectory.org) ### Put FusionDirectory in debug mode * Go into FusionDirectory configuration * Activate the displaying of PHP errors, and the TRACE debug level ### Finding Wonderful Bugs >This section guides you through submitting a bug report. Following these guidelines helps maintainers and the community understand your report, reproduce the behavior, and find related reports. When you are creating a bug report, please include as many details as possible. Fill out the **Bugs** template to create issues, the information it asks for helps us resolve issues faster. Explain the problem and include additional details to help maintainers reproduce the problem: * **Use a clear and descriptive title** for the issue to identify the problem. * **Describe the exact steps which reproduce the problem** in as many details as possible. For example, start by explaining wich brower and it's version. When listing steps, don't just say what you did, but explain how you did it. For example, if you moved the cursor to the end of an input, explain if you used the mouse, or a keyboard. * **Describe the behavior** you observed after following the steps and point out what exactly is the problem with that behavior. * **Explain which behavior** you expected to see instead and why. * **Include screenshots and animated GIFs** which show you following the described steps and clearly demonstrate the problem. You can use [this tool](http://www.cockos.com/licecap/) to record GIFs on macOS and Windows, and this tool or [this tool](https://github.com/GNOME/byzanz) on Linux. * **Include the PHP errors and trace** collected at the debug step above * **If the problem is linked to a specific LDAP entry** attach its LDAP dump. Fill in a report on : * [FusionDirectory](https://gitlab.fusiondirectory.org/fusiondirectory/fd/issues) for the core program * [FusionDirectory Plugins](https://gitlab.fusiondirectory.org/fusiondirectory/fd-plugins/issues) for plugins. ### Any Feedback To Enhance FusionDirectory >This section guides you through submitting an enhancement suggestion, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion and find related suggestions. When you are creating a enhancement report, please include as many details as possible. Fill out the **Enhancement** template to create thoses issues, the information it asks for helps us resolve issues faster. * [FusionDirectory](https://gitlab.fusiondirectory.org/fusiondirectory/fd/issues) for the core program * [FusionDirectory Plugins](https://gitlab.fusiondirectory.org/fusiondirectory/fd-plugins/issues) for plugins. * **Use a clear and descriptive title** for the issue to identify the suggestion. * **Provide a step-by-step description of the suggested enhancement** in as many details as possible. * **Describe the current behavior** and **explain which behavior you expected to see instead** and why. * **Include screenshots and animated GIFs** which help you demonstrate the steps which the suggestion is related to. You can use [this tool](http://www.cockos.com/licecap/) to record GIFs on macOS and Windows, and [this tool](https://github.com/colinkeenan/silentcast) or [this tool](https://github.com/GNOME/byzanz) on Linux. * **Explain why this enhancement would be useful** to most FusionDirectory users. ### Your awesome And Mighty Codes Contributions >This section guides you through submitting an enhancement suggestion, including completely new features and minor improvements to existing functionality. Following these guidelines helps maintainers and the community understand your suggestion and find related suggestions. When you are contributing a new fonctionnality or plugin, please include as many details as possible. Fill out the **Contribution** template to create thoses issues, the information it asks for helps us resolve issues faster. * [FusionDirectory](https://gitlab.fusiondirectory.org/fusiondirectory/fd/issues) for the core program * [FusionDirectory Plugins](https://gitlab.fusiondirectory.org/fusiondirectory/fd-plugins/issues) for plugins. * **Use a clear and descriptive title** for the issue to identify your contribution * **Provide a step-by-step description of the contribution** in as many details as possible. * **Include screenshots and animated GIFs** which help you demonstrate what this contribution is about. You can use [this tool](http://www.cockos.com/licecap/) to record GIFs on macOS and Windows, and [this tool](https://github.com/colinkeenan/silentcast) or [this tool](https://github.com/GNOME/byzanz) on Linux. * **Explain why this contribution would be useful** to most FusionDirectory users. * **Follow the** [Coding style](https://fusiondirectory-developer-documentation.readthedocs.io/en/latest/coding/codingstandards.html) * **Use our** `PHP CodeSniffer `_ rules to check code compliance [CodeSniffer](https://fusiondirectory-developer-documentation.readthedocs.io/en/latest/coding/codingstandards.html#checking-standards) ## Coding with style ### Git Commit Messages >Having a good guideline for creating commits and sticking to it makes working with Git and collaborating with others a lot easier. Here are some rules of thumb : * Use the present tense ("Add feature" not "Added feature") * If you have a body, separate the subject from the body with a newline * Limit the subject line to 72 characters * Do not end the subject line with a period * Use imperative [mood](https://en.wikipedia.org/wiki/Imperative_mood#English) in the subject line * If the subject is not clear enough, use the body to explain what and why as opposed to how * Consider starting the commit message with an applicable emoji, when you feel it's an important commit : * :tada: When first / initial commit * :sparkles: When introducing new features * :ambulance: When fixing a bug * :handshake: When merging files * :tractor: When you changing file structure or refactoring * :books: When writing docs * :gem: When new Release * :lipstick: For cosmetics purposes #### Commit Message Format Each commit message consists of a **header**, a **body** and a **footer**. The header has a special format that includes a **type**, a **scope** and a **subject**: ``` ():