Displaying 20 results from an estimated 474 matches for "auth_master_user_separator".
2015 Sep 29
0
BUG: service(auth) crash when quota-status lookup an address with local-part starting with auth_master_user_separator
...9 Sep 2015, at 11:36, Marco Giunta <giunta at sissa.it> wrote:
>
> Hi,
> I'm using dovecot 2.2.15 (configuration attached below), and I 've enabled quota-status; when I try to look up the quota status of an address with the local-part starting with the same character as 'auth_master_user_separator', dovecot/auth crash:
>
> My 'auth_master_user_separator' is '*'
>
> Sep 29 08:51:41 my_server dovecot: auth: Panic: file auth-request.c: line 1252 (auth_request_set_login_username): assertion failed: (*username != '\0')
v2.2.17 fixes this crash, but a bet...
2015 Sep 29
2
BUG: service(auth) crash when quota-status lookup an address with local-part starting with auth_master_user_separator
Hi,
I'm using dovecot 2.2.15 (configuration attached below), and I 've
enabled quota-status; when I try to look up the quota status of an
address with the local-part starting with the same character as
'auth_master_user_separator', dovecot/auth crash:
My 'auth_master_user_separator' is '*'
# telnet localhost 25001
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
request=smtpd_access_policy
sender=johndoe at example.com
recipient=*@example.com
size=10...
2015 May 29
3
Enabling Master User for migration
Hi all,
Ok, just need a quick-n-dirty way to enable a master user for a migration...
Reading the docs, I'm not sure what the bare minimum is I need to do this...
At: http://wiki2.dovecot.org/Authentication/MasterUsers
The Example config shows:
auth_master_user_separator = *
passdb {
driver = passwd-file
args = /etc/dovecot/passwd.masterusers
master = yes
pass = yes
}
passdb {
driver = shadow
}
userdb {
driver = passwd
}
But, if I'm using a non-real user (just need a master user that can log
in as all other users for the migration), do I need all t...
2015 May 29
2
Enabling Master User for migration
On 5/29/2015 9:25 AM, Dominik Breu <dominik at dominikbreu.de> wrote:
> Hello Charles,
>
> the bare minimum ist just the first passdb entry
> auth_master_user_separator = *
> passdb {
> driver = passwd-file
> args = /etc/dovecot/passwd.masterusers
> master = yes
> pass = yes
> }
>
> this will do the trick.
Ok, this isn't working, I'm getting auth failed when testing either with
telnet or doing it in Thunderbird.
I tri...
2019 Aug 14
1
ACL ignored for master users
Hi there!
I can't get ACL working for master users. Login as master user works fine though, and I am able to access any mailbox using the auth_master_user_separator "*", tested e.g. via Python's imaplib:
import imaplib
imap = imaplib.IMAP4_SSL('imap.example.com')
imap.login('foo at example.com*admin-acldemo', '**********')
('OK', [b'Logged in'])
My /etc/dovecot/dovecot-acl looks like this:
* user=admin l...
2010 Feb 24
2
problem with master db and dovecot-2.0.beta3
Hello,
i am currenty testing dovecot 2.0.beta3 and ran into a problem with the
master-db setting.
For our webmail access we are sucessfully using the following settings
with dovecot-1.2.10
auth_master_user_separator =*
auth default {
mechanisms = plain
passdb passwd-file {
args = /etc/dovecot/passwd.masterusers
master = yes
pass = yes
}
passdb ldap {
args = /etc/dovecot/dovecot-ldap.conf
}
}
when "converting" the settings to version 2.0 i tried th...
2007 Feb 05
1
master user
Greetings all...
We are thinking about using the master DB, so a few admins can
impersonate an ordinary user.
So, we want to define one master for a set of users. And this
administrator cannot be master of the other users?
Can this be done somehow?
Reading the docs, it seems that if a user is defined as master, it can
login as everyone.
Thanks for any hint.
2018 Feb 15
2
Director & Master Users
...2eYD0R
l6P+sHyHg>
- logs from backend server point of view.
imap-login: Info: Disconnected (auth failed, 1 attempts in 2 secs):
user=<masterusername>, method=PLAIN, rip=192.168.71.20, lip=192.168.71.99,
session=<O8QN8kNlloXAqEcU>
Proxy/Director Configs (hopefully this is enough)
auth_master_user_separator = *
passdb {
driver = passwd-file
args = /etc/dovecot/conf.d/master-user-password
master = yes
pass = yes
}
passdb {
driver = static
args = proxy=y nopassword=y
}
Please let me know if I can provide any further details.
Thanks in advance.
-------------- next part --------------
An HTML attachmen...
2018 Mar 07
2
Authentication Problem with dovecot-2.3.0.1
...c/dovecot/dovecot.conf | # 2.3.0.1
(ffd8a29): /opt/dovecot2.3/etc/dovecot/dovecot.conf
# OS: FreeBSD 9.3-STABLE i386 ufs # OS:
FreeBSD 9.3-STABLE i386 ufs
# Hostname: localhost <
auth_cache_size = 20 M
auth_cache_size = 20 M
auth_master_user_separator = *
auth_master_user_separator = *
auth_mechanisms = plain login digest-md5
auth_mechanisms = plain login digest-md5
auth_socket_path = /var/run/dovecot/auth-userdb
auth_socket_path = /var/run/dovecot/auth-userdb
base_dir = /var/run/dovecot/ base_dir =
/var/run/d...
2010 Aug 15
3
Master User Features I'd like to see
Here's what I'd like. Limited master users, where someone can be a
master users for some domains but not others. I think I could do what I
want with the right kinds of variable passing that doesn't yet exist.
Let me see if I can explain clearly.
From the example in the wiki:
auth_master_user_separator = *
passdb {
driver = sql
args = /etc/dovecot/dovecot-sql-master.conf.ext
master = yes
pass = yes
}
passdb {
driver = sql
args = /etc/dovecot/dovecot-sql.conf.ext
}
userdb {
driver = sql
args = /etc/dovecot/dovecot-sql.conf.ext
}
Login looks like this:
# telnet localhost 14...
2015 May 29
0
Enabling Master User for migration
Hello Charles,
the bare minimum ist just the first passdb entry
auth_master_user_separator = *
passdb {
driver = passwd-file
args = /etc/dovecot/passwd.masterusers
master = yes
pass = yes
}
this will do the trick.
greetings
dominik
Am Freitag, den 29.05.2015, 09:03 -0400 schrieb Charles Marcus:
> Hi all,
>
> Ok, just need a quick-n-dirty way to enable a master u...
2017 Jun 07
2
Master users
Hi,all
What version of dovecot supports master users?
Master users means as follows
https://wiki2.dovecot.org/Authentication/MasterUsers
--
????????????????????????????
??????????????
???
???????????????
?? ??
?106-0047 ??????????? 12 ? 3 ? ??????
TEL?03-6401-5314 (??) 03-6401-5117 (???)
URL?http://www.sios.com/
?SIOS????????????????????????????
(SIOS
2017 Jun 29
2
Re: sieve/vacation: bad parsing of 'References' header
Hi?Christian,
doveconf -n only dump dovecot version and its configuration:
# 2.2.9: /etc/dovecot/dovecot.conf
# OS: Linux 3.14.21-grsec x86_64 Ubuntu 14.04.5 LTS?
auth_cache_negative_ttl = 0
auth_master_user_separator = *
auth_mechanisms = plain apop login
managesieve_notify_capability = mailto
managesieve_sieve_capability = fileinto reject envelope encoded-character vacation subaddress comparator-i;ascii-numeric relational regex imap4flags copy include variables body enotify environment mailbox date ihave
......
2019 Aug 12
0
ACL ignored for master users
Hi there!
I can't get ACL working for master users. Login as master user works fine though, and I am able to access any mailbox using the auth_master_user_separator "*", tested e.g. via Python's imaplib:
>>> import imaplib
>>> imap = imaplib.IMAP4_SSL('imap.example.com')
>>> imap.login('foo at example.com*admin-acldemo', '**********')
('OK', [b'Logged in'])
My /etc/dovecot/dovec...
2006 Apr 14
2
Master Password not working
Trying to get the master password to work. What am I doing wrong? Trying
this test:
/etc/dovecot.masterusers
master:{plain}test
auth_master_user_separator=*
auth default_with_listener {
mechanisms = plain
passdb passwd-file {
# Master users that can log in as anyone
args = /etc/dovecot.masterusers
master = yes
#pass =yes
}
passdb passwd-file {
# Path for passwd-file
args = /etc/vmail/shadow.%d
}
userdb passwd-f...
2015 May 29
0
Enabling Master User for migration
...tried
adding the user as both the local part, and with the fqdn...
> # doveconf -n
> # 2.2.15: /etc/dovecot/dovecot.conf
> # Pigeonhole version 0.4.6 (3e924b1b6c5c+)
> # OS: Linux 3.10.41-gentoo-r1 x86_64 Gentoo Base System release 2.2
> auth_default_realm = media-brokers.com
> auth_master_user_separator = *
> auth_mechanisms = plain login
> deliver_log_format = msgid=%m: subject=%s: %$
> first_valid_uid = 200
> last_valid_uid = 200
> listen = *
> login_log_format_elements = user=<%u> method=%m %c rip=%r lport=%{lport}
> mail_attachment_dir = /var/vmail/%d/attachments
>...
2014 Sep 01
1
Master user and non-plaintext auth does not work
..., secured, session=<SpwmAPsBgwAKAAEU>
Sep 1 06:20:34 localhost dovecot: imap(u0001 at example.jp): SpwmAPsBgwAKAAEU: Connection closed in=13 out=663
I have the following configuration in my dovecot.conf:
auth_mechanisms = plain login cram-md5 digest-md5
disable_plaintext_auth = yes
auth_master_user_separator = %
passdb {
driver = passwd-file
args = /etc/dovecot/passwd.masterusers
master = yes
pass = yes
}
# don't work too
#passdb {
# driver = checkpassword
# args = /opt/osstech/etc/dovecot/checkpassword.masterusers
# master = yes
# pass = yes
#}
passdb {...
2006 Apr 03
1
How to use Master Users.
Hi.
I'm testing out the new 'master users' feature, and I'm not having any
luck getting it to work. Anyone out there using it yet?
Here's what I have so far:
dovecot.conf:
------------
auth_master_user_separator = *
auth default {
passdb passwd-file {
# Master users that can login as anyone else
args = /etc/dovecot/dovecot.masterusers
master = yes
pass = yes
}
# LDAP database
passdb ldap {
args = /etc/dovecot/dovecot-ldap.conf
}
...
...
}
dovecot.masterusers:
-----------...
2015 May 29
1
Enabling Master User for migration
...local part, and with the fqdn...
>
> > # doveconf -n
> > # 2.2.15: /etc/dovecot/dovecot.conf
> > # Pigeonhole version 0.4.6 (3e924b1b6c5c+)
> > # OS: Linux 3.10.41-gentoo-r1 x86_64 Gentoo Base System release 2.2
> > auth_default_realm = media-brokers.com
> > auth_master_user_separator = *
> > auth_mechanisms = plain login
> > deliver_log_format = msgid=%m: subject=%s: %$
> > first_valid_uid = 200
> > last_valid_uid = 200
> > listen = *
> > login_log_format_elements = user=<%u> method=%m %c rip=%r lport=%{lport}
> > mail_attachment_...
2022 Dec 22
2
Dovecot v2.3.20 released
...; command now outputs when the
next sync is expected for the user.
- LAYOUT=index: duplicate GUIDs were not cleaned out. Also the list
recovery was not optimal.
- auth: Assert crash would occur when iterating multiple userdb
backends.
- director: Logging into director using master user with
auth_master_user_separator character redirected user to a wrong
backend, unless master_user_separator setting was also set to the same
value. Merged these into auth_master_user_separator.
- dsync: Couldn't always fix folder GUID conflicts automatically with
Maildir format. This resulted in replication repeatedly fa...