Bugzilla – Attachment 100938 Details for
Bug 22821
Use reply-to address for item notes notifications if available to avoid being flagged as spam
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22821: Use 'reply-to' address in issue notes
Bug-22821-Use-reply-to-address-in-issue-notes.patch (text/plain), 2.92 KB, created by
Jonathan Druart
on 2020-03-18 09:49:36 UTC
(
hide
)
Description:
Bug 22821: Use 'reply-to' address in issue notes
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2020-03-18 09:49:36 UTC
Size:
2.92 KB
patch
obsolete
>From d379da92b9752ccd8300af3854ad49da13398374 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Tue, 25 Feb 2020 09:05:18 +0000 >Subject: [PATCH] Bug 22821: Use 'reply-to' address in issue notes > >This patch updates the issue notices to not pass from_address and so >default to the branch email of the user for from_address. We now pass >the patrons email (cascading through email, emailpro, B_email) into the >reply_address field so mail servers are less likely to report emails as >spam and mail clients still have access to the patron address via the >reply-to header when staff want to hit 'reply' and have the email go to >the user. > >Signed-off-by: Myka Kennedy Stephens <mkstephens@lancasterseminary.edu> > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > opac/opac-issue-note.pl | 4 ++-- > opac/svc/checkout_notes | 4 ++-- > 2 files changed, 4 insertions(+), 4 deletions(-) > >diff --git a/opac/opac-issue-note.pl b/opac/opac-issue-note.pl >index f61b33cd8f..64f07fefbd 100755 >--- a/opac/opac-issue-note.pl >+++ b/opac/opac-issue-note.pl >@@ -82,14 +82,14 @@ if ( $action eq 'issuenote' && C4::Context->preference('AllowCheckoutNotes') ) { > ); > > my $to_address = $branch->branchemail || $branch->branchreplyto || C4::Context->ReplytoDefault || C4::Context->preference('KohaAdminEmailAddress'); >- my $from_address = $patron->email || $patron->emailpro || $patron->B_email; >+ my $reply_address = $patron->email || $patron->emailpro || $patron->B_email; > > C4::Letters::EnqueueLetter({ > letter => $letter, > message_transport_type => 'email', > borrowernumber => $patron->borrowernumber, > to_address => $to_address, >- from_address => $from_address, >+ reply_address => $reply_address, > }); > } > } >diff --git a/opac/svc/checkout_notes b/opac/svc/checkout_notes >index a5682c8ceb..60b4d00bca 100755 >--- a/opac/svc/checkout_notes >+++ b/opac/svc/checkout_notes >@@ -92,14 +92,14 @@ if ($is_ajax) { > ); > > my $to_address = $branch->branchemail || $branch->branchreplyto || C4::Context->preference('ReplytoDefault') || C4::Context->preference('KohaAdminEmailAddress'); >- my $from_address = $patron->email || $patron->emailpro || $patron->B_email; >+ my $reply_address = $patron->email || $patron->emailpro || $patron->B_email; > > C4::Letters::EnqueueLetter({ > letter => $letter, > message_transport_type => 'email', > borrowernumber => $patron->borrowernumber, > to_address => $to_address, >- from_address => $from_address, >+ reply_address => $reply_address, > }); > } else { # note empty, i.e removed > $status = "removed"; >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22821
:
99559
|
99560
|
99561
|
99562
|
99563
|
99564
|
99565
|
99566
|
99732
|
99733
|
99734
|
99735
|
99908
|
99909
| 100938 |
100939
|
100940
|
100944