Re: [rt-users] RT Not Sending Autoreply E-Mails On Ticket Creation Via E-Mail

2015-09-25 Thread Christian Loos
Am 24.09.2015 um 23:42 schrieb Tim Gustafson:
> I think the problem is that NotifyActor is set to 0; when I changed it
> to 1, the e-mail originator got their autoreply.  But it seems to me
> that an autoreply should go out, even if NotifyActor is set to 0.  Did
> something change around that option recently?

This is the difference between the Notify* actions, which respects the
NotifyActor setting, and the "Autoreply To Requestors" action, which
sends always an auto reply regarding  of the NotifyActor setting.

The screen shot of your scrips shows, that you only user the Notify*
actions and don't have a script which uses the "Autoreply To Requestors"
action.
The "On Create Autoreply To Requestors" scrip [1], which is created on
RT installation, is missing.

Chris

[1]
https://github.com/bestpractical/rt/blob/stable/etc/initialdata#L759-L762


Re: [rt-users] Adding HTML comment with a scrip

2015-09-25 Thread Matt Zagrabelny
Hi Armen,

On Thu, Sep 24, 2015 at 2:00 PM, Armen Tashjian  wrote:
> Hello,
>
>
>
> I am trying to add a comment as a scrip with some html tags.  For example:
>
>
>
> $self->TicketObj->Comment(Content=> “Hello”,
> Type=>'text/html');
>
>
>
> The “Type” parameter does not seem to do anything though.  Is it not
> possible to add comments as HTML using a scrip?

I notice you are using the word, "scrip". Without a 't' the word has a
different connotation in RT. With a 't', like script, it means a perl
script - which your code fragment above suggests you are doing.

Which one are you talking about: scrip or script?

Cheers,

-m