On Mon, Jul 25, 2005 at 04:11:05PM +0300, Sergey Poznyakoff wrote:
> Kostas Zorbadelos <[EMAIL PROTECTED]> wrote:
> 
> > The vacation action in sieve corrupts the subject of messages.
> > Please find attached an example mail produced by sieve
> > vacation. Notice the subject header.
> 
> How exactly was vacation invoked?
> 

Using my example program (that you have seen so many times) and uses
sieve_message() and the attached filters file.

> Regards,
> Sergey
> 
> 
> _______________________________________________
> Bug-mailutils mailing list
> [email protected]
> http://lists.gnu.org/mailman/listinfo/bug-mailutils
> 

-- 
  Kostas Zorbadelos
  Systems Designer/Developer, Otenet SA 
  [EMAIL PROTECTED] contact: kzorba (at) otenet.gr
  
  Out there in the darkness, out there in the night
  out there in the starlight, one soul burns brighter
  than a thousand suns.

#searchpath "/usr/local/mailutils/lib/mailutils"
require ["vacation","fileinto","redirect","reject"];

vacation :subject "I am on vacation"  "I am on vacation. Yahoo!!";

if header :contains "from" "[EMAIL PROTECTED]"
 {
  fileinto "xxx";
 }
elsif header :contains "from" "[EMAIL PROTECTED]"
 {
  reject "I do not accept mails from you...";
 }
elsif header :contains "from" "smaraf"
 {
  redirect "[EMAIL PROTECTED]";
 }
else
 {
  keep;
 }
_______________________________________________
Bug-mailutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-mailutils

Reply via email to