Displaying 20 results from an estimated 100 matches similar to: "Active sieve script symbolic link doesn't update when changed."
2016 Nov 23
0
Active sieve script symbolic link doesn't update when changed.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Wed, 23 Nov 2016, Steven Mainor wrote:
> Any help would be greatly appreciated.
>
> ~# grep sieve /var/log/syslog | nano temp.save
>
> Nov 23 01:32:09 1 dovecot: lda(steve at degga.net): Warning: sieve: file
> storage: Active Sieve script symlink
> /var/mail/vmail/degga.net/steve/.dovecot.sieve is broken: Invalid scriptname
2017 Feb 06
3
Messages on this list are often marked as spam.
Hello,
It seems that I get several emails a week from this list in my spam
folder. Usually because the DKIM signature fails. Has anyone else
noticed this problem or is it just me?
--
Steven mainor
steve at degga.net
2013 Oct 01
1
network filter and openvswitch bridge
Hello all!
I try to use network filters for openvswitch interfaces. This is the xml configuration of my bridge interface
<interface type='bridge'>
<mac address='00:11:22:33:44:55'/>
<source bridge='virbr1'/>
<virtualport type='openvswitch'>
<parameters interfaceid='0529d6b5-627c-4330-803f-0d7018e6d496'/>
2006 Apr 25
3
Migrating to 0.9.1
After migrating to 0.9.1, I got:
usr/local/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in
`const_missing'': uninitialized constant TokenFilter (NameError)
Here is a snapshot of my code:
...
require ''ferret''
class MyFilter < Analysis::TokenFilter
...
I works fine on my dev machine, but not a production server (shared
host).
Any
2015 Sep 21
4
sieve_extprograms - run any individual script?
Hello,
i use sieve extension sieve_extprograms to send incoming mail to some
script.
For security reasons it is needed that script-paths etc. are registered
in dovecot.conf
This is my current dovecot.conf
plugin {
sieve = ~/.dovecot.sieve
sieve_plugins = sieve_extprograms
sieve_extensions = +vnd.dovecot.pipe +vnd.dovecot.filter
+vnd.dovecot.execute
sieve_pipe_bin_dir =
2017 Feb 07
0
Messages on this list are often marked as spam.
On Mon, 06 Feb 2017 17:39:07 -0500
Steven Mainor <steve at degga.net> wrote:
> Hello,
>
> It seems that I get several emails a week from this list in my spam
> folder. Usually because the DKIM signature fails. Has anyone else
> noticed this problem or is it just me?
>
> --
> Steven mainor
> steve at degga.net
Yes, same here... Having the same problem on other
2017 Feb 09
2
Messages on this list are often marked as spam.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Well for other mailing lists I have noticed that a lot of lists add text to the body or subject saying what list the email is from which would cause the signature not to match.
But the dovecot list doesn't do that so that's why I found it strange that so many emails fail dkim.
- --
Steven Mainor
On February 7, 2017 2:22:59 AM EST,
2015 Mar 10
1
Issues with XML validation after upgrade to 1.2.12
After we upgraded to 1.2.12, we've been having issues with libvirt... it
complains that our formerly valid guest definitions are now invalid:
error: Failed to start domain XXXX
error: internal error: Cannot instantiate filter due to unresolvable
variables or unavailable list elements: DHCPSERVER
We looked into this, and found that it's the XML validation that's failing:
# xmllint
2006 Apr 22
0
Sending arguments to filter methods
I want to set up a before_filter, and I want to be able to pass it
some parameters. My method looks like
def my_filter(a)
...
end
And I want to do
before_filter :myfilter ''a''
I''ve tried the above and
before_filter :myfilter, ''a''
but neither one is acceptable. How can I specify an argument to pass
in to the filter method?
Pat
2017 Feb 09
0
dovecot Digest, Vol 166, Issue 22
Hello to all
After a lot of tries using dovecot 2.2.10 on centos 7 latest ...i could not
manage make dovecot dsync work ...
i have tried a lot of scenarios using mysql as backend , custom user file.
Using by command line the dsync it works fine
Has anyone managed to use 2.2.10 ..?
-----Original Message-----
From: dovecot [mailto:dovecot-bounces at dovecot.org] On Behalf Of
dovecot-request at
2017 Feb 10
0
dovecot Digest, Vol 166, Issue 22
I have not tried it at all. Was just an suggestion. You can try
something like
protocol lda {
namespace archive {
...
}
}
On 10.02.2017 14:12, Nick Lekkas wrote:
>
> Hi Aki
>
>
>
> Thanks for your answer ....
>
> What version of dovecot have you tried it ? Mine is 2.2.10
>
>
>
>
>
>
>
>
>
> *From:*Aki Tuomi
2015 Sep 21
0
sieve_extprograms - run any individual script?
Op 9/21/2015 om 2:34 PM schreef Hajo Locke:
> Hello,
>
> i use sieve extension sieve_extprograms to send incoming mail to some
> script.
> For security reasons it is needed that script-paths etc. are
> registered in dovecot.conf
> This is my current dovecot.conf
>
> plugin {
> sieve = ~/.dovecot.sieve
> sieve_plugins = sieve_extprograms
> sieve_extensions
2013 Feb 07
4
low pass filter analysis in R
Hello R users,
I am trying to use R to do the low pass filter analysis for the tidal data.
I am a novice in R and so far been doing only simple stuffs on R. I found a
package called signal but couldn't find the proper tutorial for the low
pass filter.
Could anyone point me to the proper tutorial or starting point on how to do
low pass filter analysis in R ?
Thank you so much.
Janesh
2018 Jan 16
2
[nbdkit] Proposed (new) filter API
Here's my second attempt at a filter API.
As before, .config and .config_complete can only call the
next->.config or next->.config_complete methods in the chain
respectively.
The change is with the connected functions (get_size, pread, pwrite,
etc.). Here we pass a struct of next functions allowing the filter to
call any functions on the plugin, so for example a write can turn into
2018 Jan 19
0
[PATCH nbdkit filters-v2 2/5] Introduce filters.
Filters can be placed in front of plugins to modify their behaviour.
This commit adds the <nbdkit-filter.h> header file, the manual page,
the ‘filterdir’ directory (like ‘plugindir’), the ‘filters/’ source
directory which will contain the actual filters, the ‘--filters’
parameter, and the filters backend logic.
---
Makefile.am | 2 +-
TODO | 17 +-
2018 Jan 19
0
[PATCH nbdkit filters-v3 3/7] Introduce filters.
Filters can be placed in front of plugins to modify their behaviour.
This commit adds the <nbdkit-filter.h> header file, the manual page,
the ‘filterdir’ directory (like ‘plugindir’), the ‘filters/’ source
directory which will contain the actual filters, the ‘--filters’
parameter, and the filters backend logic.
---
Makefile.am | 2 +-
TODO | 17 +-
2018 Jan 14
10
[PATCH nbdkit INCOMPLETE 0/6] Introduce filters to nbdkit.
This patch isn't complete (patch 6/6 isn't finished) so it's just for
discussion, although it does compile and run.
This introduces to nbdkit a concept of "filters" which can be placed
in front of plugins to modify their behaviour. Some examples where
you might use filters:
* Serve a subset of the data, such as (offset, range) or a
single partition from a disk image.
2018 Jan 19
9
[PATCH nbdkit filters-v3 0/7] Introduce filters.
This is still tentative and needs a lot of work, but:
- partition filter works, supporting MBR & GPT
- prepare and finalize methods fixed
- open method can now be changed (allowing readonly flag to be modified)
- thread_model can be limited
I believe I made most of the changes which were previously suggested
in email. I think the only one I didn't was preventing inclusion of
both
2011 Jan 05
1
Heat map in R
Hello,
I am trying to make a heatmap in R and am having some trouble. I am very new
to the world of R, but have been told that what I am trying to do should be
possible. I want to make a heat map that looks like a gene expression
heatmap (see http://en.wikipedia.org/wiki/Heat_map).
I have 43 samples and 900 genes (yes I know this will be a huge map). I also
have copy numbers associated with
2018 Jan 19
10
[PATCH nbdkit filters-v2 0/5] Introduce filters.
Rebased filters patch. Requires current git master + the locks /
thread model fix
(https://www.redhat.com/archives/libguestfs/2018-January/msg00128.html)
So a few changes here since last time:
The "introduce filters" and "implement filters" patches are
squashed together.
I introduced a concept of .prepare and .finalize. These run before
and after the data serving phase