On 04/18/2012 09:59 AM, Fritz Mahnke wrote:
> I made the required changes to /opt/rt4/etc/RT_SiteConfig.pm:
> 
> @MailPlugins = qw(Auth::MailFrom Filter::TakeAction);
> Set(@Plugins, (qw(RT::Extension::CommandByMail)));

You're using the RT 3.6 era syntax for @MailPlugins, not the 3.8 and
beyond era syntax.

   Set(@MailPlugins, qw(Auth::MailFrom Filter::TakeAction));

This is noted in INSTALL.

Reply via email to