similar to: How does one mark all messages as read (imap4flag "seen") with sieve?

Displaying 20 results from an estimated 10000 matches similar to: "How does one mark all messages as read (imap4flag "seen") with sieve?"

2016 Nov 05
2
How does one mark all messages as read (imap4flag "seen") with sieve?
could your script be modified to use LMTP? On Sat, Nov 5, 2016 at 12:01 PM, Ben Johnson <ben at indietorrent.org> wrote: > On 11/3/2016 10:07 PM, Ben Johnson wrote: > > Hello! > > > > I had hoped that marking all messages that arrive to a specific mailbox > > as read/seen would be as simple as applying the following sieve script > > to all incoming mail for
2016 Nov 05
0
How does one mark all messages as read (imap4flag "seen") with sieve?
On 11/3/2016 10:07 PM, Ben Johnson wrote: > Hello! > > I had hoped that marking all messages that arrive to a specific mailbox > as read/seen would be as simple as applying the following sieve script > to all incoming mail for that mailbox user: > > ######################## > require ["imap4flags"]; > addflag "\\Seen"; > ########################
2016 Nov 10
3
How does one mark all messages as read (imap4flag "seen") with sieve?
so to summarize: postfix (what version?) dovecot-antispam plugin (version? Installed from where?) and when your script invokes deliver you get a core dump. Have you a stack-trace from that coredump? On Wed, Nov 9, 2016 at 5:49 PM, Ben Johnson <ben at indietorrent.org> wrote: > On 11/5/2016 1:22 PM, Larry Rosenman wrote: > > What OS/MTA are you using? Can you give me
2016 Nov 05
3
How does one mark all messages as read (imap4flag "seen") with sieve?
What OS/MTA are you using? Can you give me (privately if you want) a re-hash of the LDA issues? I'm using FreeBSD 10.3 / Exim for my set up and LMTP for ALL deliveries, and it works great. On Sat, Nov 5, 2016 at 12:06 PM, Ben Johnson <ben at indietorrent.org> wrote: > On 11/5/2016 1:03 PM, Larry Rosenman wrote: > > could your script be modified to use LMTP? > >
2018 Dec 04
2
BUG: sieve does not set seen-Flag
Now i tried an additional rule in my "normal" working sieve-filter: if address :domain :matches "from" "company.example" ? { setflag "\\seen"; fileinto :create "INBOX/foo/test"; stop; } and sent an email from my company-account. The folder INBOX/foo/test gets created, but the message inside is not marked as seen. So i think, this is a bug in
2018 Dec 04
2
BUG: sieve does not set seen-Flag
Which version of dovecot are you using? jakob Am 04.12.18 um 15:44 schrieb Larry Rosenman: > I have the following, and it works: > require ["include","fileinto","imap4flags","variables"]; > global "MyFlags"; > if header :contains ["X-LERCTR-Spam-Flag","X-TNTSCAN-Spam-Flag"] "YES" > { > redirect
2018 Dec 04
2
BUG: sieve does not set seen-Flag
I tried it like you... doesn't work. The message gets all the other flags, but not the \Seen-Flag. My repo is https://repo.dovecot.org/ce-2.3-latest/debian/stretch stretch dpkg -l|grep dove ii? dovecot-core????????????????????? 2:2.3.4-2~stretch????????????? amd64??????? secure POP3/IMAP server - core files ii? dovecot-imapd???????????????????? 2:2.3.4-2~stretch????????????? amd64???????
2016 Nov 05
0
How does one mark all messages as read (imap4flag "seen") with sieve?
On 11/5/2016 1:03 PM, Larry Rosenman wrote: > could your script be modified to use LMTP? That's a very interesting suggestion. Thanks, Larry! My gut feeling is that it will crash (segfault and core-dump) in the same way that dovecot-lda does, but it's worth a shot! (I've posted about my woes with the dovecot-lda crashing issue many times here... nobody seems to have any other
2016 Nov 10
0
How does one mark all messages as read (imap4flag "seen") with sieve?
On 11/9/2016 7:04 PM, Larry Rosenman wrote: > so to summarize: > postfix (what version?) > dovecot-antispam plugin (version? Installed from where?) > > and when your script invokes deliver you get a core dump. > Have you a stack-trace from that coredump? Yes, that summarizes it! Postfix version 3.1.0 (installed from Ubuntu 16.04 repos. Antispam plugin version
2016 Nov 11
0
How does one mark all messages as read (imap4flag "seen") with sieve?
On 11/10/2016 3:46 AM, Bill Shirley wrote: > I don't use the Anti-Spam plugin; I just fire off a BASH script every > four hours with > crontab which iterates thru the vmail email accounts and trains > Spamassassin 'per-user' > accounts. If the script sounds interesting I can post it here. It > probably could use a little polish > though. > > Bill Thanks,
2016 Nov 11
0
How does one mark all messages as read (imap4flag "seen") with sieve?
On 11/10/2016 2:02 AM, Aki Tuomi wrote: > Hi! > > Can you provide bt full from gbd? > > Install debug symbols and acquire core file > > Run gdb /path/to/bin /path/to/core > > Issue bt ful > > Send it to list. > > > Aki Tuomi > > Dovecot oy > > > > On November 10, 2016 at 2:42 AM Larry Rosenman <larryrtx at gmail.com>
2016 Nov 09
0
How does one mark all messages as read (imap4flag "seen") with sieve?
On 11/5/2016 1:22 PM, Larry Rosenman wrote: > What OS/MTA are you using? Can you give me (privately if you want) a > re-hash of the LDA issues? > > I'm using FreeBSD 10.3 / Exim for my set up and LMTP for ALL deliveries, > and it works great. Thanks again for your willingness to help with this, Larry. I'm using Postfix. Regarding the OS, I'm using Ubuntu 16.04 here,
2016 Nov 11
1
How does one mark all messages as read (imap4flag "seen") with sieve?
This one is for vmail which is attached. Bill On 11/10/2016 8:29 PM, Ben Johnson wrote: > On 11/10/2016 3:46 AM, Bill Shirley wrote: >> I don't use the Anti-Spam plugin; I just fire off a BASH script every >> four hours with >> crontab which iterates thru the vmail email accounts and trains >> Spamassassin 'per-user' >> accounts. If the script
2018 Dec 04
3
BUG: sieve does not set seen-Flag
Did you notice the fileinto :flags usage? It comes from imap4sieve extension. https://tools.ietf.org/html/rfc5232#page-7 Aki > On 04 December 2018 at 17:13 Larry Rosenman <larryrtx at gmail.com> wrote: > > > I've been using that recipe for YEARS, and it DOES work for me on FreeBSD > (I'm also the port maintainer for dovecot and pigeonhole). > > Not sure
2016 Nov 10
2
How does one mark all messages as read (imap4flag "seen") with sieve?
I don't use the Anti-Spam plugin; I just fire off a BASH script every four hours with crontab which iterates thru the vmail email accounts and trains Spamassassin 'per-user' accounts. If the script sounds interesting I can post it here. It probably could use a little polish though. Bill On 11/9/2016 6:49 PM, Ben Johnson wrote: > On 11/5/2016 1:22 PM, Larry Rosenman wrote:
2018 Dec 04
2
set seen flag and junk moving a mail manually to JUNK
Hi Ralph! This is, what calls the correct sive-filter rules. I have that already in use. But the file file:/etc/dovecot/sievepipe/report-spam contains my sieve-script from my first posting. So, the difference from setflag to addflag is, setflag sets the flags, and only the given flags (removing all other flags), and addflag adds a flag to the existing flags... I fiddled around a little... The
2018 Dec 04
2
set seen flag and junk moving a mail manually to JUNK
Hi there! I want to set the \seen and the Junk Flag to an email, which i move manually to my Junk-Folder. I tried a lot... but nothing worked like expected. I have a sieve-filter, which takes an email and copy it to a pipe to rspamc. This filter is working correctly, i get a debug-message from the script, which is called through the sieve-filter. But adding another rule (addflag
2018 Dec 04
0
BUG: sieve does not set seen-Flag
I have the following, and it works: require ["include","fileinto","imap4flags","variables"]; global "MyFlags"; if header :contains ["X-LERCTR-Spam-Flag","X-TNTSCAN-Spam-Flag"] "YES" { redirect "spamtrap at spambouncer.org"; addflag "MyFlags" "\\Seen Junk"; fileinto :flags
2018 Dec 04
0
BUG: sieve does not set seen-Flag
2.3.4/0.5.4 (dovecot/pigeonhole) Note the casing on the \\Seen flag. On Tue, Dec 4, 2018 at 9:02 AM Jakobus Sch?rz <wertstoffe at nurfuerspam.de> wrote: > Which version of dovecot are you using? > > > jakob > > Am 04.12.18 um 15:44 schrieb Larry Rosenman: > > I have the following, and it works: > > require
2018 Dec 04
0
BUG: sieve does not set seen-Flag
I've been using that recipe for YEARS, and it DOES work for me on FreeBSD (I'm also the port maintainer for dovecot and pigeonhole). Not sure exactly what you are doing wrong, but I use lmtp to deliver the mail to mbox formatted mailboxes. On Tue, Dec 4, 2018 at 9:11 AM Jakobus Sch?rz <wertstoffe at nurfuerspam.de> wrote: > I tried it like you... doesn't work. The message