Displaying 20 results from an estimated 8000 matches similar to: "Sieve and handling multiple addresses"
2020 Jul 12
2
Sieve and handling multiple addresses
On 12 Jul 2020, at 10:17, Benny Pedersen <me at junc.eu> wrote:
> @lbutlr skrev den 2020-07-12 16:43:
>> I an trying to write a sieve action that will take mail that is
>> addressed to a user only it is filed in a mailbox (e.g. "Direct") if
>> it is to the email AND to any other email address, then file it in a
>> mailbox named, e.g. "Cc". And
2020 Jul 19
3
Sieve and handling multiple addresses
On 18 Jul 2020, at 11:23, Stephan Bosch <stephan at rename-it.nl> wrote:
> On 12/07/2020 22:47, @lbutlr wrote:
>> On 12 Jul 2020, at 10:17, Benny Pedersen <me at junc.eu> wrote:
>>> @lbutlr skrev den 2020-07-12 16:43:
>>>> I an trying to write a sieve action that will take mail that is
>>>> addressed to a user only it is filed in a mailbox
2020 Jul 18
0
Sieve and handling multiple addresses
On 12/07/2020 22:47, @lbutlr wrote:
> On 12 Jul 2020, at 10:17, Benny Pedersen <me at junc.eu> wrote:
>> @lbutlr skrev den 2020-07-12 16:43:
>>> I an trying to write a sieve action that will take mail that is
>>> addressed to a user only it is filed in a mailbox (e.g. "Direct") if
>>> it is to the email AND to any other email address, then file
2020 Jul 12
0
Sieve and handling multiple addresses
@lbutlr skrev den 2020-07-12 16:43:
> I an trying to write a sieve action that will take mail that is
> addressed to a user only it is filed in a mailbox (e.g. "Direct") if
> it is to the email AND to any other email address, then file it in a
> mailbox named, e.g. "Cc". And if the mail is not addressed to the user
> at all, sieve does nothing with it.
>
>
2012 May 22
1
sieve
Hi,
I'd like to keep all emails coming from alom-alert at anydomain and not
forward those but rest of the emails will be kept and forwarded as
well.
I put following in the .dovecot.sieve
if header :contains "Sender" "alom-alert@" {
keep;
if not header :contains "Sender" "alom-alert@" {
redirect "my at emailid on server";
redirect "xyz
2020 Oct 27
2
Sieve body test
On 23/10/2020 13:22, @lbutlr wrote:
> On 22 Oct 2020, at 19:09, Stephan Bosch <stephan at rename-it.nl> wrote:
>> You need to include the extprograms plugin:
> I have, and vnf.dovecot.pipe doesn't give the error.
>
> sieve_plugins = sieve_imapsieve sieve_extprograms
>
> ?\_(?)_/?
>
> I am not using filter now though, so I haven't try to track down
2020 Nov 09
1
Sieve body test
On 27/10/2020 15:30, @lbutlr wrote:
> On 26 Oct 2020, at 21:04, Stephan Bosch <stephan at rename-it.nl> wrote:
>> On 23/10/2020 13:22, @lbutlr wrote:
>>> On 22 Oct 2020, at 19:09, Stephan Bosch <stephan at rename-it.nl> wrote:
>>>> You need to include the extprograms plugin:
>>> I have, and vnf.dovecot.pipe doesn't give the error.
>>>
2023 Mar 11
1
set imap flags in user sieve scripts
spi skrev den 2023-03-11 13:34:
> if address :domain "From" "whatever.com"{
> fileinto :flags ["\\todo"] "working/whatever";
> }
require ["fileinto","imap4flags"];
# rule:[set todo]
if allof (header :contains "subject" "set imap flags in user sieve
scripts", header :contains "from" "user at
2019 Feb 20
5
sieve filter not working
I've Dovecot and dovecot-sieve v 2.2.27 installed on a Debian 9.6. I'm
trying to set a Sieve filter which will redirect all emails from `info`
(i.e. .info) TLD to another email. This is the filter:
require ["regex"];
# rule:[test]
if header :regex "from" "info$"
{
redirect "subbs at domain.com";
}
It's not being honored; all emails from .info
2020 Mar 15
2
Catchall with UserDB?
Hi!
I've set up Postfix with virtual users. I wanted to get Dovecot and LMTP up and running with
Passwd-file UserDB, which they do, but I can't figure out how to make use of a catch-all.
Currently, mail to joe at example.com needs Joe to be in the Passwd-file. I would like
anyone at example.com to go to Joe's mailbox, or actually mail to @example.com should go to Joe. But
what do I
2020 Oct 01
1
Sieve not exists
I thought this was working as intended, but I have recently been getting some random messages put into this mailbox that definitely have list-ip headers (including some messages from this list) and that do not have multiple addresses. I believe this started happening on 20200922, which would hav been when I applied the most recent update to dovecot, as that is when the listCC box seemed to
2019 May 29
1
Changes in sieve Dovecot 2.2
Hi People,
I'm use dovecot in my mailbox system, until last month i used the dovecot
version 2.0 and now i use version 2.2, version 2.2 works well for me, but i
have one small problem, in sieve.
In version 2.0 i had rules in sieve similiar to rule bellow:
if allof (true){
keep;
fileinto "INBOX";
redirect "xxxxxx"xxxxxx.com.br";
stop;
}
In the new version
2010 Aug 20
2
pigeonhole sieve imapflags bug
Hi all,
ok, I just instealled the dovecot 2.0.0 release, and the latest
mercurial pigeonhole source.
All is well, except for a particular sieve rule that may not be working
right.
It is a simple rule that looks like this :
require ["fileinto","imap4flags"];
# rule:[Past Due Notices]
if allof (header :contains "Subject" "Account Past Due Notice")
{
2015 Apr 30
2
Sieve Rule: What am I missing here?
I have a rule that sends all mail from root to a mailbox, but I want it to
NOT send mail from mailing-lists there.
if allof (address :contains :localpart "From" "root",
not anyof(exists ["List-Id","List-ID","Mailing-List",
"X-List-Name","List-Post"]))
{
fileinto "root-mail";
stop;
}
2015 Apr 07
2
Sieve, multiple addresses, and variables
Hi,
I have another sieve question, this time about setting variables.
I join a lot of mailing lists at ietf.org. I thought it'd be handy to
filter these all into a common folder and then into individual
folders, without having to configure each mailing list independently.
So wrote this (this is just a part, obviously):
require ["envelope", "variables",
2007 Aug 11
8
Sieve Vacation cause deliver to die
When a user enable vacation in sieve deliver die and the mail lost. I am
using 1.0.3
Thanks
-------------------------------------------------------------------------------------------------------------------------------------------
in syslog
postfix/pipe[16060]: 8E33017D4: to=<vivi at abc.com.hk>, relay=dovecot,
delay=0.17, delays=0.13/0.01/0/0.03, dsn=5.3.0, status=bounced (Command
2019 Jan 14
2
Sieve: reject certain mime-types and notify recipient
I have to reject office files for a certain domain plus notifying the
original recipient about the rejection too.
require ["fileinto","reject","body","enotify","variables"];
if allof (address :contains ["To","TO","Cc","CC"] "@example.org", body
:content? "application/msword" :contains
2020 Jul 19
1
Sieve and handling multiple addresses
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div>
<br>
</div>
<blockquote type="cite">
<div>
On 19/07/2020 15:49 @lbutlr <<a href="mailto:kremels@kreme.com">kremels@kreme.com</a>> wrote:
</div>
<div>
<br>
2010 Apr 01
2
Sieve scripts
Hi
I have a simple sieve script to discard email with a certain string in
the subject.
I now need to beef this up a bit with the following:
if header :contains "subject" "A" and "B" and not "C"
discard
if header :contains "subject" "A" and "D" and not "C"
discard
else
pass
Maybe my google skills are failing but
2015 Sep 02
3
sieve filtering utf 8 strings
Guys,
I'm completely stuck, so asking for advice.
My user has a sieve script which checks message header if it contains
words in russian like '???? ???????????? ?????????'.
Pritty simple script
# rule:[??????????]
if allof (header :contains "subject" "LDS (robot): ???? ????????????
?????????", header :contains "from" "noreply at