similar to: Feature Request: content-filter / MOVE scripts

Displaying 20 results from an estimated 6000 matches similar to: "Feature Request: content-filter / MOVE scripts"

2008 Jun 05
3
Web proxy/content filter w/ AD integration
I need to setup a proxy that does transparent auth to AD, does anyone have experience or suggestions for a setup that will run in CentOS? I came across an article on integrating Squid with Windows AD for auth but it doesn't auth transparently (is that even possible?). Thanks! jlc
2010 Mar 09
4
Filter web content in a LAN ?
Hi, I installed a network of five desktops in a small town hall, all running CentOS 5.4. The machines are publicly, and the mayor asked me to find some solution to effectively filter web content, as the kids' first reflex is to visit the interesting bits of the Internet first, from satanism to porn. One of the machines will be set up as a router anyway, since the public computer room
2008 Mar 07
3
parsing /proc/cmdline
Hi - I am not an expert at shell script writing. If /proc/cmdline looks like option1 option2 ... ks=http://192.168.1.8/ks/ks.cfg option3 option 4 ... How can I get the 192.168.1.8 out of this cmdline. THanks, Jerry
2013 May 07
1
[LLVMdev] CommandLine: using cl::Positional with enum
Hi,I've been trying to code through CommandLine the options I want my tool accepts, but I find quite impossible to achieve robustly what I need .Look, I want the tool accepts a list of arguments in a particular order. For this goal, I know the cl::Positional flag. But, the problem is that the first argument must be one of a set of options (like a kind of subcommand of the tool). In my case,
2003 Apr 24
3
Collecting dialed digits
I am trying to set up an auto attendant for the first time, and am having trouble getting to the submenu. My extensions.conf file looks like this: [incoming] exten=> s,1,Background,menu1 exten=> s,2,Wait,20 exten=> s,3,Goto,s|1 exten=> 1,1,Playback,option1 exten=> 2,1,Playback,option2 exten=> 3,1,Playback,option3 It is my understanding that asterisk treats the digits entered
2018 Jan 07
1
Mailing list content filtering changes
I've now disabled all content filtering in Mailman, because of the failing DKIM/DMARC issues. Hopefully that solves them for now.. Although this will mean that we'll probably start getting HTML mails to this list, which isn't ideal. I guess an alternative could be to reject any mails with text/html MIME part, but that could prevent some people from sending any mails to this list unless
2007 Oct 15
0
Fwd: Content filtered message notification
I''m not sure why mailman bounced your message (perhaps because you are not subscribed to the mailing list), but I''m glad you have solved your problem. Cheers, James. ---------- Forwarded message ---------- From: mailman-bounces at rubyforge.org <mailman-bounces at rubyforge.org> Date: 14 Oct 2007 17:21 Subject: Content filtered message notification To:
2006 Nov 13
4
Mass filtering page content for javascript anti-spam script
Hi all, I''d like to write a function that replaces all email addresses in my pages with a javascript anti-spam script. I know it''s a bit horrible for screen readers, but I feel it''s our best option at the moment. I think I need some kind of function that builds the javascript depending on the email address and then replaces it in the text. I got a bit lost at this
2018 Jan 18
0
Re: [PATCH 9/9] filters: Move rdelay/wdelay from file plugin to new delay filter.
On Wed, Jan 17, 2018 at 04:38:04PM -0600, Eric Blake wrote: > > +/* Zero data. */ > > +static int > > +delay_zero (struct nbdkit_next *next, void *nxdata, > > + void *handle, uint32_t count, uint64_t offset, int may_trim) > > +{ > > + write_delay (); > > + return next->zero (nxdata, count, offset, may_trim); > > If next->zero()
2008 Apr 01
1
Confusion of Sieve filter scripts and the file separator. (Amatuer Siever)
Hello, I have just been playing around with sieve filters to split up all my incoming mail into the correct directories. I have created some subdirectories to put mailing list emails in and just want to check if my thinking is correct. I am using namespaces with the '/' character as the separator. When creating the fileinto line on my sieve scripts I thought I would have to use the
2018 Jan 18
0
Re: [PATCH 9/9] filters: Move rdelay/wdelay from file plugin to new delay filter.
On 01/17/2018 04:38 PM, Eric Blake wrote: > On 01/17/2018 02:53 PM, Richard W.M. Jones wrote: >> Previously the file plugin supported ‘rdelay’ and ‘wdelay’ parameters >> for injecting delays (for testing) into read and write requests. This >> moves the functionality to a new delay filter so that it can be used >> with any plugin. >> --- > >> +/* Write
2006 Sep 23
2
Need to detect event: a user move a message to a “spam folder” (for antispam filter)
I?m writing an immune system based antispam filter. I need to detect when a user move a message to her spam folder (to inform the filter). I I found ?cmd_copy? in imap library so I detect the copy event. But at this level I wasn?t able to find info about which mail and which user copy this message. My question is: Were I can find user Info to know how is moving this message
2017 Dec 14
0
sieve filter move wrong email to Junk folder
Well I changed the line to ????????? if header :contains "X-Spam-Status: YES" { Then I got: # sievec spam_to_junk.sieve spam_to_junk: line 3: error: the header test requires 2 positional argument(s), but 1 is/are specified. spam_to_junk: error: validation failed. sievec(root): Fatal: failed to compile sieve script 'spam_to_junk.sieve' Should it be: ????????? if header
2017 Dec 15
0
sieve filter move wrong email to Junk folder
This is what I use.? Notice the comma: require "fileinto"; if header :contains "X-Spam-Status" "Yes," { ? fileinto "SystemFolders.SuspectedSpam"; ? stop; } Bill On 12/14/2017 1:02 PM, Richard wrote: > >> Date: Thursday, December 14, 2017 09:47:44 -0800 >> From: Gao <gao at pztop.com> >> >> I use a sieve filter to move
2017 Dec 15
0
sieve filter move wrong email to Junk folder
Am 14.12.2017 um 18:47 schrieb Gao: > I use a sieve filter to move spam email to user's Junk folder: > # cat spam_to_junk.sieve > require "fileinto"; > ? if exists "X-Spam-Status" { > ????????? if header :contains "X-Spam-Status" "YES" { > ????????? fileinto "Junk"; > ????????? stop; > ????????? } else { > ?????
2017 Dec 15
1
sieve filter move wrong email to Junk folder
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Fri, 15 Dec 2017, Bill Shirley wrote: > This is what I use.? Notice the comma: > require "fileinto"; > if header :contains "X-Spam-Status" "Yes," { > ? fileinto "SystemFolders.SuspectedSpam"; > ? stop; > } I would even add the space: if header :contains "X-Spam-Status"
2018 Jan 18
1
Re: [PATCH 9/9] filters: Move rdelay/wdelay from file plugin to new delay filter.
On Wed, Jan 17, 2018 at 08:01:35PM -0600, Eric Blake wrote: > Actually, thinking about this more: > > When I added zero support, I documented in commit ac3f294a that for the > file plugin, wdelay is indeed doubled on systems lacking efficient zero > support. But the fallback for handling EOPNOTSUPP is currently done at > the plugins.c level (ie. it is part of next->zero()) -
2017 Dec 14
6
sieve filter move wrong email to Junk folder
> Date: Thursday, December 14, 2017 09:47:44 -0800 > From: Gao <gao at pztop.com> > > I use a sieve filter to move spam email to user's Junk folder: ># cat spam_to_junk.sieve > require "fileinto"; > ? if exists "X-Spam-Status" { > ????????? if header :contains "X-Spam-Status" "YES" { > ????????? fileinto
2018 Jan 17
4
Re: [PATCH 9/9] filters: Move rdelay/wdelay from file plugin to new delay filter.
On 01/17/2018 02:53 PM, Richard W.M. Jones wrote: > Previously the file plugin supported ‘rdelay’ and ‘wdelay’ parameters > for injecting delays (for testing) into read and write requests. This > moves the functionality to a new delay filter so that it can be used > with any plugin. > --- > +/* Write data. */ > +static int > +delay_pwrite (struct nbdkit_next *next, void
2017 Dec 14
2
sieve filter move wrong email to Junk folder
I use a sieve filter to move spam email to user's Junk folder: # cat spam_to_junk.sieve require "fileinto"; ? if exists "X-Spam-Status" { ????????? if header :contains "X-Spam-Status" "YES" { ????????? fileinto "Junk"; ????????? stop; ????????? } else { ????? } ? } ? if header :contains "subject" ["SPAM?"] { ???