Re: Sieve notify implementation

2005-01-12 Thread Paul Wolstenholme
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Jan 12, 2005, at 7:04 AM, Ken Murchison wrote: Another problem has emerged. When notifications are sent some mail servers are rejecting them with a "421 Service unavailable". I think it may be relate to an empty from string. Is there a way to speci

Re: Sieve notify implementation

2005-01-12 Thread Ken Murchison
Paul Wolstenholme wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Jan 8, 2005, at 11:10 AM, Ken Murchison wrote: You're close with the syntax, but you missed a couple of quotes, etc. Also, you can't insert CRLF in a text string (they'll be treated as escaped 'r' and 'n'). If you want mul

Re: Sieve notify implementation

2005-01-11 Thread Paul Wolstenholme
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Jan 8, 2005, at 11:10 AM, Ken Murchison wrote: You're close with the syntax, but you missed a couple of quotes, etc. Also, you can't insert CRLF in a text string (they'll be treated as escaped 'r' and 'n'). If you want multi-line output, you need

Re: Sieve notify implementation

2005-01-08 Thread Paul Wolstenholme
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Jan 8, 2005, at 9:45 AM, info-cyrus -- Amos Gouaux wrote: It seems to be an older protocol not used much anymore. Ideally, I would like to be able to send notifications via other IMs (eg. IRC, ICQ, AIM, etc.). Would this require a new implementatio

Re: Sieve notify implementation

2005-01-08 Thread Ken Murchison
Paul Wolstenholme wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm interested in finding more information regarding sieve notify. I have found an example usage: require "notify"; if header :contains "from" "[EMAIL PROTECTED]" { notify :message "Important message"; } Th

Re: Sieve notify implementation

2005-01-08 Thread info-cyrus -- Amos Gouaux
It seems to be an older protocol not used much anymore. Ideally, I would like to be able to send notifications via other IMs (eg. IRC, ICQ, AIM, etc.). Would this require a new implementation or are there zephyr gateways/bridges which could be used. I've always thought it would be nifty to do a

Sieve notify implementation

2005-01-07 Thread Paul Wolstenholme
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm interested in finding more information regarding sieve notify. I have found an example usage: require "notify"; if header :contains "from" "[EMAIL PROTECTED]" { notify :message "Important message"; } The question I have is how