Displaying 7 results from an estimated 7 matches for "rfc5233".
Did you mean:
rfc5230
2019 May 13
2
LMTP and Sieve with <prefix><recipient_delimiter><user>
Hi there,
Dovecot's LMTP implementation and Pigeonhole Sieve already do support
the <user><delimiter><suffix> format. RfC 5233, the Sieve subaddress
extension, also offers <prefix><delimiter><user>.
Could Docecot's LMTP and Pigeonhole be extended to that effect?
Thanks & greetings,
Paul
2019 Nov 16
2
Sieve and recipient_delimiter
I use recipient_delimiter addresseses quiet a bit, and I want to put several of them into a mailbox
if anyof (header :contains ["to"] [ ?FOO", ?foo", ?bar", ?florin"]) {
fileinto :create ?later";
stop;
}
When I get an email addressed to me+FOO at example.com or me_florin at example.com, the messages end up in my inbox (Yes, I have both + and _
2019 May 15
0
LMTP and Sieve with <prefix><recipient_delimiter><user>
...we _fully_ support IETF RfC 5233? (Sieve Subaddress Extension),
see new config parameter 'detail_affix'.
What do you think?
Thanks & greetings,
Paul
? On my Debian this is
/etc/dovecot/conf.d/20-lmtp.conf
and
/etc/dovecot/conf.d/90-sieve.conf
? https://tools.ietf.org/html/rfc5233
Am 13.05.2019 um 21:48 schrieb Paul Muster via dovecot:
> Hi there,
>
> Dovecot's LMTP implementation and Pigeonhole Sieve already do support
> the <user><delimiter><suffix> format. RfC 5233, the Sieve subaddress
> extension, also offers <prefix><del...
2019 Nov 17
0
Sieve and recipient_delimiter
...sieve file, because I always forget this
# MORE NOTES:
# Using :localpart takes just the local part of an address
# header selects a header, address selects an address
# Looks like this is the spec:
# :localpart = :user+:detail
# address are :localpart @ :domain, or :user + :detail @ :domain
# See RFC5233
I use this bit for figuring out what :detail something (might) be going to:
# Check to see if we have detail. . .
if address :matches :detail "To" "*" {
# Save name in ${detail} in all lowercase
# Joe, joe, jOe thus all become 'joe'....
2020 Oct 22
0
Sieve_before
...is).
If it were ?kremels+thing at kreme.com <mailto:kremels+thing at kreme.com>? then the net line out to say ?finished match with result: ?thing?? or some such.
My notes from my sieve file:
# :localpart = :user+:detail
# address are :localpart @ :domain, or :user + :detail @ :domain
# See RFC5233
Sean
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/pipermail/dovecot/attachments/20201022/5c83f65b/attachment.html>
2014 Mar 06
1
no sieve with lmtp_save_to_detail_mailbox=yes
i have a problem with sieve and lmtp_save_to_detail_mailbox = yes. If
the mailbox "detail" exists everything works fine, but if the mailbox
detail does not exist then sieve does not work. The .dovecot.sieve.log
file says
sieve: info: started log at Mar 06 14:28:47.
error: msgid=<531877EE.7070806 at heinlein-support.de>: failed to store
into mailbox 'test2': Mailbox
2020 Oct 22
2
Sieve_before
On 22 Oct 2020, at 10:05, @lbutlr <kremels at kreme.com> wrote:
> require ["variables", "copy"];
>
> if address :matches ["To", "Cc"] ["*@*."] {
> redirect :copy "backup+295.${1}.${2}@*example.com*";
> }
I have tried this with similar results:
require ["copy", "variables",