Update code base and doc to use kanboard.org domain
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
Authentification à deux facteurs
|
||||
=========================
|
||||
================================
|
||||
|
||||
Chaque utilisateur peut activer [l'authentification à deux facteurs](http://en.wikipedia.org/wiki/Two_factor_authentication).
|
||||
Après s’être connecté, un code à usage unique (6 caractères) est demandé à l'utilisateur pour lui autoriser l’accès à Kanboard.
|
||||
@@ -12,13 +12,13 @@ Il existe de nombreux logiciels compatibles avec le standard TOTP system.
|
||||
Par exemple, vous pouvez utilisez ces applications libres et open source :
|
||||
|
||||
- [Google Authenticator](https://github.com/google/google-authenticator/) (Android, iOS, Blackberry)
|
||||
- [FreeOTP](https://fedorahosted.org/freeotp/) (Android, iOS)
|
||||
- [FreeOTP](https://freeotp.github.io/) (Android, iOS)
|
||||
- [OATH Toolkit](http://www.nongnu.org/oath-toolkit/) (utilitaire en ligne de commande sur Unix/Linux)
|
||||
|
||||
Ce système peut fonctionner hors ligne et vous n'avez pas l'obligation d'avoir un téléphone portable.
|
||||
|
||||
Paramétrage
|
||||
-----
|
||||
-----------
|
||||
|
||||
1. Allez dans le profil utilisateur.
|
||||
2. Sur la gauche, cliquez sur **Authentification à deux facteurs** et cochez la case.
|
||||
|
||||
@@ -22,10 +22,13 @@ Installez Kanboard :
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R apache:apache kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R apache:apache kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
CentOS 6.x
|
||||
@@ -54,10 +57,13 @@ Installez Kanboard :
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R apache:apache kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R apache:apache kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Restrictions SELinux
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
Créer des tâches par email
|
||||
=====================
|
||||
==========================
|
||||
|
||||
Vous pouvez créer des tâches directement en envoyant un message.
|
||||
|
||||
Pour le moment, Kanboard fonctionne avec 3 services externes :
|
||||
|
||||
- [Mailgun](https://kanboard.net/documentation/mailgun)
|
||||
- [Sendgrid](https://kanboard.net/documentation/sendgrid)
|
||||
- [Postmark](https://kanboard.net/documentation/postmark)
|
||||
- [Mailgun](https://github.com/kanboard/plugin-mailgun)
|
||||
- [Sendgrid](https://github.com/kanboard/plugin-sendgrid)
|
||||
- [Postmark](https://github.com/kanboard/plugin-postmark)
|
||||
|
||||
Ces services gèrent le courrier entrant sans qu'on ait à configurer un serveur SMTP.
|
||||
|
||||
@@ -15,7 +15,7 @@ Ces services gèrent le courrier entrant sans qu'on ait à configurer un serveur
|
||||
Toutes les opérations complexes sont prises en charge par ces services.
|
||||
|
||||
Processus de réception du courrier entrant
|
||||
------------------------
|
||||
------------------------------------------
|
||||
|
||||
1. Vous envoyez un mail à une adresse spécifique, par exemple **quelquechose+monprojet@inbound.mondomaine.tld**
|
||||
2. Votre mail est envoyé sur les serveurs tiers SMTP
|
||||
@@ -25,7 +25,7 @@ Processus de réception du courrier entrant
|
||||
Remarque : les nouvelles tâches sont automatiquement créées dans la première colonne.
|
||||
|
||||
Format du mail
|
||||
------------
|
||||
--------------
|
||||
|
||||
- La partie locale de l'adresse mail doit utiliser le signe + comme séparateur, par exemple **kanboard+projet123**
|
||||
- La chaîne de caractères définie après le signe + doit correspondre à l'identifiant d'un projet, par exemple **projet123** est l'identifiant du projet **Projet 123**
|
||||
@@ -36,7 +36,7 @@ Les courriers entrants peuvent être écrits aux formats .txt ou .HTML.
|
||||
**Kanboard peut convertir en Markdown les messages écrits en simple HTML**.
|
||||
|
||||
Sécurité et prérequis
|
||||
-------------------------
|
||||
---------------------
|
||||
|
||||
- Le webhook de Kanboard est protégé par un jeton aléatoire
|
||||
- L'adresse de l'expéditeur doit correspondre à celle d'un utilisateur de Kanboard
|
||||
|
||||
@@ -16,10 +16,13 @@ Installez Kanboard :
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R www-data:www-data kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Debian 7 (Wheezy)
|
||||
@@ -36,10 +39,13 @@ Installez Kanboard :
|
||||
|
||||
```bash
|
||||
cd /var/www
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R www-data:www-data kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Debian 6 (Squeeze)
|
||||
@@ -56,8 +62,11 @@ Installez Kanboard :
|
||||
|
||||
```bash
|
||||
cd /var/www
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R www-data:www-data kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
@@ -16,10 +16,13 @@ Installez Kanboard :
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
sudo wget https://kanboard.net/kanboard-latest.zip
|
||||
sudo unzip kanboard-latest.zip
|
||||
sudo chown -R www-data:www-data kanboard/data
|
||||
sudo rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Ubuntu Trusty 14.04 LTS
|
||||
@@ -36,10 +39,13 @@ Installez Kanboard :
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
sudo wget https://kanboard.net/kanboard-latest.zip
|
||||
sudo unzip kanboard-latest.zip
|
||||
sudo chown -R www-data:www-data kanboard/data
|
||||
sudo rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Ubuntu Precise 12.04 LTS
|
||||
@@ -56,10 +62,13 @@ Installez Kanboard :
|
||||
|
||||
```bash
|
||||
cd /var/www
|
||||
sudo wget https://kanboard.net/kanboard-latest.zip
|
||||
sudo unzip kanboard-latest.zip
|
||||
sudo chown -R www-data:www-data kanboard/data
|
||||
sudo rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Certaines fonctionnalités de Kanboard demandent à ce que vous installiez une [tâche planifiée](cronjob.markdown).
|
||||
|
||||
Reference in New Issue
Block a user