Displaying 20 results from an estimated 200000 matches similar to: "Master Password"
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
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 {
2007 Feb 17
1
master password 'username contains disallowed character: 0x2a'
v1.0.rc22 FC6 x86_64
So, here is my config:
protocol imap {
}
protocol pop3 {
}
protocol lda {
postmaster_address = postmaster at example.com
}
auth_master_user_separator = *
auth_verbose = yes
auth_debug = yes
auth_debug_passwords = yes
auth default {
mechanisms = plain
passdb passwd-file {
args = /etc/dovecot.masterusers
master = yes
}
passdb pam {
}
userdb passwd {
}
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 user for a
2014 Sep 01
1
Master user and non-plaintext auth does not work
Hi,
I want to use CRAM-MD5 or DIGEST-MD5 (non-plaintext) authentication
for master users, but Dovecot 2.2.13 rejects it with the following log:
Sep 1 06:18:08 localhost dovecot: auth: passwd-file(masteruser,10.0.1.20,master,<ZA1s9/oBgAAKAAEU>): Master user logging in as u0001
Sep 1 06:18:08 localhost dovecot: auth: cram-md5(u0001 at example.jp,10.0.1.20,<ZA1s9/oBgAAKAAEU>):
2015 May 29
1
Enabling Master User for migration
hello,
in which way do you login ?
loginuser*masteruser or just masteruser?
You have to do the login with loginuser*masteruser masterpass
greetings
dominik
Am Freitag, den 29.05.2015, 10:14 -0400 schrieb Charles Marcus:
> Apologies - maybe doveconf -n shows a hint at the problem?
>
> Maybe it has to do with I'm using the default_realm? But I've tried
> adding the user as
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 {
2015 May 29
0
Enabling Master User for migration
Apologies - maybe doveconf -n shows a hint at the problem?
Maybe it has to do with I'm using the default_realm? But I've 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
>
2008 Feb 25
1
Master user doesn't work with 'pass=yes'
Hi,
It seems that master user login does not work with the 'pass=yes' option
as recommended and documented.
I defined a master user passdb as documented. In addition, I have a passdb sql.
If 'pass=yes' is defined then it seems that dovecot recognizes the master login,
verifies the master password but then attempts to verify the ***master***
password again with the ***user***
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
2012 Aug 13
0
master user auth problem
Hi,
I tried to setup a master auth authentication. I also use
auth_pop3wrapper to authenticate from qmail-ldap. But I could not
login with master user.
Here is the config.
auth_master_user_separator = *
passdb {
driver = passwd-file
args = /usr/local/etc/dovecot/passwd.masterusers
master = yes
pass = yes
}
passdb {
# Path for checkpassword binary
driver = checkpassword
2012 Dec 20
1
Director and forwarding LDAP user as Master user
Hello guys,
Would you be able to help me with this little issue. I bet someone has the same config so if you can copy-paste it I will very appreciate it.
So main idea is to enable Dovecot director to authenticate a LDAP user with plain or encrypted password and send the user to back-end Dovecot server after the authentication.
According to Wiki it is only possible if we use the master user to
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
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',
2014 Jun 30
1
i need a little advice with dovecot master user
Hello,
As a step to migrate to a newer version of dovecot, i've been asked to
configure a master user for logging in into mailboxes of a dovecot 1.2.
I've followed the instructions from this page:
http://wiki1.dovecot.org/Authentication/MasterUsers
but appearently something is going wrong.
I've turned on the auth verbose and what i get in the log is:
2014-06-30 15:25:03
2006 Jun 28
2
RC1 broken - Authentication Failed
Works great with all the beta versions. I installed RC1 and get massive authentication failures.
auth_debug_passwords = yes
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
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
2008 Jan 20
3
Exim Dovecot Authentication Problem
Having a hard time figuring out something that is supposed to be easy.
Tryiong to configure Dovecot so that it provides authentication to Exim
for outgoing smtp. Tried different things and getting
authentication socket protocol error
dovecot_plain:
driver = dovecot
public_name = PLAIN
server_socket = /var/run/dovecot/auth-client
server_set_id = $auth1
auth default {
# Space
2012 Jul 29
1
Enable ACL for master user
Hi Team,
I have dovecot setup and I have enabled master User login in dovecot.conf file as below :-
auth_master_user_separator = *
passdb {
driver = passwd-file
args = /etc/dovecot/passwd.masterusers
master = yes
pass = yes
}
passdb {
driver = shadow
}
userdb {
driver = passwd
}
and craeted file. I can login to the user but what I see after login is : -
Trying 0.0.0.0...
Connected
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