X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Flib%2FRT%2FAction%2FAutoreply.pm;h=808ee628dd6eef3541748c04f921a3ae47dc732c;hp=e3e792ea7f0ab2f1d53122f31c2a08ab73d180f3;hb=44dd00a3ff974a17999e86e64488e996edc71e3c;hpb=75162bb14b3e38d66617077843f4dfdcaf09d5c4 diff --git a/rt/lib/RT/Action/Autoreply.pm b/rt/lib/RT/Action/Autoreply.pm index e3e792ea7..808ee628d 100755 --- a/rt/lib/RT/Action/Autoreply.pm +++ b/rt/lib/RT/Action/Autoreply.pm @@ -2,7 +2,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2019 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) @@ -66,7 +66,6 @@ sub Prepare { $self->SUPER::Prepare(); } -# {{{ sub SetRecipients =head2 SetRecipients @@ -83,34 +82,30 @@ sub SetRecipients { return(1); } -# }}} -# {{{ sub SetReturnAddress =head2 SetReturnAddress -Set this message\'s return address to the apropriate queue address +Set this message's return address to the apropriate queue address =cut sub SetReturnAddress { my $self = shift; - + my $friendly_name; - if (RT->Config->Get('UseFriendlyFromLine')) { - $friendly_name = $self->TicketObj->QueueObj->Description || - $self->TicketObj->QueueObj->Name; - } + if (RT->Config->Get('UseFriendlyFromLine')) { + $friendly_name = $self->TicketObj->QueueObj->Description || + $self->TicketObj->QueueObj->Name; + } $self->SUPER::SetReturnAddress( @_, friendly_name => $friendly_name ); - + } - -# }}} -# {{{{ sub SetRTSpecialHeaders + =head2 SetRTSpecialHeaders @@ -125,7 +120,6 @@ sub SetRTSpecialHeaders { $self->SetHeader( 'Auto-Submitted', 'auto-replied' ); } -# }}} RT::Base->_ImportOverlays();