Displaying 20 results from an estimated 1000 matches similar to: "recipient_delimiter -- feature request"
2016 Aug 23
4
Sub addressing delimiters
Hello,
There is a disconnect between the way Postfix handles
recipient_delimiter and the way Dovecot handles it. For Postfix, it is
a set of delimiters that can each individually be used to separate the
address from the . In Dovecot, having multiple characters in
recipient_delimiters simply makes it a multi-character single delimiter.
For my purposes, the Postfix method is much more
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 _
2020 Mar 15
2
lmtp and recipient_delimiter
On 15/03/2020 20:26, Peter wrote:
> Poorly documented, imo, but you want lmtp_save_to_detail_mailbox = yes:
Thanks, tried it, but no, that's not what I want and it doesn't help in my case.
To recap:
If I set recipient_delimiter to "+-" (or "-" alone), having a user named "foo-bar" won't work anymore, because Dovecot always tries to deliver to user
2013 Sep 25
2
recipient_delimiter
Can I enable $recipient_delimiter = ?+? for only the virtual sql users?
$ doveconf -n
# 2.2.5: /usr/local/etc/dovecot/dovecot.conf
# OS: FreeBSD 9.1-RELEASE i386
auth_mechanisms = PLAIN LOGIN
disable_plaintext_auth = no
first_valid_uid = 89
login_log_format_elements = user=<%u> %r %m %c
mail_location = maildir:~/Maildir
mail_max_userip_connections = 90
managesieve_notify_capability =
2020 Mar 15
2
lmtp and recipient_delimiter
On 15/03/2020 21:26, GMX Account wrote:
> have a look at this:
>
> http://www.postfix.org/postconf.5.html#recipient_delimiter
>
> [...]When the recipient_delimiter [1] set contains multiple characters
> (Postfix 2.11 and later), a user name or .forward file name is
> separated from its extension by the first character that matches the
> recipient_delimiter [1] set.[...]
2014 Jan 21
0
Failure in doveconf
I ran into a problem while configuring dovecot. Quickly reading the
paragraph below, I saw "yes" as one of the options, and put that into
the config, as below:
# In case of password mismatches, log the attempted password. Valid
values are
# no, plain and sha1. sha1 can be useful for detecting brute force password
# attempts vs. user simply trying the same password over and over
2016 Mar 31
2
multiple recipient_delimiter
Hello,
does the recipient_delimiter option accepts multiple delimiter by now?
--
Regards
J?rg Backschues
2015 Apr 14
2
Dovecot and recipient_delimiter
Hi,
we're using thunderbird as our client, it has the functionality to sort
spamassassin tagged mails in a folder called 'Junk'.
I have this folder on my dovecot server and i'd like to use the
recipient_delimiter feature to get my spam/junk mails directly to this
folder.
what i have done yet:
dovecot.conf:
plugin {
recipient_delimiter = +
}
postfix: master.cf
dovecot
2010 May 26
4
recipient_delimiter
I have recipient_delimiter = + in main.cf (Postfix). But deliveries
to dovecot/deliver are still being rejected. It appears that the full
email is still in the envelope (e.g. phil+howard at example.com which I
want to be delivered to phil at example.com). Is that how it's supposed
to work and Dovecot just doesn't support this?
2009 Feb 12
2
delivering to folder based on recipient_delimiter?
I'm currently running postfix + dovecot, with virtual users
In postfix I have set recipient_delimiter = + so that postfix accepts
mail for user at example.com, user+foo at example.com, and
user+spam at example.com all deliver to inbox.
what I would like is to have email directed to user+foo at example.com
delivered to the IMAP folder foo (and, in the context of amavisd,
have amavis
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
2013 Oct 23
1
recipient_delimiter deux
OK, I've been banging my head on why my procmail setup for virtual users is no longer working (difficult to test, since enabling it breaks live user's mail). There are only a few virtual users who have any sort of filters in place anyway (the heavy procmail users are local, not virtual), and they are fairly simple, so I think I can recreate them with sieve.
I think I have everything I
2020 Mar 11
2
lmtp and recipient_delimiter
Hi list,
I have a small problem with recipient_delimiters contained in usernames.
Recently I have extended recipient_delimiter from "+" to "+-" in both
Postfix and Dovecot (using lmtp) and now any user that have a '-' in it's
username can't receive mail anymore, because lmtp truncates the localpart
after the '-' and of course can't find the first
2013 Jan 12
1
[PATCH] LMTP: Permit user IDs containing recipient_delimiter
The Dovecot 2.1 LMTP server currently always strips the address extension
from a recipient address (if recipient_delimiter is set), meaning user IDs
cannot contain the recipient delimiter character, e.g. "user+foo" is not
supported.
This was surprising for me, as Postfix behaves differently in this regard:
It first looks up "user+foo", and only then "user".
The
2019 Nov 17
0
Sieve and recipient_delimiter
From the Notes section of my 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)
2019 Jun 19
1
recipient delimiters
On 20/06/2019 01:20, @lbutlr via dovecot wrote:
> On 18 Jun 2019, at 15:03, @lbutlr via dovecot <dovecot at dovecot.org> wrote:
>> I don?t see a way to tell dovecot what delimiters to use, and it appears it is still using a single delimiter only despite postfix having added support for more than one years ago.
> Ideas?
There is the recipient_delimiter setting. For recent
2004 Jul 31
1
Patch: fix $-terminated MCF
p/t_strdup_until wasn't returning a terminated string:
Index: src/lib/strfuncs.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib/strfuncs.c,v
retrieving revision 1.41
diff -u -p -r1.41 strfuncs.c
--- src/lib/strfuncs.c 18 Jul 2004 01:44:59 -0000 1.41
+++ src/lib/strfuncs.c 31 Jul 2004 08:43:35 -0000
@@ -154,6 +154,7 @@ char
2020 Mar 15
1
lmtp and recipient_delimiter
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<div>
<br>
</div>
<blockquote type="cite">
<div>
On 15/03/2020 21:26 Peter <
<a href="mailto:peter@pajamian.dhs.org">peter@pajamian.dhs.org</a>> wrote:
</div>
<div>
2020 Mar 15
3
lmtp and recipient_delimiter
On 12/03/2020 08:04, Jean-Daniel wrote:
>
>
>> Le 11 mars 2020 ? 19:32, Juri Haberland <juri at koschikode.com> a ?crit :
>>
>> Hi list,
>>
>> I have a small problem with recipient_delimiters contained in usernames.
>> Recently I have extended recipient_delimiter from "+" to "+-" in both
>> Postfix and Dovecot (using
2009 May 22
2
recipient delimiter and lmtp
I read in the list archives about work in progress on
an lmtp delivery agent.As a previous cyrus user
where that was the preferred delivery method
from postfix, this sounds interesting.
I was wondering whether it will handle
recipient delimiters. ie will it be able to map
user+foo at example.com to user at example.com?
I'm not interested in the delivery into folder stuff,
just the plain