Many sites set a maximum size for email messages. Enforce this policy in the PureMessage policy with the following code:
if size :over 100K { reject "Message is too large: maximum 100K"; stop; }
The size test returns true if the message exceeds 100K. To specify a size that is below a specified threshold, use :under instead of :over.