search for: fileinto

Displaying 20 results from an estimated 2218 matches for "fileinto".

2009 May 06
4
Problem in deliver (Panic: file index-mail-headers.c ...)
Hi All, I'm experiencing a problem with some mails in deliver. Here the logged error message: deliver(stefan at roese.nl): 2009-05-06 11:57:36 Panic: file index-mail-headers.c: line 141 (index_mail_parse_header_finish): assertion failed: ((match[match_idx] & HEADER_MATCH_FLAG_FOUND) == 0) deliver(stefan at roese.nl): 2009-05-06 11:57:36 Error: Raw backtrace: /usr/lib/dovecot/deliver
2018 May 30
2
Struggling with sieve, fileinto and variables.
Hi, Im on Manjaro linux fully up to date running dovecot 2.3.1-2 pigeonhole 0.5.1-2 All is running well except I am having problems with fileinto - it refuses to use variables, and mailboxexists is also failing for me. Im just dealing with plus addressing - should be simple but the behaviour Im experiencing isnt right. require ["variables", "envelope", "fileinto", "subaddress", "mailbox"];...
2019 Mar 07
2
Sieve fileinto copies messages instead of moving them
Hi, we're running Doveocot 2.3.4.1 with Pigeonhole, from repo.webflow.org. As far as I understand the RFC for 'fileinto', the following Sieve script should move a message either into the folder "SPAM" or "MaybeSPAM": require ["fileinto"]; # rule:[SPAM] if header :contains "subject" "SPAMSPAM" { fileinto "SPAM"; } # rule:[SPAMSPAM] if header :contain...
2018 May 30
1
Struggling with sieve, fileinto and variables.
...rg/bugreport.html#coredumps - set /proc/sys/fs/suid_dumpable to 2) At least my problem is fixed - so thank you! ________________________________ From: Stephan Bosch <stephan at rename-it.nl> Sent: 30 May 2018 13:41 To: Barry Pearce; dovecot at dovecot.org Subject: Re: Struggling with sieve, fileinto and variables. Op 30-5-2018 om 14:01 schreef Barry Pearce: > Hi, > > Im on Manjaro linux fully up to date running > > dovecot 2.3.1-2 > pigeonhole 0.5.1-2 > > > All is running well except I am having problems with fileinto - it > refuses to use variables, an...
2010 Oct 13
5
managesieve fileinto folder with international characters
I have a folder created in dovecot entered by the user as "??o??" On the file system it appears as "&APEA8Q-o&AOkA6Q-" (mUTF7) When creating a sieve rule, to file into the folder ??o??, I am converting the name from UTF8 into UTF7, the rule becomes require ["fileinto"]; if header :contains ["From"] "user at domain.com" { fileinto "&APEA8Q-o&AOkA6Q-"; } however when executed, a sieve log is generated saying: failed to store into mailbox '&APEA8Q-o&AOkA6Q-' (&-APEA8Q-o&-AOkA6Q-): Mailbox do...
2010 Sep 04
6
Problems with dovecot 2.0, sieve and mdbox
...up failed from /var/mail/steulerfliesen.de/mail/mdbox/mailboxes/INBOX.Spamverdacht Sep 4 15:22:37 mercury dovecot: lmtp(6261, mail at steulerfliesen.de): Debug: Namespace : Using permissions from /var/mail/steulerfliesen.de/mail/mdbox: mode=0700 gid=-1 My skript looks like this: require "fileinto"; if header :contains "X-Spam-Flag" "YES" { fileinto "Spamverdacht"; } I also tried: require "fileinto"; if header :contains "X-Spam-Flag" "YES" { fileinto "INBOX.Spamverdacht"; } How can I fix this? Regards Patric...
2018 May 30
0
Struggling with sieve, fileinto and variables.
Op 30-5-2018 om 14:01 schreef Barry Pearce: > Hi, > > Im on Manjaro linux fully up to date running > > dovecot 2.3.1-2 > pigeonhole 0.5.1-2 > > > All is running well except I am having problems with fileinto - it > refuses to use variables, and mailboxexists is also failing for me. > > Im just dealing with plus addressing - should be simple but the > behaviour Im experiencing isnt right. > > require ["variables", "envelope", "fileinto", "subadd...
2017 Jul 07
2
pigeonhole-0.4.14
Yes, I'am sure. I've only global as: ============== require "fileinto"; if header :contains "X-Spam-Status" "YES" { fileinto "INBOX.Junk"; } if header :contains "X-Spam-Level" "********************" { discard; stop; } and default as: ============== require "fileinto"; if header :contains &quot...
2012 Mar 28
3
Sieve fileinto and year/month folders.
Hi there, I am trying to move from lmtpd (lmtpd.sf.net) to dovecot sieve. One thing used by some of powerusers are archiving mail automatically with autocreated folders based on year + month. Is there any good way to make that with sieve... One example require "fileinto"; if address :is ["From", "To"] "dovecot at dovecot.org" { fileinto "INBOX.mls.%Y.%m.dovecot"; } This will fill any mails into INBOX.mls.2012.03.dovecot uppon receiving... I don't know if some sieve guru can tell me how to do that... ? Kind r...
2020 Feb 15
2
shared folder name or public folder with mail address
...16, Tobias Kirchhofer wrote: ... > the sieve part seems to be very tricky. > My test is now working with a public folder and I have a > "sieve_before" script in place which works for rules of the > private namespace. > > But when the rule shall "fileinto" a public folder, the mail isn't > filtered (moved) and syslog says > dovecot: lmtp(.): Error ... sieve...: Mailbox doesn't exist. > > After some tests I found out it always looks in the private (or shared) > namespace for that specfied folder. >...
2009 Jun 28
2
sievec error: "fileinto require missing"
I'm getting this error when compiling .dovecot.sieve: $ /usr/libexec/dovecot/sievec .dovecot.sieve .dovecot.sievec Info: line 3: fileinto require missing Unable to parse script: script errors: line 3: fileinto require missing .dovecot.sieve just looks like this: $ cat .dovecot.sieve if header :contains ["List-Id"] ["dovecot.dovecot.org"] { fileinto &qu...
2019 Jul 15
1
Sieve problem with duplicate and fileinto in the same set of rules
...smtp from the same server, that are then put in the Sent folder with a sieve rule. In this way, however, when a user sends an e-mail to himself, both copies end up in the Sent folder and it's not good. To resolve, I tried using the Sieve "duplicate" extension along with "fileinto" but I can't get it to work. I then activated also the "editheader" extension to better understand what the problem was and I get these results. Sieve rules without using "fileinto:" require ["duplicate", "editheader"]; if duplicate {...
2010 May 21
1
question about scripts sieves
hello list hello dovecot network hello all the reader here is a sieve script this ######################################## require ["fileinto","regex","comparator-i;ascii-numeric","reject","relational"]; # rule:[spammanage] if header :value "ge" :comparator "i;ascii-numeric" ["X-Spam-score"] ["500"] { reject "NO SPAM"; stop; } if header :v...
2008 Mar 12
1
Fileinto to a maildir with sieve
Hello, Is it possible to specify a maildir to a fileinto rule in a sieve file? A simple: require "fileinto"; if header :contains "X-Spam-Flag" "YES" { fileinto ".Junk"; } does'nt work becaise .Junk is a directoty, not a mailbox... See my dovecot-deliver log: Couldn't open mailbox .Junk: Inval...
2011 Apr 01
2
Sieve: unknown tagged argument ':create' for the fileinto command
Hello, I've upgraded from dovecot 1.2.x with sieve to dovecot 2.0.11 with sieve. I've noticed that folders are no more created at delivery time now. I've read that I have to do two things: lda_mailbox_autocreate = yes in dovecot.conf and fileinto :create in the sieve script. Now the error message I receive is: error: unknown tagged argument ':create' for the fileinto command (reported only once at first occurence). My sieve script: require ["date", "variables", "fileinto"]; if header :contains &qu...
2015 Aug 07
2
pigeonhole/lda accessing -m folder
hi jost thx for the reply, by access I mean to read the variable require ["fileinto", "variables", "?destfolder?" ]; if anyof ( destfolder :matches "*") { fileinto "${1}/subfolder"; }else{ fileinto "INBOX/subfolder"; } On 08/07/2015 12:26 PM, Jost Krieger wrote: > On Fri Aug 7 12:19:22 2015, matthias lay...
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 "Junk"; > ????????? stop; > ????????? } else { > ????? } > ? } > ? if header :contains "subject" [&qu...
2012 Apr 05
3
Problem with polish characters and sieve fileinto
Hi, I have problems with sieve fileinto and polish characters in folder names: # rule:[??????????????????] elsif anyof (header :contains "Subject" "??????????????????") { fileinto "INBOX/&AQUBBwEZAUIBRADzAVsBegF8AQQBBgEYAUEBQwDTAVoBeQF7-"; } dovecot log: Apr 5 15:17:42 mailer dovecot: lmtp(54203,...
2015 Jul 17
2
[Sieve] Unable to fileinto subfolders
Hello again list! I am configuring a server running Dovecot 2.2.15 (Pigeonhole 0.4.6), and I am having an issue with Sieve scripts where I cannot sort messages into a subfolder of a mailbox. An email which is matched by the following script: require "fileinto"; if header :contains "Subject" "[SORT ME]" { fileinto "INBOX.Sorted"; } Yields the following error: Jul 16 18:54:46 smtp dovecot: lmtp(james at lottspot.vpn): Error: DiJmNGZgqFWLFAEANWXNPw: sieve: msgid=<4973528.yvy4Yu8Tt4 at arch_project>: failed to st...
2019 Mar 07
0
Sieve fileinto copies messages instead of moving them
On 2019-03-07 02:52, Michael Goth via dovecot wrote: > require ["fileinto"]; > # rule:[SPAM] > if header :contains "subject" "SPAMSPAM" > { > ????fileinto "SPAM"; > } > # rule:[SPAMSPAM] > if header :contains "subject" "SPAM" > { > ????fileinto "MaybeSPAM"; > } > > >...