🩹 — Small fixes after merging echo test | gpg2 --clearsign
This commit is contained in:
parent
a6acb1d6ca
commit
c253a71b75
|
@ -1,6 +1,7 @@
|
|||
Revision history for Lufi
|
||||
|
||||
0.08.0 ????-??-??
|
||||
- 🔧 — Rename ldap_user to auth_user for invitations (@mildis)
|
||||
|
||||
0.07.0 2023-12-25
|
||||
- ⬆️ — Update jQuery
|
||||
|
|
|
@ -17,6 +17,14 @@ sub startup {
|
|||
default => $default_config
|
||||
});
|
||||
|
||||
# Compatibility with old send_invitation_with_ldap_user_mail setting
|
||||
if (defined $self->config('invitations')) {
|
||||
if (defined($self->config('invitations')->{send_invitation_with_ldap_user_mail}) &&
|
||||
!defined($self->config('invitations')->{send_invitation_with_auth_user_mail})) {
|
||||
$self->config('invitations')->{send_invitation_with_auth_user_mail} = $self->config('invitations')->{send_invitation_with_ldap_user_mail};
|
||||
}
|
||||
}
|
||||
|
||||
die 'You need to provide a contact information in lufi.conf!' unless (defined($self->config('contact')));
|
||||
die 'You need to provide a **report** information in lufi.conf!' unless (defined($self->config('report')));
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ Have a look at Lufi::DB::Invitation::SQLite's code: it's simple and may be more
|
|||
|
||||
=item B<files> : string, optional, list of files sent by the guest
|
||||
|
||||
=item B<show_in_list> : boolean, if the ldap user want to see the invitation in his/her invitations list
|
||||
=item B<show_in_list> : boolean, if the authenticated user wants to see the invitation in his/her invitations list
|
||||
|
||||
=item B<deleted> : boolean
|
||||
|
||||
|
|
|
@ -102,7 +102,7 @@ msgstr "Back to homepage"
|
|||
msgid "Bad CSRF token!"
|
||||
msgstr "Bad CSRF token!"
|
||||
|
||||
#: lib/Lufi/Controller/Auth.pm:27 lib/Lufi/Controller/Auth.pm:49
|
||||
#: lib/Lufi/Controller/Auth.pm:38 lib/Lufi/Controller/Auth.pm:60
|
||||
msgid "Bad CSRF token."
|
||||
msgstr "Bad CSRF token."
|
||||
|
||||
|
@ -461,7 +461,7 @@ msgstr "Please contact the administrator: %1"
|
|||
msgid "Please wait while we are getting your file. We first need to download and decrypt all parts before you can get it."
|
||||
msgstr "Please wait while we are getting your file. We first need to download and decrypt all parts before you can get it."
|
||||
|
||||
#: lib/Lufi/Controller/Auth.pm:38
|
||||
#: lib/Lufi/Controller/Auth.pm:49
|
||||
msgid "Please, check your credentials or your right to access this service: unable to authenticate."
|
||||
msgstr "Please, check your credentials or your right to access this service: unable to authenticate."
|
||||
|
||||
|
|
|
@ -102,7 +102,7 @@ msgstr ""
|
|||
msgid "Bad CSRF token!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/Lufi/Controller/Auth.pm:27 lib/Lufi/Controller/Auth.pm:49
|
||||
#: lib/Lufi/Controller/Auth.pm:38 lib/Lufi/Controller/Auth.pm:60
|
||||
msgid "Bad CSRF token."
|
||||
msgstr ""
|
||||
|
||||
|
@ -461,7 +461,7 @@ msgstr ""
|
|||
msgid "Please wait while we are getting your file. We first need to download and decrypt all parts before you can get it."
|
||||
msgstr ""
|
||||
|
||||
#: lib/Lufi/Controller/Auth.pm:38
|
||||
#: lib/Lufi/Controller/Auth.pm:49
|
||||
msgid "Please, check your credentials or your right to access this service: unable to authenticate."
|
||||
msgstr ""
|
||||
|
||||
|
|
Loading…
Reference in New Issue