Bug 14537: Renaming OverdueNoticeBcc to NoticeBcc
To test: 1) Apply patch and update database 2) Run 'git grep "OverdueNoticeBcc"' and confirm there are no other instances Sponsored-by: Catalyst IT Signed-off-by: Marc Véron <veron@veron.ch> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
b5fa491955
commit
98398a6715
4 changed files with 4 additions and 3 deletions
|
@ -1338,7 +1338,7 @@ sub _send_message_by_email {
|
|||
);
|
||||
|
||||
$sendmail_params{'Auth'} = {user => $username, pass => $password, method => $method} if $username;
|
||||
if ( my $bcc = C4::Context->preference('OverdueNoticeBcc') ) {
|
||||
if ( my $bcc = C4::Context->preference('NoticeBcc') ) {
|
||||
$sendmail_params{ Bcc } = $bcc;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
UPDATE systempreferences SET variable="NoticeBcc" WHERE variable="OverdueNoticeBcc";
|
|
@ -274,6 +274,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `
|
|||
('NorwegianPatronDBSearchNLAfterLocalHit','0',NULL,'Search NL if a search has already given one or more local hits?.','YesNo'),
|
||||
('NotesBlacklist','',NULL,'List of notes fields that should not appear in the title notes/description separator of details','free'),
|
||||
('NotHighlightedWords','and|or|not',NULL,'List of words to NOT highlight when OpacHitHighlight is enabled','free'),
|
||||
('NoticeBcc','','','Email address to bcc outgoing overdue notices sent by email','free'),
|
||||
('NoticeCSS','',NULL,'Notices CSS url.','free'),
|
||||
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
|
||||
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content. Requires Novelist Profile and Password','YesNo'),
|
||||
|
@ -396,7 +397,6 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `
|
|||
('OverDriveClientKey','','Client key for OverDrive integration','30','Free'),
|
||||
('OverDriveClientSecret','','Client key for OverDrive integration','30','YesNo'),
|
||||
('OverDriveLibraryID','','Library ID for OverDrive integration','','Integer'),
|
||||
('OverdueNoticeBcc','','','Email address to bcc outgoing overdue notices sent by email','free'),
|
||||
('OverdueNoticeCalendar',0,NULL,'Take the calendar into consideration when generating overdue notices','YesNo'),
|
||||
('OverduesBlockCirc','noblock','noblock|confirmation|block','When checking out an item should overdues block checkout, generate a confirmation dialogue, or allow checkout','Choice'),
|
||||
('OverduesBlockRenewing','allow','allow|blockitem|block','If any of patron checked out documents is late, should renewal be allowed, blocked only on overdue items or blocked on whatever checked out document','Choice'),
|
||||
|
|
|
@ -348,7 +348,7 @@ Circulation:
|
|||
- "patrons to return books before their accounts expire (by restricting due dates to before the patron's expiration date)."
|
||||
-
|
||||
- Send all notices as a BCC to this email address
|
||||
- pref: OverdueNoticeBcc
|
||||
- pref: NoticeBcc
|
||||
-
|
||||
- pref: OverdueNoticeCalendar
|
||||
choices:
|
||||
|
|
Loading…
Reference in a new issue