Re: Sieve not working again

2024-12-11 Thread christian via dovecot
But what is never mentioned in the docs is where you have to enter this in the dovecot setup. Does this also affect the sieve scripts that only do things like mark as read or move to INBOX.stuff? Christian Am 11.12.2024 um 14:20 schrieb Aki Tuomi: https://doc.dovecot.org/2.3/settings/core/#co

Re: Sieve not working again

2024-12-11 Thread Aki Tuomi via dovecot
https://doc.dovecot.org/2.3/settings/core/#core_setting-sendmail_path and https://doc.dovecot.org/2.3/settings/core/#core_setting-submission_host Aki > On 11/12/2024 15:08 EET christian via dovecot wrote: > > > Where is this set up with submission_host and sendmail_path? I can't > find any

Re: Sieve not working again

2024-12-11 Thread christian via dovecot
Where is this set up with submission_host and sendmail_path? I can't find anything about this in dovecot. Christian Am 11.12.2024 um 13:58 schrieb Aki Tuomi via dovecot: Ok, then I would suggest checking your MTA logs to see if such attempt was ever made? Also I wonder if you have submission

Re: Sieve not working again

2024-12-11 Thread Aki Tuomi via dovecot
Ok, then I would suggest checking your MTA logs to see if such attempt was ever made? Also I wonder if you have submission_host or sendmail_path configured correctly? Aki > On 11/12/2024 14:45 EET christian via dovecot wrote: > > > sieve-test result > > sieve-test -c /etc/dovecot/dovecot.

Re: Sieve not working again

2024-12-11 Thread christian via dovecot
sieve-test result sieve-test -c /etc/dovecot/dovecot.conf /var/customers/sieve/postmas...@domain.info/filter.sieve /home/mail/domain/domain.info/postmaster/cur/'17 33920865.M944228P1768729.wwl10,S=6511,W=6637:2,' sieve-test(root)<1768869><>: Debug: Loading modules from directory: /usr

Re: Sieve not working again

2024-12-11 Thread Aki Tuomi via dovecot
Please try sieve-test, it comes with dovecot and you can use it to actually get pretty detailed information about what happens with your script. I cannot see anything in particular wrong with your config. Aki > On 11/12/2024 14:19 EET christian via dovecot wrote: > > > But it doesn't matter

Re: Sieve not working again

2024-12-11 Thread christian via dovecot
But it doesn't matter which email comes in. In the test case, every email that comes in should be forwarded. No Sieve action is written to the sieve.log. Something doesn't seem to be working properly. Can you take a look at my attached postconf -n to see if you can see anything? Am 11.12.202

Re: Sieve not working again

2024-12-11 Thread Aki Tuomi via dovecot
Have you tried with sieve-test? It could provide more information on what is happening with your script and email. Aki > On 11/12/2024 13:54 EET christian via dovecot wrote: > > > I have a typical line from the log that shows how a sieve script is > accessed. But it is not taken into accoun

Re: Sieve not working again

2024-12-11 Thread christian via dovecot
I have a typical line from the log that shows how a sieve script is accessed. But it is not taken into account. All user sieve scripts are not executed. All before.script entries are executed properly. Dec 11 12:45:26 lda(postmas...@domain.info)<1725352>: Debug: sieve: file storage: Relative

Re: Sieve not working again

2024-12-11 Thread Aki Tuomi via dovecot
It's hard to say exactly, can you consider posting it to the list? Make sure it does not contain anything you don't want to make public. Aki > On 11/12/2024 13:00 EET christian via dovecot wrote: > > > Hello Aki, > can you tell me what exactly I should be looking for? With the amount of > l

Re: Sieve not working again

2024-12-11 Thread christian via dovecot
Hello Aki, can you tell me what exactly I should be looking for? With the amount of log entries in the debug.log it is otherwise very difficult to find something if you don't know what to look for. Thanks Christian Am 11.12.2024 um 08:02 schrieb Aki Tuomi via dovecot: On 08/12/2024 14:37 EE

Re: Sieve not working again

