Displaying 20 results from an estimated 341 matches for "doveadm_password".
2020 May 28
1
service doveadm - how to debug proxying with director
...t at test.com
>>
> doveadm user is executed locally as director has its own userdb. try doveadm mailbox list -u <uid>
>
> Sami
Thanks alot! That brought me into the right direction, with "doveadm
mailbox list -u <uid>" I got an usefull error message! somehow
doveadm_password ist not working that way:
local 0.0.0.0 {
? doveadm_password = secret
}
I had to set it without the local x.x.x.x part, now it works :)
I though will investigate this further, if this ip limitation with local
is not working I need to setup iptables to restrict the access, but I
don't really...
2012 Feb 14
1
doveadm director proxy
...adm service that will proxy trough our
directors, following the recipie at:
http://wiki2.dovecot.org/Director#Doveadm_server
So on the backends I have:
service doveadm {
inet_listener {
port = 24245
address = *
}
}
doveadm_proxy_port = 24245
local 192.168.42.0/24 {
doveadm_password = suPerSeecret
}
I assume the "local" line is supposed to point at my local network..?
On the directors I have the same, plus:
protocol doveadm {
auth_socket_path = director-userdb
}
When testing "doveadm quota" on the directors, it complained
quota plugin not being l...
2020 Nov 11
0
Support TLS for pure remote doveadm commands
...ured and port 9091 open in its firewall for
B. B just need dovecot to be installed.
- Testing without TLS:
- Add the following to A's dovecot configuration (and reload it):
```
service doveadm {
inet_listener {
port = 9091
}
}
doveadm_password=VeryRandomString
```
- On B, create a file X containing (only):
```
doveadm_password=VeryRandomString
```
- On B, running `doveadm -c X mailbox list -u ${existing_user} -S
${A}:9091` should return the mailbox list
- Switching to TLS:
- Replace what was added to A...
2020 May 28
2
service doveadm - how to debug proxying with director
...37??????????? 2020-05-28 09:56:37 2020-05-28 09:56:37
This is my dovecot-director hosts configuration (doveadm related part):
service doveadm {
? inet_listener {
??? # any port you want to use for this:
??? port = 24245
? }
}
local 0.0.0.0 {
? # password to use for client authentication
? doveadm_password = secret
? # allow client to only use specified list of commands (default is all):
? #doveadm_allowed_commands =
}
# same port as doveadm's inet_listener
doveadm_port = 24245
protocol doveadm {
? # NOTE: director-userdb socket is actually used only for passdb
lookups, not userdb lookups...
2013 Apr 06
1
replicator/dsync over tcp
...nen <tss at iki.fi> wrote:
> On 24.3.2013, at 23.07, Michael Grimm <trashcan at odo.in-berlin.de> wrote:
>
>> First of all I did need to extend http://wiki2.dovecot.org/Replication to get dsync over tcp running without ssl:
> ..
>> | dovecot: doveadm(test): Error: doveadm_password not set, can't authenticate to remote server
>
> Updated http://master.wiki2.dovecot.org/Replication with it.
My point has been, that I needed to add ...
| local 1.2.3.4 {
| doveadm_password = secret
| }
... besides ...
| service doveadm {
| inet_listener {
|...
2014 Sep 19
1
doveadm with multiple instances on same machine(s)
...he whole list, but with <unknown> for each user]
The director itself doesn't have the LDAP passdb that the main dovecot
instance talks to, but I have, in the director config:
service doveadm {
inet_listener {
port = 8889
}
}
director_doveadm_port = 8889
local 192.168.x.x/24 {
doveadm_password = XXXXXX
}
doveadm_proxy_port = 8888
And in the main config:
service doveadm {
inet_listener {
port = 8888
}
}
local 192.168.x.x/24 {
doveadm_password = XXXXXXX ## same password as above
}
2017 Jan 23
2
dsync dovecot / Failed connection refused
...doveadm {
user = vmail
inet_listener {
port = 12345
}
}
# configure how many dsyncs can be run in parallel (10 by default)
replication_max_conns = 10
# tell doveadm client to use this port by default
doveadm_port = 4711
#Both the client and the server also need to have a shared secret
doveadm_password = {SHA512-CRYPT}$6$rou....................
# use tcp:hostname as the dsync target
plugin {
#mail_replica = tcp:server2.domain.ltd # use doveadm_port
mail_replica = tcp:server2.domain.ltd:12345 # use port 12345 explicitly
}
service config {
unix_listener config {
user = vmail
}
}
*****...
2017 Jan 24
3
dsync dovecot / Failed connection refused
...t;> # configure how many dsyncs can be run in parallel (10 by default)
>> replication_max_conns = 10
>>
>> # tell doveadm client to use this port by default
>> doveadm_port = 4711
>>
>> #Both the client and the server also need to have a shared secret
>> doveadm_password = {SHA512-CRYPT}$6$rou....................
>> # use tcp:hostname as the dsync target
>> plugin {
>> #mail_replica = tcp:server2.domain.ltd # use doveadm_port
>> mail_replica = tcp:server2.domain.ltd:12345 # use port 12345 explicitly
>> }
>>
>> service c...
2019 Jan 04
1
Feature request: client bind address for replication
.../src/doveadm/doveadm-settings.c 2019-01-04 14:59:11.556270077 +0100
@@ -62,6 +62,7 @@
DEF(SET_UINT, doveadm_worker_count),
DEF(SET_IN_PORT, doveadm_port),
{ SET_ALIAS, "doveadm_proxy_port", 0, NULL },
+ DEF(SET_STR, doveadm_local_ip),
DEF(SET_STR, doveadm_username),
DEF(SET_STR, doveadm_password),
DEF(SET_STR, doveadm_allowed_commands),
@@ -91,6 +92,7 @@
.doveadm_socket_path = "doveadm-server",
.doveadm_worker_count = 0,
.doveadm_port = 0,
+ .doveadm_local_ip = "",
.doveadm_username = "doveadm",
.doveadm_password = "",
.doveadm_allowed_...
2020 Aug 17
1
MDBOX DSYNC error: Broken physical size in mailbox
...max_userip_connections = 10
? managesieve_implementation_string = Dovecot Pigeonhole
? managesieve_logout_format = bytes=%i/%o
? managesieve_max_compile_errors = 5
? managesieve_max_line_length = 64 k
}
protocol submission {
? mail_plugins = " acl notify replication"
}
local ### {
? doveadm_password = # hidden, use -P to show it
}
local ### {
? doveadm_password = # hidden, use -P to show it
}
2019 Nov 18
2
Doveadm replicator ssl issues
...turn code: 0 (ok)
The configuration of the 2 servers below.
188.x.x.x
# 2.3.8 (9df20d2db): /etc/dovecot/dovecot.conf
# Pigeonhole version 0.5.8 (b7b03ba2)
# OS: Linux 2.6.32-754.6.3.el6.x86_64 x86_64 CentOS release 6.10 (Final)
# Hostname: login.domain.com
default_vsz_limit = 512 M
doveadm_password = # hidden, use -P to show it
mail_plugins = " notify replication"
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 eno...
2018 Dec 10
2
Replication fatal error
...87f896928a]
Dec 10 16:06:17 prudence dovecot: dsync-server(address at domain.fr):
Fatal: master: service(doveadm): child 22362 killed with signal 6 (core
dumped)
server 1 dovecot configuration (version 2.2.9):
default_client_limit = 2048
default_process_limit = 2048
disable_plaintext_auth = no
doveadm_password = xxxxxxxxxxx
doveadm_port = 11225
hostname = xxxxxxxxxxxx
listen = 127.0.0.1,XX.XX.XX.XX
mail_location = maildir:/srv/mail/%d/%n/Maildir
mail_plugins = " notify replication"
managesieve_notify_capability = mailto
managesieve_sieve_capability = fileinto reject envelope
encoded-character...
2017 Mar 20
0
doveadm proxy password
Hi,
I'm configuring a proxy host to connect to backend servers. As proxy is
done based on an LDAP attribute of the user, I'm not using director.
In the proxy server I have configured:
doveadm_port = 24245
doveadm_password = secret
And in the backend:
service doveadm {
inet_listener {
port = 24245
}
}
local <mynetwork> {
doveadm_password = secret
}
But when I run a doveadm command in the proxy I get:
amateo_adm at musio10:/etc/dovecot/conf.d$ sudo doveadm quota get -u
amateo at um....
2020 Mar 19
1
Quota plugin and director
...2020 09:10:06 CET, Aki Tuomi ha scritto:
> If you are using director, you can issue `doveadm quota recalc -A` on
> director, which will then direct it to correct backend.
>
> For this to work, it requires that you setup doveadm server on the backend,
> and configure doveadm_port and doveadm_password on director. It also either
> needs iteratable user database on director, or a list of users in a file,
> which you can provide with option -F.
>
> Aki
Hi Aki,
Nice to know!
The quota plugin has to be configured on the frontends? With which backend?
Right now the "quota" s...
2020 Apr 22
1
replication newbie: some beginner questions
On 2020-04-22 10:45, Aki Tuomi wrote:
> You can also try running doveadm sync by hand.
> doveadm -Dv sync -u victim tcp:otherserver:port
what doeveconf config makes that command line work ?
2023 Mar 20
0
Remote backup of IMAP user fails with dsync_remote epoll_ctl error
I?m trying backup a user?s IMAP folders from a system running dovecot 2.1.7. to a system running dovecot 2.3.19.1. After much perusing of the web and Dovecot documentation I tried this:
1) On the 2.1.7 host set up the doveadm server to listen on TCP port 2425 and defined a doveadm_password value
2) Issued the following command on the 2.13.19.1 system:
doveadm -o doveadm_password=<password> backup -R -u <username> -S <host>:2425 tcp:<host>
3) The command returned the following errors:
Error: doveadm server disconnected befor...
2014 Jul 15
0
director / main instance
...quot;? If so, is it safe to symlink '/var/run/dovecot' to
'/var/run/dovecot-director', or should I just make the director's base
path /var/run/dovecot directly?
in dovecot-director.conf, I have:
service doveadm {
inet_listener {
port = 8889
}
}
local 192.168.x.0/24 {
doveadm_password = Foo
}
doveadm_proxy_port = 8888
and in dovecot-main.conf, I have:
service doveadm {
inet_listener {
port = 8888
}
}
local 192.168.x.0/24 {
doveadm_password = Foo
}
protocol doveadm {
auth_socket_path = director-userdb
}
Is this correct (and is there anything unneeded / redundant th...
2020 Oct 31
1
Odd replication behaviour
...ot SSH). Some output from dovecot -n is below.
Cheers
James
HOST A
# 2.3.8 (9df20d2db): /etc/dovecot/dovecot.conf
# Pigeonhole version 0.5.8 (b7b03ba2)
# OS: Linux 4.18.0-193.28.1.el8_2.x86_64 x86_64 CentOS Linux release 8.2.2004 (Core) xfs
# Hostname: hosta.domain
auth_mechanisms = plain login
doveadm_password = # hidden, use -P to show it
doveadm_port = 4040
first_valid_uid = 1000
mail_debug = yes
mail_home = /srv/vmail/%u
mail_location = maildir:/srv/vmail/%u
mail_plugins = notify replication
managesieve_notify_capability = mailto
managesieve_sieve_capability = fileinto reject envelope encoded-characte...
2017 Jan 09
1
panic when doveadm sieve put between multiple hosts
...tls/private/dovecot.key
ssl_protocols = !SSLv2 !SSLv3
ssl_require_crl = no
userdb {
driver = passwd
}
protocol doveadm {
auth_socket_path = director-userdb
}
protocol sieve {
passdb {
args = proxy=y nopassword=y starttls=any-cert
driver = static
name =
}
}
local 10.1.11.0/24 {
doveadm_password = # hidden, use -P to show it
}
backend-machine $ dovecot -n
# 2.2.25 (7be1766): /etc/dovecot/dovecot.conf
# Pigeonhole version 0.4.15 (97b3da0)
# OS: Linux 3.10.0-327.18.2.el7.x86_64 x86_64 CentOS Linux release 7.2.1511 (Core)
auth_username_format = %Ln
default_vsz_limit = 2 G
lda_mailbox_autocr...
2014 Jan 30
1
Is replication broken?
...yone have an ideas as to what might be causing it? These are brand
new rebuilds, running the latest build - I just can't seem to get this
working.
Bug maybe?
Configs are as follows:
Server1:
# 2.2.10: /usr/pkg/etc/dovecot/dovecot.conf
# OS: NetBSD 5.2 cobalt
auth_mechanisms = plain login
doveadm_password = secret
doveadm_port = 12345
first_valid_uid = 1003
last_valid_uid = 1020
listen = 192.168.1.1
login_greeting = test.com
mail_location = mbox:~/mail:INBOX=/var/mail/%u
mail_plugins = " notify replication"
passdb {
driver = passwd
}
plugin {
mail_replica = tcp:Server2.test.com
}
proto...