summaryrefslogtreecommitdiffstats
path: root/email_in.pl
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-07-05 20:43:18 +0200
committerDylan William Hardison <dylan@hardison.net>2017-07-07 00:19:20 +0200
commit37722eca39874bb6abdcd120e3e458bd62dea62b (patch)
tree57a9a9970c00ec77baecab7e154ef7dfcef863fe /email_in.pl
parenta6f98de0d4e842351222b0173a1fff151da8738e (diff)
downloadbugzilla-37722eca39874bb6abdcd120e3e458bd62dea62b.tar.gz
bugzilla-37722eca39874bb6abdcd120e3e458bd62dea62b.tar.xz
Bug 1377933 - Remove trailing whitespace from all perl files
Diffstat (limited to 'email_in.pl')
-rwxr-xr-xemail_in.pl16
1 files changed, 8 insertions, 8 deletions
diff --git a/email_in.pl b/email_in.pl
index f36ddb2a1..d2d57ed59 100755
--- a/email_in.pl
+++ b/email_in.pl
@@ -63,7 +63,7 @@ sub parse_mail {
my ($mail_text) = @_;
debug_print('Parsing Email');
$input_email = Email::MIME->new($mail_text);
-
+
my %fields = %{ $switch{'default'} || {} };
Bugzilla::Hook::process('email_in_before_parse', { mail => $input_email,
fields => \%fields });
@@ -96,8 +96,8 @@ sub parse_mail {
if ($body =~ /^\s*@/s) {
my $current_field;
while (my $line = shift @body_lines) {
- # If the sig is starting, we want to keep this in the
- # @body_lines so that we don't keep the sig as part of the
+ # If the sig is starting, we want to keep this in the
+ # @body_lines so that we don't keep the sig as part of the
# comment down below.
if ($line eq SIGNATURE_DELIMITER) {
unshift(@body_lines, $line);
@@ -176,7 +176,7 @@ sub post_bug {
}
sub process_bug {
- my ($fields_in) = @_;
+ my ($fields_in) = @_;
my %fields = %$fields_in;
my $bug_id = $fields{'bug_id'};
@@ -248,10 +248,10 @@ sub handle_attachments {
data => $data,
});
# If we added a comment, and our comment does not already have a type,
- # and this is our first attachment, then we make the comment an
+ # and this is our first attachment, then we make the comment an
# "attachment created" comment.
if ($comment and !$comment->type and !$update_comment) {
- $comment->set_all({ type => CMT_ATTACHMENT_CREATED,
+ $comment->set_all({ type => CMT_ATTACHMENT_CREATED,
extra_data => $obj->id });
$update_comment = 1;
}
@@ -376,7 +376,7 @@ sub die_handler {
$msg =~ s/^Compilation failed in require.+$//ms;
$msg = html_strip($msg);
my $from = Bugzilla->params->{'mailfrom'};
- my $reply = reply(to => $input_email, from => $from, top_post => 1,
+ my $reply = reply(to => $input_email, from => $from, top_post => 1,
body => "$msg\n");
MessageToMTA($reply->as_string);
}
@@ -484,7 +484,7 @@ The script expects to read an email with the following format:
It can be multiple paragraphs.
- --
+ --
This is a signature line, and will be removed automatically, It will not
be included in the bug description.