Displaying 2 results from an estimated 2 matches for "iregex".
Did you mean:
regex
2010 May 20
2
POP3 Problem with SPAM-Mail's over sieve
Hi together,
i am currently using dovecot 1.2.10 with the sieve-plugin and use a
sieve-filter to sort the SPAM-Mail's directly into a Junk-Folder:
require "fileinto";
# rule:[junkfilter]
if header :contains "X-Spam-Flag" "YES" {
fileinto "Junk";
}
My problem is now, if i try to retrieve the Mails via POP3, i did not get the
SPAM-Mail's in the
2010 Feb 02
1
Does Filter use standard regex syntax?
...but I need some clarification on filter/include/exclude syntax.
I'd like to use the 'find' command to scan modules tree for per-dir merge/filter file.
Here is an option form find man:
-----------------------
-regextype type
Changes the regular expression syntax understood by -regex and -iregex tests which occur later on the command line. Currently-implemented types are emacs (this is the default), posix-awk, posix-basic, posix-egrep and posix-extended.
-----------------------
Does Filter syntax match one of these standard?
If no:
1- Does Filter use a STANDARD regex syntax?
2- Whe...