Hi, this will exclude too much.
^[^FW] means: - beginning of line - every character that is not F or W what you'd want is probably: ^[^F][^W] Another option would be to use negative lookaheads/lookbehinds of Perl's regular expressions. Best regards, Martin Gruner Am Montag, 1. März 2010 22:24:41 schrieb Nils Leideck - ITSM: > Hi, > > On 01.03.2010, at 17:07, Martignier, Philippe wrote: > > I have to implement filters where the subject is not egal to FW: > > How can I do that with the postmaster filter menu in the admin menu? > > I tried : <> and ! but it does not work, what is the expression need to > > say not = ? > > not tested but it could work with "^[^FW]" while FW is at the beginning of > the subject line. > > Nils Leideck > -- Martin Gruner Customer Development OTRS AG Europaring 4 94315 Straubing Deutschland T: +49 (0) 9421 56818 0 F: +49 (0) 9421 56818 18 I: http://www.otrs.com/ Geschäftssitz: Bad Homburg Amtsgericht: Bad Homburg, HRB 10751 Steuernummer: 003 240 97505 Aufsichtsratsvorsitzender: Burchard Steinbild Vorstand: André Mindermann (Vorsitzender), Martin Edenhofer Treffen Sie ((otrs)) auf dem IIR Service Desk Forum in Mainz und erfahren Sie vom 24.-25. November 2009 mehr über OTRS an Stand 12! --------------------------------------------------------------------- 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 NEW! ENTERPRISE SUBSCRIPTION - Get more information NOW! http://www.otrs.com/en/support/enterprise-subscription/
