Bugzilla – Attachment 10378 Details for
Bug 6090
empty mails in message_queue are sent
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 6090: Do not enqueue empty messages
0001-Bug-6090-Do-not-enqueue-empty-messages.patch (text/plain), 1.11 KB, created by
Julian Maurice
on 2012-06-20 11:46:54 UTC
(
hide
)
Description:
Bug 6090: Do not enqueue empty messages
Filename:
MIME Type:
Creator:
Julian Maurice
Created:
2012-06-20 11:46:54 UTC
Size:
1.11 KB
patch
obsolete
>From 3c912abf974f001e7c8fa3dc5a520745bfb85e3d Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Thu, 8 Mar 2012 13:50:47 +0100 >Subject: [PATCH] Bug 6090: Do not enqueue empty messages > >This patch avoid enqueuing messages that have an empty body. It can >happen when letter is empty or becomes empty after being processed by >parseletter >--- > C4/Letters.pm | 7 +++++++ > 1 file changed, 7 insertions(+) > >diff --git a/C4/Letters.pm b/C4/Letters.pm >index 514b355..4bde166 100644 >--- a/C4/Letters.pm >+++ b/C4/Letters.pm >@@ -672,6 +672,13 @@ sub EnqueueLetter ($) { > return unless exists $params->{'borrowernumber'}; > return unless exists $params->{'message_transport_type'}; > >+ my $content = $params->{letter}->{content}; >+ $content =~ s/\s+//g if(defined $content); >+ if ( not defined $content or $content eq '' ) { >+ warn "Trying to add an empty message to the message queue" if $debug; >+ return; >+ } >+ > # If we have any attachments we should encode then into the body. > if ( $params->{'attachments'} ) { > $params->{'letter'} = _add_attachments( >-- >1.7.10 >
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 6090
:
3746
|
8085
|
9996
|
10151
|
10377
|
10378
|
10381