Displaying 20 results from an estimated 10000 matches similar to: "Running sievec as user vmail"
2017 Apr 07
0
Running sievec as user vmail
You could give
# su -c MYSIEVESCRIPT vmail
a try.
Also: # man su
Cheers, Florian
_____________________
42dev e. U. - web solutions & hosting services
http://42dev.eu
On 2017-04-07 14:19, Robert Moskowitz wrote:
> My sieve problem ended up a permissions problem. I ran sievec as root
> and .svbin needs vmail:mail ownership.
>
> I could always just add the chown command to my
2011 Aug 01
2
sievec - manual compile of global sieve scripts?
How do you compile global scripts using the sievec command without
making the script directory owned (and group writable) by the vmail user?
http://wiki2.dovecot.org/Pigeonhole/Sieve/Usage
# cd /etc/dovecot/sieve/before/
# (edit some script like spam.sieve that runs for everyone)
# /usr/local/bin/sievec spam.sieve spam.svbin
sievec(root): Error: sieve: binary save: failed to create temporary
2014 Dec 09
5
Sieve permissions issue following update
It has been running flawlessly for quite some time until the update.
Global scripts were compiled:
/usr/local/etc/dovecot/sieve # ls
10-move-spam.sieve 10-move-spam.svbin
However, I ran sievec again and tried saving a modified script and got the same:
shiofuki dovecot: lda(gessel at blackrosetech.com): Error: sieve: binary save: failed to create temporary file:
2019 Nov 05
2
sievec *.sieve problem.
Hello!
For the second time I've tripped onto this banana peel. :)
I had 2 sieve files in a directory that I wanted to compile:
sievec *.sieve
The result of this is that first.sieve is compiled into second.sieve
instead of first.svbin, thus destroying the source of second.sieve.
Please consider this a bug report. :)
Good luck,
Reio
2017 Mar 21
2
Problem with sieve_before
On 03/21/2017 09:06 AM, chaouche yacine wrote:
> Hi Ger,
>
> sieve_before should be a path to sieve script file, not to a directory.
> in your configuration, you set sieve_before to /var/lib/dovecot/sieve/before which is a directory.
I don't get that reading:
https://wiki2.dovecot.org/Pigeonhole/Sieve/Configuration
Either file or directory. If a file, it searches for the svbin
2017 Mar 16
4
sievec
I am building a new mailserver on Centos7.
My sieve is created with:
mkdir /home/sieve
cat <<EOF>/home/sieve/globalfilter.sieve || exit 1
require "fileinto";
if exists "X-Spam-Flag" {
if header :contains "X-Spam-Flag" "NO" {
} else {
fileinto "Spam";
stop;
}
}
if header :contains "subject"
2014 Dec 11
2
Sieve permissions issue following update [solved]
-------- Original Message --------
Subject: Re: Sieve permissions issue following update
From: Steffen Kaiser <skdovecot at smail.inf.fh-brs.de>
To: David Gessel <gessel at blackrosetech.com>
Date: Wed Dec 10 2014 09:52:57 GMT+0300 (Arabic Standard Time)
>
> Actually this "ls" output and the last sentence does not indicate that the Sieve script had been compiled: a)
2014 Dec 31
4
Sieve permissions issue following update
On Dec 10, 2014, at 1:52 AM, Steffen Kaiser <skdovecot at smail.inf.fh-brs.de> wrote:
>
>> Global scripts were compiled:
>>
>> /usr/local/etc/dovecot/sieve # ls
>> 10-move-spam.sieve 10-move-spam.svbin
>
>> However, I ran sievec again and tried saving a modified script and got the same:
>
> Actually this "ls" output and the last
2018 Jun 12
1
sievec prints an error if no dovecot running with mail_plugins = stats
Dovecot 2.2.36 + Pigeonhole 0.4.24
Is this an intended behavior?
```
# service dovecot status
dovecot is stopped
# doveconf mail_plugins
mail_plugins = stats
# ls foo.*
foo.sieve
# sievec foo.sieve
sievec(root): Error: stats: open(/var/run/dovecot/stats-mail) failed: No such device or address
# echo $?
0
# ls foo.*
foo.sieve foo.svbin
```
--
-- Name: SATOH Fumiyasu @ OSS Technology Corp.
2015 Aug 04
2
Dovecot sieve pigeonhole permission
Hello,
I'm running dovecot in a classical vmail.vmail setup with pigeonhole and
LMTP. Permission worked well in the initial setup but currently (maybe
after Fedora 22 update) I'm having the following permission issue:
lmtp(root): Error: 7fPZFOL9wFXePQAABcdabc: sieve: binary open: failed to
open: open(/etc/dovecot/sieve_after.svbin) failed: Permission denied
(euid=9999(vmail)
2014 Dec 09
2
Sieve permissions issue following update
I recently updated dovecot and my sieve filters stopped working. Checking the logs I see:
Dec 9 00:09:59 mailhost dovecot: lda(gessel at domain.com): Error: sieve: binary save: failed to create temporary file: open(/usr/local/etc/dovecot/sieve/10-move-spam.svbin.mailhost.domain.com.114.) failed: Permission denied (euid=5000(vmail) egid=5000(vmail) missing +w perm: /usr/local/etc/dovecot/sieve,
2011 Mar 17
1
Problem with recompiling sieve scripts after migrating to Dovecot 2.0 from 1.2
I saw this in log file of dovecot:
Error: sieve: binary save: failed to create temporary file:
open(/usr/local/etc/sieve/after/after.dovecot.svbin.acamail.acasalud.com.ar.13528.)
failed: Permission denied (euid=40(vmail) egid=41(vmail) missing +w
perm: /usr/local/etc/sieve/after, euid is not dir owner)
acamail dovecot: lda(xxxxx at xxxxxx): Error: sieve: the lda sieve plugin
does not have
2015 Jan 01
2
Sieve permissions issue following update
On Jan 1, 2015, at 9:50 AM, Stephan Bosch <stephan at rename-it.nl> wrote:
>
> Hmm. This smells like a bug. I notice that your modification times of
> the .sieve and .svbin file are exactly the same (that is somewhat
> unusual). I'm looking at a potential bug that would explain your problem.
>
> To confirm, could you try running sievec again, so that the .svbin is
2017 Mar 21
2
Problem with sieve_before
On 03/21/2017 11:32 AM, chaouche yacine wrote:
>> On Tuesday, March 21, 2017 3:03 PM, Robert Moskowitz <rgm at htt-consult.com> wrote:
>> On 03/21/2017 09:06 AM, chaouche yacine wrote:
>>> Hi Ger,
>>>
>>> sieve_before should be a path to sieve script file, not to a directory.
>>> in your configuration, you set sieve_before to
2017 Mar 17
4
sievec
Doug,
On 03/16/2017 11:23 PM, Doug Barton wrote:
> Your pattern seems a little too complicated. See below.
I acquired this script from:
http://www.campworld.net/thewiki/pmwiki.php/LinuxServersCentOS/Cent6VirtMailServer
No telling where he got it from. So I greatly appreciate any and all
advice.
I am writing my own howto, and I would like to think I am doing a better
job of it. I hope
2015 Aug 05
1
Dovecot sieve pigeonhole permission
On 05.08.2015 13:06, Steffen Kaiser wrote:
> On Tue, 4 Aug 2015, Gerhard Wiesinger wrote:
>
>>
>> I'm running dovecot in a classical vmail.vmail setup with pigeonhole
>> and LMTP. Permission worked well in the initial setup but currently
>> (maybe after Fedora 22 update) I'm having the following permission
>> issue:
>>
>> lmtp(root):
2015 Mar 11
2
Why is Sieve trying to re-compile global scripts?
I have some global scripts that were running nicely.
Then I opened one in an editor and (probably, but not 100% sure)
mindlessly saved the file, even though I hadn't made any changes.
Shortly after, Sieve errors started showing in the log:
Error: 4k5JA74R/1TlIwABG/SpMA: sieve: binary save: failed to create temporary file: open(/usr/local/var/dovecot/sieve/script2.svbin.example.com.4139.)
2017 Feb 07
2
Sieve LDA Errors (Improper Saving?)
I'm getting lots of errors like this (possibly on every message delivery):
imap2 dovecot: lmtp(rlaager at wiktel.com): Error: OU02K+gQmFhUAwAAVtfydQ
: sieve: binary save: failed to create temporary file:
open(/var/lib/dovecot/sieve/junk-mail.svbin.ima
p2.852.) failed: Permission denied (euid=500(vmail) egid=500(vmail)
missing +w perm: /var/lib/dovecot/
sieve, dir owned by 0:0 mode=0755)
2020 Sep 24
2
How do I make "vnd.dovecot.environment" available?
Hi all,
According to the docs at https://wiki.dovecot.org/Pigeonhole/Sieve, some extensions are not available by default.
The docs tell me the sieve_plugins, sieve_extensions and/or sieve_global_extensions configs are involved, but I can find no authoritative documentation as to what the values should be.
What values must I use to make ?vnd.dovecot.environment? available?
Adding
2015 Jan 01
2
Sieve permissions issue following update
On 1/1/2015 4:17 PM, Robert Blayzor wrote:
> On Jan 1, 2015, at 9:58 AM, Robert Blayzor <rblayzor.bulk at inoc.net> wrote:
>>> Hmm. This smells like a bug. I notice that your modification times of
>>> the .sieve and .svbin file are exactly the same (that is somewhat
>>> unusual). I'm looking at a potential bug that would explain your problem.
>>>