Disable merge notification

Moderator: crythias

Locked
Navidlo
Znuny newbie
Posts: 10
Joined: 16 Jul 2013, 11:49
Znuny Version: 3.2.9
Real Name: Ivan
Company: X-Net

Disable merge notification

Post by Navidlo »

Hello.

At first. Please sorry mi bad english.

I need help. Please, how i stopping notification to customer (or to all) when i merge one or more tickets to another ticket?

Many thanks.

Navidlo
OTRS 3.2.9, ITSM 3.2.7, FAQ on CentOS 6.2 with Mysql 5.1
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Disable merge notification

Post by crythias »

don't click the box for notification within the merge screen.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Navidlo
Znuny newbie
Posts: 10
Joined: 16 Jul 2013, 11:49
Znuny Version: 3.2.9
Real Name: Ivan
Company: X-Net

Re: Disable merge notification

Post by Navidlo »

Hi.

I do. I don't chek this option. But system send message:
Your email with ticket number "<OTRS_TICKET>" is merged to "<OTRS_MERGE_TO_TICKET>".
setted in Ticket::Frontend::AutomaticMergeText ...

But this option is disallowed to disable in system config.

Thanks
Navidlo
OTRS 3.2.9, ITSM 3.2.7, FAQ on CentOS 6.2 with Mysql 5.1
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Disable merge notification

Post by crythias »

Are you certain it's sent? It shouldn't be. It can log it as an article, but it may not actually be sent.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
reneeb
Znuny guru
Posts: 5018
Joined: 13 Mar 2011, 09:54
Znuny Version: 6.0.x
Real Name: Renée Bäcker
Company: Perl-Services.de
Contact:

Re: Disable merge notification

Post by reneeb »

Just do not check the checkbox "Send to ...". Then no notification is sent.
Perl / Znuny development: http://perl-services.de
Free Znuny add ons from the community: http://opar.perl-services.de
Commercial add ons: http://feature-addons.de
Navidlo
Znuny newbie
Posts: 10
Joined: 16 Jul 2013, 11:49
Znuny Version: 3.2.9
Real Name: Ivan
Company: X-Net

Re: Disable merge notification

Post by Navidlo »

Hi.

Yes. Send to customer (check box "inform customer" is unchecked) .

Please, how i disable sending mail on merge action in system or in program files *.pm ?

Thanks
Navidlo
You do not have the required permissions to view the files attached to this post.
OTRS 3.2.9, ITSM 3.2.7, FAQ on CentOS 6.2 with Mysql 5.1
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Disable merge notification

Post by crythias »

This is a log, but the "History" will tell if it's sent.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Navidlo
Znuny newbie
Posts: 10
Joined: 16 Jul 2013, 11:49
Znuny Version: 3.2.9
Real Name: Ivan
Company: X-Net

Re: Disable merge notification

Post by Navidlo »

Here is hystory.

I test it with mi test account for customer. System send me a mail.

EDIT:Customer mail in last line is my private mail is set as a test customer. Agent is another work mail.

Thanks
You do not have the required permissions to view the files attached to this post.
OTRS 3.2.9, ITSM 3.2.7, FAQ on CentOS 6.2 with Mysql 5.1
Navidlo
Znuny newbie
Posts: 10
Joined: 16 Jul 2013, 11:49
Znuny Version: 3.2.9
Real Name: Ivan
Company: X-Net

Re: Disable merge notification

Post by Navidlo »

Hi.

I found it.
In Ticket.pm, in section "sub TicketMerge" , i change:

# add merge article to merge ticket
$Self->ArticleCreate(
TicketID => $Param{MergeTicketID},
SenderType => 'agent',
ArticleType => 'note-external',
ContentType => "text/plain; charset=ascii",
UserID => $Param{UserID},
HistoryType => 'AddNote',
HistoryComment => '%%Note',
Subject => 'Ticket Merged',
Body => $Body,
NoAgentNotify => 1,
);


to

# add merge article to merge ticket
$Self->ArticleCreate(
TicketID => $Param{MergeTicketID},
SenderType => 'agent',
ArticleType => 'note-internal',
ContentType => "text/plain; charset=ascii",
UserID => $Param{UserID},
HistoryType => 'AddNote',
HistoryComment => '%%Note',
Subject => 'Ticket Merged',
Body => $Body,
NoAgentNotify => 1,
);


This stop sending mail about "Ticket is merged".
OTRS 3.2.9, ITSM 3.2.7, FAQ on CentOS 6.2 with Mysql 5.1
Locked