diff --git a/README.md b/README.md
index dab8782..650a3c9 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ BookStack is an opinionated wiki system that provides a pleasant and simple out
- Diagrams.net Integration
-**Shipped version:** 23.08.3~ynh1
+**Shipped version:** 23.08.3~ynh2
**Demo:** https://demo.bookstackapp.com
@@ -43,7 +43,6 @@ BookStack is an opinionated wiki system that provides a pleasant and simple out
* Official user documentation:
* Official admin documentation:
* Upstream app code repository:
-* YunoHost documentation for this app:
* Report a bug:
## Developer info
diff --git a/README_fr.md b/README_fr.md
index 7fcf640..7eb9a3a 100644
--- a/README_fr.md
+++ b/README_fr.md
@@ -27,7 +27,7 @@ BookStack est un système wiki simple prête à l'emploi. Les nouveaux utilisate
- Multilingue
-**Version incluse :** 23.08.3~ynh1
+**Version incluse :** 23.08.3~ynh2
**Démo :** https://demo.bookstackapp.com
@@ -41,7 +41,6 @@ BookStack est un système wiki simple prête à l'emploi. Les nouveaux utilisate
* Documentation officielle utilisateur :
* Documentation officielle de l’admin :
* Dépôt de code officiel de l’app :
-* Documentation YunoHost pour cette app :
* Signaler un bug :
## Informations pour les développeurs
diff --git a/conf/.env.example b/conf/.env.example
index f98ee6e..48aac0b 100644
--- a/conf/.env.example
+++ b/conf/.env.example
@@ -16,9 +16,17 @@ APP_ENV=production
APP_DEBUG=false
# Application key
+# Used for encryption where needed.
+# Run `php artisan key:generate` to generate a valid key.
APP_KEY=SomeRandomString
# Application URL
+# This must be the root URL that you want to host BookStack on.
+# All URLs in BookStack will be generated using this value
+# to ensure URLs generated are consistent and secure.
+# If you change this in the future you may need to run a command
+# to update stored URLs in the database. Command example:
+# php artisan bookstack:update-url https://old.example.com https://new.example.com
APP_URL=__APP_URL_DOMAIN__
# Application default language
@@ -41,20 +49,19 @@ DB_PASSWORD=__DB_PWD__
FILE_UPLOAD_SIZE_LIMIT=100
# Mail system to use
-MAIL_DRIVER=smtp
+# Can be 'smtp' or 'sendmail'
+MAIL_DRIVER=sendmail
-# Mail sender details
+MAIL_DRIVER=sendmail
+
+# The "from" email address for outgoing email
+MAIL_FROM=noreply@__DOMAIN__
+
+# The "from" name used for outgoing email
MAIL_FROM_NAME=BookStack
-MAIL_FROM=bookstack@__DOMAIN__
-# SMTP mail options
-# These settings can be checked using the "Send a Test Email"
-# feature found in the "Settings > Maintenance" area of the system.
-MAIL_HOST=localhost
-MAIL_PORT=25
-MAIL_USERNAME=bookstack
-MAIL_PASSWORD=null
-MAIL_ENCRYPTION=null
+# The command to use for calling sendmail
+MAIL_SENDMAIL_COMMAND="/usr/sbin/sendmail -bs"
# General auth
AUTH_METHOD=ldap
diff --git a/manifest.toml b/manifest.toml
index 69dd0f7..0759614 100644
--- a/manifest.toml
+++ b/manifest.toml
@@ -5,7 +5,7 @@ name = "BookStack"
description.en = "Platform to create documentation/wiki content"
description.fr = "Plateforme pour créer du contenu de documentation/wiki"
-version = "23.08.3~ynh1"
+version = "23.08.3~ynh2"
maintainers = ["eric_G"]