Date

Size statements

Size format

Size is using megabytes as a unit so 1 = 1000000 bytes = 1 Megabyte, ...


Example :
this will match a mail that has a total size of 45 MB

<entry>
    <category term='filter'></category>
    <title>Mail Filter</title>
    <id>4051388416584988610</id>
    <updated>2018-07-07T07:07:07Z</updated>
    <content></content>
    <apps:property name='size' value='45'/>
    <apps:property name='forwardTo' value='iamnot@atest.ovh'/>
</entry>

larger operator

Operator that will match element that are bigger than a given size


Example :
this will match a mail that has a minimum size of 45 MB

<entry>
    <category term='filter'></category>
    <title>Mail Filter</title>
    <id>4051388416584988610</id>
    <updated>2018-07-07T07:07:07Z</updated>
    <content></content>
    <apps:property name='size' value='larger:45M'/>
    <apps:property name='forwardTo' value='iamnot@atest.ovh'/>
</entry>

smaller operator

Operator that will match element that are smaller than a given size


Example :
this will match a mail that has a maximum size of 45 MB

<entry>
    <category term='filter'></category>
    <title>Mail Filter</title>
    <id>4051388416584988610</id>
    <updated>2018-07-07T07:07:07Z</updated>
    <content></content>
    <apps:property name='size' value='smaller:45M'/>
    <apps:property name='forwardTo' value='iamnot@atest.ovh'/>
</entry>