🔀 Merge branch 'mr-107' into development
This commit is contained in:
commit
f95260dfb4
|
@ -2,6 +2,7 @@ Revision history for Lufi
|
||||||
|
|
||||||
0.08.0 ????-??-??
|
0.08.0 ????-??-??
|
||||||
- 🔧 — Rename ldap_user to auth_user for invitations (@mildis)
|
- 🔧 — Rename ldap_user to auth_user for invitations (@mildis)
|
||||||
|
- 💥 — [BREAKING CHANGE] Mail sending is now disabled by default! Set disable_mail_sending to 0 to enable it
|
||||||
|
|
||||||
0.07.0 2023-12-25
|
0.07.0 2023-12-25
|
||||||
- ⬆️ — Update jQuery
|
- ⬆️ — Update jQuery
|
||||||
|
|
|
@ -17,7 +17,7 @@ our $default_config = {
|
||||||
how => 'sendmail'
|
how => 'sendmail'
|
||||||
},
|
},
|
||||||
mail_sender => 'no-reply@lufi.io',
|
mail_sender => 'no-reply@lufi.io',
|
||||||
disable_mail_sending => 0,
|
disable_mail_sending => 1,
|
||||||
theme => 'default',
|
theme => 'default',
|
||||||
upload_dir => 'files',
|
upload_dir => 'files',
|
||||||
session_duration => 3600,
|
session_duration => 3600,
|
||||||
|
|
|
@ -175,8 +175,9 @@
|
||||||
#mail_sender => 'no-reply@lufi.io',
|
#mail_sender => 'no-reply@lufi.io',
|
||||||
|
|
||||||
# Disable sending mail through the server
|
# Disable sending mail through the server
|
||||||
# optional, default is false
|
# Recommended option as mail sending can be abused by spammers
|
||||||
#disable_mail_sending => 0,
|
# optional, default is true
|
||||||
|
#disable_mail_sending => 1,
|
||||||
|
|
||||||
#############
|
#############
|
||||||
# DB settings
|
# DB settings
|
||||||
|
|
|
@ -164,6 +164,11 @@
|
||||||
# optional, default to no-reply@lufi.io
|
# optional, default to no-reply@lufi.io
|
||||||
#mail_sender => 'no-reply@lufi.io',
|
#mail_sender => 'no-reply@lufi.io',
|
||||||
|
|
||||||
|
# Disable sending mail through the server
|
||||||
|
# Recommended option as mail sending can be abused by spammers
|
||||||
|
# optional, default is true
|
||||||
|
#disable_mail_sending => 1,
|
||||||
|
|
||||||
#############
|
#############
|
||||||
# DB settings
|
# DB settings
|
||||||
#############
|
#############
|
||||||
|
|
|
@ -160,6 +160,11 @@
|
||||||
# optional, default to no-reply@lufi.io
|
# optional, default to no-reply@lufi.io
|
||||||
#mail_sender => 'no-reply@lufi.io',
|
#mail_sender => 'no-reply@lufi.io',
|
||||||
|
|
||||||
|
# Disable sending mail through the server
|
||||||
|
# Recommended option as mail sending can be abused by spammers
|
||||||
|
# optional, default is true
|
||||||
|
#disable_mail_sending => 1,
|
||||||
|
|
||||||
#############
|
#############
|
||||||
# DB settings
|
# DB settings
|
||||||
#############
|
#############
|
||||||
|
|
|
@ -164,6 +164,11 @@
|
||||||
# optional, default to no-reply@lufi.io
|
# optional, default to no-reply@lufi.io
|
||||||
#mail_sender => 'no-reply@lufi.io',
|
#mail_sender => 'no-reply@lufi.io',
|
||||||
|
|
||||||
|
# Disable sending mail through the server
|
||||||
|
# Recommended option as mail sending can be abused by spammers
|
||||||
|
# optional, default is true
|
||||||
|
#disable_mail_sending => 1,
|
||||||
|
|
||||||
#############
|
#############
|
||||||
# DB settings
|
# DB settings
|
||||||
#############
|
#############
|
||||||
|
|
1
t/test.t
1
t/test.t
|
@ -58,6 +58,7 @@ BEGIN {
|
||||||
how => 'sendmail'
|
how => 'sendmail'
|
||||||
},
|
},
|
||||||
mail_sender => 'no-reply@lufi.io',
|
mail_sender => 'no-reply@lufi.io',
|
||||||
|
disable_mail_sending => 1,
|
||||||
theme => 'default',
|
theme => 'default',
|
||||||
upload_dir => 'files',
|
upload_dir => 'files',
|
||||||
session_duration => 3600,
|
session_duration => 3600,
|
||||||
|
|
Loading…
Reference in New Issue