[otrs-cvs] CVS: otrs/Kernel/System/Ticket Article.pm, 1.94.2.6,
1.94.2.7
cvs-log at otrs.org
cvs-log at otrs.org
Sat Jun 17 02:43:46 CEST 2006
Update of /home/cvs/otrs/Kernel/System/Ticket
In directory lancelot:/tmp/cvs-serv19058/Kernel/System/Ticket
Modified Files:
Tag: rel-2_0
Article.pm
Log Message:
Fixed bug #1240 - Tickets not shown in "New messages" if Auto Response "Reply" is active
Index: Article.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/Ticket/Article.pm,v
retrieving revision 1.94.2.6
retrieving revision 1.94.2.7
diff -C2 -r1.94.2.6 -r1.94.2.7
*** Article.pm 13 Jun 2006 14:11:25 -0000 1.94.2.6
--- Article.pm 16 Jun 2006 23:43:44 -0000 1.94.2.7
***************
*** 1826,1842 ****
# send notify
my %Address = $Self->{QueueObject}->GetSystemAddress(QueueID => $Article{QueueID});
! $Self->ArticleSend(
! ArticleType => 'email-notification-ext',
! SenderType => 'system',
! TicketID => $Param{TicketID},
! HistoryType => 'SendCustomerNotification',
! HistoryComment => "\%\%$Article{From}",
From => "$Address{RealName} <$Address{Email}>",
To => $Article{From},
Subject => $Notification{Subject},
! Body => $Notification{Body},
Type => 'text/plain',
! Charset => $Notification{Charset},
! UserID => $Param{UserID},
Loop => 1,
);
--- 1826,1853 ----
# send notify
my %Address = $Self->{QueueObject}->GetSystemAddress(QueueID => $Article{QueueID});
! # $Self->ArticleSend(
! # ArticleType => 'email-notification-ext',
! # SenderType => 'system',
! # TicketID => $Param{TicketID},
! # HistoryType => 'SendCustomerNotification',
! # HistoryComment => "\%\%$Article{From}",
! # From => "$Address{RealName} <$Address{Email}>",
! # To => $Article{From},
! # Subject => $Notification{Subject},
! # Body => $Notification{Body},
! # Type => 'text/plain',
! # Charset => $Notification{Charset},
! # UserID => $Param{UserID},
! # Loop => 1,
! # );
!
! $Self->{SendmailObject}->Send(
From => "$Address{RealName} <$Address{Email}>",
To => $Article{From},
Subject => $Notification{Subject},
! 'Reply-To' => $Self->{ConfigObject}->Get('NotificationSenderEmail'),
Type => 'text/plain',
! Charset => $Notification{Charset},
! Body => $Notification{Body},
Loop => 1,
);
More information about the cvs-log
mailing list