Title: Message
I would like to ignore all incoming messages sent to [EMAIL PROTECTED], EXCEPT for messages that contain 'ticket' in the subject. How can I do this? I tried following but the rules don't seem to work this way.
Thanks for any help. - Jonas
 
 
#ingore all
 $Self->{'PostMaster::PreFilterModule'}->{'1-Match'} = {
        Module => 'Kernel::System::PostMaster::Filter::Match',
        Match => {
   To => '@'
        },
  Set => {
            'X-OTRS-Ignore' => 'yes',
        },
    };
#don't ignore exception
 $Self->{'PostMaster::PreFilterModule'}->{'2-Match'} = {
        Module => 'Kernel::System::PostMaster::Filter::Match',
        Match => {
   Subject => 'ticket'
        },
        Set => {
            'X-OTRS-Ignore' => 'no',
        },
    };
_______________________________________________
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs
Support oder Consulting f�r Ihr OTRS System?
=> http://www.otrs.de/

Reply via email to