2024-12-10 Thread Aki Tuomi via dovecot
> On 08/12/2024 14:37 EET christian via dovecot wrote: > > > Hello, > For the past few weeks, I have been facing an issue where user Sieve > scripts no longer work. > > I have configured the filtering of spam emails marked by Rspamd in a > before.sieve script, and that works fine. However,

Sieve not working again

2024-12-08 Thread christian via dovecot
Hello, For the past few weeks, I have been facing an issue where user Sieve scripts no longer work. I have configured the filtering of spam emails marked by Rspamd in a before.sieve script, and that works fine. However, the user scripts created via ManageSieve through the Roundcube webmailer

Re: Subfolder in sieve not working as expected

2021-11-17 Thread Kees van Vloten
On 17-11-2021 09:38, Remy Zandwijk wrote: On 16 Nov 2021, at 21:43, Kees van Vloten wrote: On 15-11-2021 23:04, dove...@ptld.com wrote: On 11-15-2021 3:46 pm, Kees van Vloten wrote: I am trying to move incoming mails into subfolders with this sieve script: require ["fileinto", "variables",

Re: Subfolder in sieve not working as expected

2021-11-17 Thread Remy Zandwijk
> On 16 Nov 2021, at 21:43, Kees van Vloten wrote: > > On 15-11-2021 23:04, dove...@ptld.com wrote: On 11-15-2021 3:46 pm, Kees van Vloten wrote: >>> >>> I am trying to move incoming mails into subfolders with this sieve script: >>> >>> require ["fileinto", "variables", "mailbox"]; >>>

Re: Subfolder in sieve not working as expected

2021-11-16 Thread Kees van Vloten
On 15-11-2021 23:04, dove...@ptld.com wrote: On 11-15-2021 3:46 pm, Kees van Vloten wrote: I am trying to move incoming mails into subfolders with this sieve script: require ["fileinto", "variables", "mailbox"]; if header :matches "Delivered-To" "*@*" {     fileinto :create "INBOX/${2}"; } I

Subfolder in sieve not working as expected

2021-11-15 Thread Kees van Vloten
On 15-11-2021 23:04, dove...@ptld.com wrote: On 11-15-2021 3:46 pm, Kees van Vloten wrote: I am trying to move incoming mails into subfolders with this sieve script: require ["fileinto", "variables", "mailbox"]; if header :matches "Delivered-To" "*@*" {     fileinto :create "INBOX/${2}"; }

Re: Subfolder in sieve not working as expected

2021-11-15 Thread dovecot
> On 11-15-2021 3:46 pm, Kees van Vloten wrote: > > I am trying to move incoming mails into subfolders with this sieve script: > > require ["fileinto", "variables", "mailbox"]; > if header :matches "Delivered-To" "*@*" > { >     fileinto :create "INBOX/${2}"; > } I am not using variables and my

Subfolder in sieve not working as expected

2021-11-15 Thread Kees van Vloten
Hi everybody, I am trying to move incoming mails into subfolders with this sieve script: require ["fileinto", "variables", "mailbox"]; if header :matches "Delivered-To" "*@*" {     fileinto :create "INBOX/${2}"; } On a message to u...@example.com I would expect it to be stored in the folder '

Re: Sieve not working.

2018-03-15 Thread Jungersen, Danjel - Jungersen Grafisk ApS
On 15 Mar 2018 at 9:01, Aki Tuomi wrote: On 15.03.2018 00:43, Jungersen, Danjel - Jungersen Grafisk ApS wrote: Hi there. I have set up dovecot and sieve. I can log in, see, send and receive mails. I can move files around via imap. I have set up a sieve script that are s

Re: Sieve not working.

2018-03-15 Thread Jungersen, Danjel - Jungersen Grafisk ApS
Extra note... I also edited a bit here: root@mail:/home/danjel# cat /etc/dovecot/sieve-after/spam-to-folder.sieve require ["fileinto","mailbox"]; if header :contains "X-Spam" "Yes" {  fileinto :create "Junk";  stop; } On 15 Mar 2018 at 9:01, Aki Tuomi wrote: On 15.03.2018 00:

Re: Sieve not working.

2018-03-15 Thread Aki Tuomi
On 15.03.2018 00:43, Jungersen, Danjel - Jungersen Grafisk ApS wrote: > Hi there. > > I have set up dovecot and sieve. > > I can log in, see, send and receive mails. > I can move files around via imap. > > I have set up a sieve script that are supposed to move some files to > junk based on a head

Sieve not working.

2018-03-14 Thread Jungersen, Danjel - Jungersen Grafisk ApS
Hi there. I have set up dovecot and sieve. I can log in, see, send and receive mails. I can move files around via imap. I have set up a sieve script that are supposed to move some files to junk based on a header from rspamd. The header is there in the relevant emails, but sieve does not

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-06-01 Thread SM
Hi Matt, At 09:46 10-05-2011, Matt Mc Namara wrote: 1. Does anyone have a working configuration using sendmail, dovecot and sieve for filters? sendmail.mc: FEATURE(`local_procmail', `/usr/local/libexec/dovecot/deliver',`/usr/local/libexec/dovecot/deliver -d $u') MODIFY_MAILER_FLAGS(`LOCAL',

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-10 Thread Osvaldo Alvarez Pozo
Hi I do not see your lda configuration in dovecot, I should look like: protocol lda { mail_plugins = sieve postmaster_address =postmas...@example.com } Thanks 2011/5/10 Matt Mc Namara : > Hi All, > > I seem to be getting nowhere on this problem. > > 1. Does anyone have a working configurati

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-10 Thread Timo Sirainen
On Tue, 2011-05-10 at 12:46 -0400, Matt Mc Namara wrote: > 3. Sendmail version 8.14.4 is being used and the .mc file has been modifed > to use dovecot as > the LDA. A new .cf file has been created and is currently running. This is very likely where the problem is. My guess is that Sendmail is

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-10 Thread Matt Mc Namara
Hi All, I seem to be getting nowhere on this problem. 1. Does anyone have a working configuration using sendmail, dovecot and sieve for filters? 2. Dovecot 2.0.11 currently is running and working both with imap and pop3. 3. Sendmail version 8.14.4 is being used and the .mc file has been modife

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-10 Thread Timo Sirainen
09 13:05:16 lda: Debug: Module loaded: > /usr/lib/dovecot/lib90_sieve_plugin.so > May 09 13:05:30 lda: Debug: Module loaded: > /usr/lib/dovecot/lib90_sieve_plugin.so > > - Original Message - > From: "Timo Sirainen" > To: "Matt Mc Namara" > Cc:

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-09 Thread Matt Mc Namara
/lib90_sieve_plugin.so May 09 13:05:30 lda: Debug: Module loaded: /usr/lib/dovecot/lib90_sieve_plugin.so - Original Message - From: "Timo Sirainen" To: "Matt Mc Namara" Cc: Sent: Monday, May 09, 2011 1:41 PM Subject: Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-09 Thread Timo Sirainen
On Mon, 2011-05-09 at 13:28 -0400, Matt Mc Namara wrote: > Does anyone have any ideas? I've checked my sendmail.cf file which has the > entry for dovecot-lda, I've even run it manually and it still does not move > the email to the designated file. The logfile for debugging "says" it is > running

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-09 Thread Matt Mc Namara
1 3:31 AM Subject: Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working On 5/7/2011 12:54 AM, Matt Mc Namara wrote: Hi, I'm trying to get sieve working with dovecot. I seem to have everything enabled but my scripts done seem to work. both sieve-filter (2000) and sieve (4190) are runnin

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-08 Thread Matt Mc Namara
.11 using SIEVE not working On 5/7/2011 12:54 AM, Matt Mc Namara wrote: Hi, I'm trying to get sieve working with dovecot. I seem to have everything enabled but my scripts done seem to work. both sieve-filter (2000) and sieve (4190) are running Uh, what do you mean with sieve

Re: [Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-07 Thread Stephan Bosch
On 5/7/2011 12:54 AM, Matt Mc Namara wrote: Hi, I'm trying to get sieve working with dovecot. I seem to have everything enabled but my scripts done seem to work. both sieve-filter (2000) and sieve (4190) are running Uh, what do you mean with sieve-filter in this case? Regarding your pro

[Dovecot] DOVECOT v2.0.11 using SIEVE not working

2011-05-06 Thread Matt Mc Namara
Hi, I'm trying to get sieve working with dovecot. I seem to have everything enabled but my scripts done seem to work. both sieve-filter (2000) and sieve (4190) are running along with pop3 and imap. I have a simple script which checks the email address and moves it to a folder. I'm at a loss as

Re: [Dovecot] global sieve not working

2011-03-29 Thread Barry Kwok
On Tue, Mar 29, 2011 at 10:04 PM, Tom Hendrikx wrote: > On 29/03/11 15:50, Barry Kwok wrote: > > On Tue, Mar 29, 2011 at 8:27 PM, Jim Knuth wrote: > > > >> am 29.03.11 14:04 schrieb Tom Hendrikx : > >> > >> > >> On 29/03/11 13:22, Barry Kwok wrote: > >>> > My global sieve rule is not worki

Re: [Dovecot] global sieve not working

2011-03-29 Thread Tom Hendrikx
On 29/03/11 15:50, Barry Kwok wrote: > On Tue, Mar 29, 2011 at 8:27 PM, Jim Knuth wrote: > >> am 29.03.11 14:04 schrieb Tom Hendrikx : >> >> >> On 29/03/11 13:22, Barry Kwok wrote: >>> My global sieve rule is not working and do not compile. But per-user sieve is working. Here

Re: [Dovecot] global sieve not working

2011-03-29 Thread Barry Kwok
On Tue, Mar 29, 2011 at 8:27 PM, Jim Knuth wrote: > am 29.03.11 14:04 schrieb Tom Hendrikx : > > > On 29/03/11 13:22, Barry Kwok wrote: >> >>> My global sieve rule is not working and do not compile. But per-user >>> sieve >>> is working. >>> Here is my dovecot -n: >>> >>> log_path: /var/log/dove

Re: [Dovecot] global sieve not working

2011-03-29 Thread Jim Knuth
am 29.03.11 14:04 schrieb Tom Hendrikx : On 29/03/11 13:22, Barry Kwok wrote: My global sieve rule is not working and do not compile. But per-user sieve is working. Here is my dovecot -n: log_path: /var/log/dovecot.log protocols: imap pop3 ssl: no login_dir: /var/run/dovecot/login login_execut

Re: [Dovecot] global sieve not working

2011-03-29 Thread Tom Hendrikx
On 29/03/11 13:22, Barry Kwok wrote: > My global sieve rule is not working and do not compile. But per-user sieve > is working. > Here is my dovecot -n: > > log_path: /var/log/dovecot.log > protocols: imap pop3 > ssl: no > login_dir: /var/run/dovecot/login > login_executable(default): /usr/libexec

Re: [Dovecot] global sieve not working

2011-03-29 Thread Jerry
On Tue, 29 Mar 2011 19:22:44 +0800 Barry Kwok articulated: > My global sieve rule is not working and do not compile. But per-user > sieve is working. Are you implying that the global dovecot.sieve does not actually compile or it is not being used? What error message is output when you run:

[Dovecot] global sieve not working

2011-03-29 Thread Barry Kwok
My global sieve rule is not working and do not compile. But per-user sieve is working. Here is my dovecot -n: log_path: /var/log/dovecot.log protocols: imap pop3 ssl: no login_dir: /var/run/dovecot/login login_executable(default): /usr/libexec/dovecot/imap-login login_executable(imap): /usr/libexe

Re: [Dovecot] sieve not working if i have override

2011-02-08 Thread Bradley Giesbrecht
or=meganet@dovecot.org [mailto:dovecot-bounces+razor=meganet@dovecot.org] On Behalf Of Timo Sirainen Sent: Tuesday, February 08, 2011 12:34 PM To: Paul A Cc: Dovecot Mailing List Subject: Re: [Dovecot] sieve not working if i have override Add some more trickyness to your SQL query using anoth

Re: [Dovecot] sieve not working if i have override

2011-02-08 Thread Paul A
--- From: dovecot-bounces+razor=meganet@dovecot.org [mailto:dovecot-bounces+razor=meganet@dovecot.org] On Behalf Of Timo Sirainen Sent: Tuesday, February 08, 2011 12:34 PM To: Paul A Cc: Dovecot Mailing List Subject: Re: [Dovecot] sieve not working if i have override Add some more trickyn

Re: [Dovecot] sieve not working if i have override

2011-02-08 Thread Timo Sirainen
w only certain > domains ACL access instead of the override. Not sure if Timo has any ideas. > > Thanks, Paul > > > -Original Message- > From: Stephan Bosch [mailto:step...@rename-it.nl] > Sent: Tuesday, February 08, 2011 3:18 AM > To: Paul A > Cc: 

Re: [Dovecot] sieve not working if i have override

2011-02-08 Thread Paul A
M To: Paul A Cc: 'Dovecot Mailing List' Subject: Re: [Dovecot] sieve not working if i have override On 2/8/2011 12:33 AM, Paul A wrote: > Hi, > > > > I have a few domain that I'm overriding the mail_plugins, see password query > below, however when I use this

Re: [Dovecot] sieve not working if i have override

2011-02-08 Thread Stephan Bosch
On 2/8/2011 12:33 AM, Paul A wrote: Hi, I have a few domain that I'm overriding the mail_plugins, see password query below, however when I use this password query everything is working expect sieve gives me an error. How can I get around this problem? [...] Feb 7 18:28:20 testip5 dovecot:

[Dovecot] sieve not working if i have override

2011-02-07 Thread Paul A
Hi, I have a few domain that I'm overriding the mail_plugins, see password query below, however when I use this password query everything is working expect sieve gives me an error. How can I get around this problem? password_query = SELECT username as user, password, \ if('%d' IN ('

Re: [Dovecot] Sieve not working

2010-11-07 Thread Christoph Pleger
Hello, > > I installed dovecot 2.0.6 and pigeonhole 0.2.1 on my system, but I guess > > that sieve is not working, because netstat does not show that anything is > > listening to ports 2000 and 4190. > > You mean that the Sieve protocol (ManageSieve) is not working. > > > protocols = imap lmtp > >

Re: [Dovecot] Sieve not working

2010-11-07 Thread Stephan Bosch
On 11/7/2010 11:31 AM, Christoph Pleger wrote: Hello, I installed dovecot 2.0.6 and pigeonhole 0.2.1 on my system, but I guess that sieve is not working, because netstat does not show that anything is listening to ports 2000 and 4190. You mean that the Sieve protocol (ManageSieve) is not workin

[Dovecot] Sieve not working

2010-11-07 Thread Christoph Pleger
Hello, I installed dovecot 2.0.6 and pigeonhole 0.2.1 on my system, but I guess that sieve is not working, because netstat does not show that anything is listening to ports 2000 and 4190. Regards Christoph # 2.0.6 (601065674f74): /etc/dovecot/dovecot.conf # OS: Linux 2.6.32-bpo.5-amd64 x86_6

Re: [Dovecot] sieve not working with Postfix and maildir

2009-08-03 Thread Timo Sirainen
On Mon, 2009-08-03 at 13:44 -0700, Florin Andrei wrote: > Postfix is able to delived new messages to the "new" subfolder of the > inbox structure. After I run Thunderbird, the new message gets moved > to "cur" and it shows up in my inbox. So far so good. > But now I'm trying to add Sieve. I turned

[Dovecot] sieve not working with Postfix and maildir

2009-08-03 Thread Florin Andrei
I am moving away from Cyrus, I'm trying to migrate to Dovecot. I am trying to get Sieve working with Dovecot and Postfix and it just won't work. Postfix is able to delived new messages to the "new" subfolder of the inbox structure. After I run Thunderbird, the new message gets moved to "cur" and i