Koha/installer/data/mysql/db_revs/220600059.pl
Tomas Cohen Arazi f6ba40b141
Bug 25936: DBRev 22.06.00.059
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-10-03 14:30:39 -03:00

22 lines
1 KiB
Perl
Executable file

use Modern::Perl;
return {
bug_number => "25936",
description => "A password change notification feature",
up => sub {
my ($args) = @_;
my ($dbh, $out) = @$args{qw(dbh out)};
# Add PASSWORD_CHANGE notice
$dbh->do( q{
INSERT IGNORE INTO letter (module, code, name, title, content, message_transport_type) VALUES ('members', 'PASSWORD_CHANGE', 'Notification of password change', 'Library account password change notification',
"Dear [% borrower.firstname %] [% borrower.surname %],\r\n\r\nWe want to notify you that your password has been changed. If you did not change it yourself (or requested that change), please contact library staff.\r\n\r\nYour library.", 'email');
});
# Add systempreference
$dbh->do(q{
INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type)
VALUES ('NotifyPasswordChange','0','','Notify patrons whenever their password is changed.','YesNo')
});
},
};