Displaying 17 results from an estimated 17 matches for "rfc5260".
2015 Oct 28
2
sieve vacation - 2 questions
Hello,
still trying to move from procmail to sieve, but there are new problems.
Currently we use procmail for autoresponder and let user choose
timerange, in which responder should work. May be you set up today your
responder for 2 weeks in future where responder start and stop
automatically without further manuell intervention.
In procmail this is done by simple scripting and comparison of
2009 Aug 03
5
Released Sieve v0.1.10 for Dovecot v1.2.2
Hello Dovecot users,
In the last week two nasty bugs were found in the new Sieve
implementation. Primarily, the include extension did not work when a
compiled binary was loaded from disk. This is something that is still
not tested by the test suite, giving this bug the opportunity to slip
through. Also, the value matching implementation would sometimes cause a
assertion failure. Other than
2009 Aug 03
5
Released Sieve v0.1.10 for Dovecot v1.2.2
Hello Dovecot users,
In the last week two nasty bugs were found in the new Sieve
implementation. Primarily, the include extension did not work when a
compiled binary was loaded from disk. This is something that is still
not tested by the test suite, giving this bug the opportunity to slip
through. Also, the value matching implementation would sometimes cause a
assertion failure. Other than
2019 Jan 23
2
Discard mail with from date older than xxxx
I know that sieve doesn't do math. The file would be created externally.
Based on examples in section 4.4 of
https://tools.ietf.org/html/rfc5260#section-4
I figured something like this would work.
if date :value "le" :originalzone "date" "date" "2018-10-25" {
??????? fileinto "SPAM";
??????? stop;
}
However, I get the following.
spam: line 41: error: unknown tagged argument ':value...
2019 Jan 24
4
Discard mail with from date older than xxxx
On 1/24/19 12:15 AM, Per Jessen wrote:
> Trever L. Adams wrote:
>
>> I know that sieve doesn't do math. The file would be created
>> externally.
>>
>> Based on examples in section 4.4 of
>> https://tools.ietf.org/html/rfc5260#section-4
>>
>> I figured something like this would work.
>>
>> if date :value "le" :originalzone "date" "date" "2018-10-25" {
>> fileinto "SPAM";
>> stop;
>> }
>>
>> However, I get the following...
2015 Oct 28
0
sieve vacation - 2 questions
...where responder start and stop
> automatically without further manuell intervention.
> In procmail this is done by simple scripting and comparison of
> timestamps. How to do this in sieve?
You need to use the currentdate test, as provided by the date extension
(http://tools.ietf.org/html/rfc5260). A useful example is here:
http://tools.ietf.org/html/rfc5260#section-5.1
> 2nd questions concerns to used From-Address in responding mail.
> Header of a sieve-responder shows a minimal From-Address:
> From: <adress at example.com>
> But our Users want to add a custom name whic...
2017 Jun 23
1
sieve vacation message if ....
...o automate a way to have a message sent that states
> that to customers who send us emails on the weekend. Right now I have
> to do it manually. Is there another way to do it?
>
> Thanks!
>
> Look at the ?date? extension:
> https://tools.ietf.org/html/rfc5260#section-4
Specifically, use the "currentdate" test described in Section 5.
Regards,
Stephan.
2019 Jan 05
2
Sieve "OOO" configuration
I am able to get sieve issuing an "out of office"message correctly.
However, I want to configure it to send an "OOO" message only during
certain dates, say on weekends, or only between certain hours. I can do
that manually; however, was wondering if there is any automatic method
available that could handle this chore.
Thanks!
--
Jerry
2017 Jun 23
2
sieve vacation message if ....
On Fri, 23 Jun 2017 14:46:21 +0200, Stephan Bosch stated:
>Op 21-6-2017 om 19:16 schreef lejeczek:
>> hi fellas
>>
>> generic construct for(if possible): reply vacation message if
>> address is not from add1 at com1 add2 at com2
>>
>> would you share?
>
>require "vacation";
>
>if not address "from" ["add1 at com1",
2009 Aug 08
1
Released Sieve v0.1.11 and ManageSieve v0.11.8 for Dovecot v1.2.3
...proxy now also works with
TLS. Most notably, the include extension had an issue regarding the
expansion of $HOME in the personal include path.
I've built a project site at: http://pigeonhole.dovecot.org
Changelog Sieve v0.1.11:
+ Built skeleton implementation for the date extension (RFC5260).
It compiles, but it does not do anything useful yet. Therefore, it
is not part of the default compilation.
- Fixed ARM portability issues caused by char type not being signed
on that platform. Reading optional operands from a binary would
fail for action side effe...
2009 Aug 08
1
Released Sieve v0.1.11 and ManageSieve v0.11.8 for Dovecot v1.2.3
...proxy now also works with
TLS. Most notably, the include extension had an issue regarding the
expansion of $HOME in the personal include path.
I've built a project site at: http://pigeonhole.dovecot.org
Changelog Sieve v0.1.11:
+ Built skeleton implementation for the date extension (RFC5260).
It compiles, but it does not do anything useful yet. Therefore, it
is not part of the default compilation.
- Fixed ARM portability issues caused by char type not being signed
on that platform. Reading optional operands from a binary would
fail for action side effe...
2017 Jun 23
0
sieve vacation message if ....
...until Monday at
9am. I would like to automate a way to have a message sent that states
that to customers who send us emails on the weekend. Right now I have
to do it manually. Is there another way to do it?
Thanks!
Look at the ?date? extension:
https://tools.ietf.org/html/rfc5260#section-4
2019 Jan 05
0
Sieve "OOO" configuration
Look at the currentdate test https://tools.ietf.org/html/rfc5260#section-5
V/r,
James Cassell
On Sat, Jan 5, 2019, at 11:26 AM, Jerry wrote:
> I am able to get sieve issuing an "out of office"message correctly.
> However, I want to configure it to send an "OOO" message only during
> certain dates, say on weekends, or only between...
2019 Jan 24
0
Discard mail with from date older than xxxx
Trever L. Adams wrote:
> I know that sieve doesn't do math. The file would be created
> externally.
>
> Based on examples in section 4.4 of
> https://tools.ietf.org/html/rfc5260#section-4
>
> I figured something like this would work.
>
> if date :value "le" :originalzone "date" "date" "2018-10-25" {
> fileinto "SPAM";
> stop;
> }
>
> However, I get the following.
>
> spam: line 41: error...
2019 Jan 24
0
Discard mail with from date older than xxxx
...s wrote:
> On 1/24/19 12:15 AM, Per Jessen wrote:
>> Trever L. Adams wrote:
>>
>>> I know that sieve doesn't do math. The file would be created
>>> externally.
>>>
>>> Based on examples in section 4.4 of
>>> https://tools.ietf.org/html/rfc5260#section-4
>>>
>>> I figured something like this would work.
>>>
>>> if date :value "le" :originalzone "date" "date" "2018-10-25" {
>>> fileinto "SPAM";
>>> stop;
>>> }
>>>
>&...
2010 Jan 19
1
Auto discard sieve vacation messages
I have deploy an environment with pigeon sieve, managesieve, dovecot,
squirrelmail and avelsieve plugin.
The vacation messages are working fine.
I am looking for a method to discard vacation messages in some date,
when the user returns.
Has somebody looked in this feature?
Thanks a lot,
--
Andr?s Fernando Yacopino
Infraestructura - Dpto Sistemas
AcaSalud
Cooperativa de Prestaciones M?dico
2014 Jul 17
3
Sieve: adding Date: header when missing
Hello,
there is a way with a sieve rule to add a Date: header when it is
missing? Adding one with the time of reception of the message or using
the date from the the first Received: header would be good options.
Unfortunately I'm receiving some useful automated messages that lack a
Date header and this screws up the sorting in my imap clients. I have a
script to fix those acting on the