[Users] Claws mail: 'nested' (compound) simple filtering

Victoria S. 1 at VictoriasJourney.com
Wed Nov 13 23:07:46 CET 2013


Whoops!  Re:

> INTENTION:
> 
> s drink & (s sugar | s sweet)   ##  << error: used | ("NOT") operator; intended ! or ~ ("OR") operator
> 
> equivalent to
> 
> s drink* "AND" [s sugar* "NOT" s sweet*] 

that should be

INTENTION:

s drink & (s sugar ! s sweet)   ## << as (originally) intended, using the ! (equiv. to: ~) "NOT" operator

equivalent to

s drink* "AND" [s sugar* "NOT" s sweet*] 

SOLUTION:

s drink & s sugar & ~s sweet

etc.

 ===============================================================



More information about the Users mailing list