(apololgies for the delay)

On Fri, Jul 17, 2009 at 8:11 PM, Boris Burtin<[email protected]> wrote:
> I had to take a break for a while, and am looking at multi-line forms again.  
> Can someone please send me an example of the multi-line form syntax?

<blockquote cite='http://www.ietf.org/rfc/rfc3028.txt'>
9. Extended Example

   The following is an extended example of a Sieve script. Note that it
   does not make use of the implicit keep.

    #
    # Example Sieve Filter
    # Declare any optional features or extension used by the script
    #
    require ["fileinto", "reject"];

    #
    # Reject any large messages (note that the four leading dots get
    # "stuffed" to three)
    #
    if size :over 1M
            {
            reject text:
    Please do not send me large attachments.
    Put your file on a server and send me the URL.
    Thank you.
    .... Fred
    .
    ;
            stop;
            }
    #

</blockquote>

think that the problem may be that text: shouldn't be quoted ("text:")

- robert

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to