i know this has been answered before in this topic viewtopic.php?f=62&t=6066 but i cant seem to get it to work. Currently im working on OTRS 4.0.8
Here´s what I´ve done:
Modified FollowUp.pm with (i reversed the changes but left it commented out)
Code: Select all
my $State = $ConfigObject->Get('PostmasterFollowUpState') || 'open';
if (
$Ticket{StateType} =~ /^close/
&& $ConfigObject->Get('PostmasterFollowUpStateClosed')
)
{
$State = $ConfigObject->Get('PostmasterFollowUpStateClosed');
#$State = $Ticket{State};
}
$Self->{'PostmasterFollowUpState'} = '$Ticket{State}';
$Self->{'PostmasterFollowUpStateClosed'} = 'closed';
Modified Followup.pm
Code: Select all
#my $State = $ConfigObject->Get('PostmasterFollowUpState') || 'open';
my $State = $Ticket{State};
All the state types are closed. Doesn't matter if its closed successful or unsuccesful or a new state of type closed. They all seem to reopen the ticket and i want to allow follow ups from the user but no state change on the followup.
Any ideas as what to do?