Hi there,
I have installed a OX with success and everything is running so far.
Now I would like to add additional sieve filter rules.
I think I have to add them into the "oxfilterscript.script" files.
Here is an Example:
# Generated by OX (remove this line if you edit this manually)
require "fileinto";
require "vacation";
if header :is ["X-Spam-Flag"] ["Yes"]
{
fileinto "Spam";
stop ;
}
I would like to add the filter that mails with the receiveraddress junk@hostname
will be moved to a folder named Junk.
I added this block to the scriptfile:
if header :contains ["to"] ["junk@hostname"]
{
fileinto "Spam";
stop ;
}
But finally nothing happend. Do I have to call a certain tool, that accepts the changes of the oxfilterscript.script file?
Thanks in advance.
Best,
Tobi
I have installed a OX with success and everything is running so far.
Now I would like to add additional sieve filter rules.
I think I have to add them into the "oxfilterscript.script" files.
Here is an Example:
# Generated by OX (remove this line if you edit this manually)
require "fileinto";
require "vacation";
if header :is ["X-Spam-Flag"] ["Yes"]
{
fileinto "Spam";
stop ;
}
I would like to add the filter that mails with the receiveraddress junk@hostname
will be moved to a folder named Junk.
I added this block to the scriptfile:
if header :contains ["to"] ["junk@hostname"]
{
fileinto "Spam";
stop ;
}
But finally nothing happend. Do I have to call a certain tool, that accepts the changes of the oxfilterscript.script file?
Thanks in advance.
Best,
Tobi
Comment