View | Details | Raw Unified | Return to bug 14537
Collapse All | Expand All

(-)a/C4/Letters.pm (-1 / +1 lines)
Lines 1338-1344 sub _send_message_by_email { Link Here
1338
    );
1338
    );
1339
1339
1340
    $sendmail_params{'Auth'} = {user => $username, pass => $password, method => $method} if $username;
1340
    $sendmail_params{'Auth'} = {user => $username, pass => $password, method => $method} if $username;
1341
    if ( my $bcc = C4::Context->preference('OverdueNoticeBcc') ) {
1341
    if ( my $bcc = C4::Context->preference('NoticeBcc') ) {
1342
       $sendmail_params{ Bcc } = $bcc;
1342
       $sendmail_params{ Bcc } = $bcc;
1343
    }
1343
    }
1344
1344
(-)a/installer/data/mysql/atomicupdate/bug_14537_-_rename_OverdueNoticeBcc_syspref.sql (+1 lines)
Line 0 Link Here
1
UPDATE systempreferences SET variable="NoticeBcc" WHERE variable="OverdueNoticeBcc";
(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 274-279 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
274
('NorwegianPatronDBSearchNLAfterLocalHit','0',NULL,'Search NL if a search has already given one or more local hits?.','YesNo'),
274
('NorwegianPatronDBSearchNLAfterLocalHit','0',NULL,'Search NL if a search has already given one or more local hits?.','YesNo'),
275
('NotesBlacklist','',NULL,'List of notes fields that should not appear in the title notes/description separator of details','free'),
275
('NotesBlacklist','',NULL,'List of notes fields that should not appear in the title notes/description separator of details','free'),
276
('NotHighlightedWords','and|or|not',NULL,'List of words to NOT highlight when OpacHitHighlight is enabled','free'),
276
('NotHighlightedWords','and|or|not',NULL,'List of words to NOT highlight when OpacHitHighlight is enabled','free'),
277
('NoticeBcc','','','Email address to bcc outgoing overdue notices sent by email','free'),
277
('NoticeCSS','',NULL,'Notices CSS url.','free'),
278
('NoticeCSS','',NULL,'Notices CSS url.','free'),
278
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
279
('NotifyBorrowerDeparture','30',NULL,'Define number of days before expiry where circulation is warned about patron account expiry','Integer'),
279
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
280
('NovelistSelectEnabled','0',NULL,'Enable Novelist Select content.  Requires Novelist Profile and Password','YesNo'),
Lines 396-402 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
396
('OverDriveClientKey','','Client key for OverDrive integration','30','Free'),
397
('OverDriveClientKey','','Client key for OverDrive integration','30','Free'),
397
('OverDriveClientSecret','','Client key for OverDrive integration','30','YesNo'),
398
('OverDriveClientSecret','','Client key for OverDrive integration','30','YesNo'),
398
('OverDriveLibraryID','','Library ID for OverDrive integration','','Integer'),
399
('OverDriveLibraryID','','Library ID for OverDrive integration','','Integer'),
399
('OverdueNoticeBcc','','','Email address to bcc outgoing overdue notices sent by email','free'),
400
('OverdueNoticeCalendar',0,NULL,'Take the calendar into consideration when generating overdue notices','YesNo'),
400
('OverdueNoticeCalendar',0,NULL,'Take the calendar into consideration when generating overdue notices','YesNo'),
401
('OverduesBlockCirc','noblock','noblock|confirmation|block','When checking out an item should overdues block checkout, generate a confirmation dialogue, or allow checkout','Choice'),
401
('OverduesBlockCirc','noblock','noblock|confirmation|block','When checking out an item should overdues block checkout, generate a confirmation dialogue, or allow checkout','Choice'),
402
('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'),
402
('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'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-2 / +1 lines)
Lines 348-354 Circulation: Link Here
348
            - "patrons to return books before their accounts expire (by restricting due dates to before the patron's expiration date)."
348
            - "patrons to return books before their accounts expire (by restricting due dates to before the patron's expiration date)."
349
        -
349
        -
350
            - Send all notices as a BCC to this email address
350
            - Send all notices as a BCC to this email address
351
            - pref: OverdueNoticeBcc
351
            - pref: NoticeBcc
352
        -
352
        -
353
            - pref: OverdueNoticeCalendar
353
            - pref: OverdueNoticeCalendar
354
              choices:
354
              choices:
355
- 

Return to bug 14537