1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/moncycle_ynh.git synced 2024-09-03 19:46:16 +02:00

Merge pull request #48 from Limezy/v13.0.4

V13.0.4
This commit is contained in:
Limezy 2024-05-20 23:04:20 +07:00 committed by GitHub
commit d96eca67c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 17 additions and 17 deletions

View file

@ -1,6 +1,6 @@
{
"app": "moncycle.app",
"version": "13~ynh2",
"build": "2024-05-11",
"commit": "dfadfec"
"version": "13~ynh4",
"build": "2024-05-20",
"commit": "d665882"
}

View file

@ -5,7 +5,7 @@ name = "Moncycle"
description.en = "Menstrual cycle follow-up for natural family planning"
description.fr = "Suivi de cycle pour les méthodes naturelles de régulation de naissance"
version = "13~ynh2"
version = "13~ynh4"
maintainers = ["Raoul de Limezy"]
@ -34,8 +34,8 @@ ram.runtime = "50M"
[resources]
[resources.sources.main]
url = "https://github.com/jean-io/moncycle.app/archive/dfadfec65ec696257857cedd937a93c62c76e463.zip"
sha256 = "f2fc644459c76484bfbcf5c748138e577e24334651c29f0e817d50abb5de4861"
url = "https://github.com/jean-io/moncycle.app/archive/d665882cb0a4d0b7a1ecf7b6f9d845ed24508993.zip"
sha256 = "cd8148af28d51e02b64345369c30dff8c260fbc6bc37634277398fd7cc22f53d"
autoupdate.strategy = "latest_github_release"
[resources.system_user]

22
sources/patches/main-01-mail.patch Normal file → Executable file
View file

@ -4,14 +4,14 @@ index fc2246e..2e060e3 100644
+++ b/www_data/lib/mail.php
@@ -15,10 +15,10 @@ function mail_init(){
$mail->isSMTP();
$mail->Host = SMTP_HOST;
- $mail->SMTPAuth = true;
+ $mail->SMTPAuth = false;
$mail->Username = SMTP_MAIL;
$mail->Password = SMTP_PASSWORD;
- $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS;
+ $mail->SMTPSecure = false;
$mail->Port = SMTP_PORT;
$mail->CharSet = 'UTF-8';
$mail->isSMTP();
$mail->Host = SMTP_HOST;
- $mail->SMTPAuth = true;
+ $mail->SMTPAuth = false;
$mail->Username = SMTP_MAIL;
$mail->Password = SMTP_PASSWORD;
- $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS;
+ $mail->SMTPSecure = false;
$mail->Port = SMTP_PORT;
$mail->CharSet = 'UTF-8';