<div dir="ltr">Please tell me about Dsync replicator.<br><br>The following are set to enable the "replication" plug-in<br><br>/etc/dovecot/conf.d/10-mail.conf<br><b>---<br>mail_plugins = notify replication<br>---</b><br><br>And I made the following file<br><br>/etc/dovecot/conf.d/30-dsync.conf<br><br><b>---<br>service replicator {<br>  process_min_avail = 1<br>}<br> <br>dsync_remote_cmd = ssh -l%{login} %{host} doveadm dsync-server -u%u<br>plugin {<br>  mail_replica = remote:root@"ServerIP"<br>}<br> <br>service aggregator {<br>  fifo_listener replication-notify-fifo {<br>    user = mail<br>  }<br>  unix_listener replication-notify {<br>    user = mail<br>  }<br>}<br> <br>service replicator {<br>  unix_listener replicator-doveadm {<br>    mode = 0600<br>  }<br>}<br> <br>replication_max_conns = 10<br> <br>plugin {<br>  # When saving a new mail via IMAP or delivering a mail via LDA/LMTP,<br>  # wait for the mail to be synced to the remote site. If it doesn't finish<br>  # in 2 seconds, return success anyway.<br>  # replication_sync_timeout = 2s<br>}<br>---</b><br><br>But replication gives an error<br>---<br><b>Error: open(/var/run/dovecot/replication-notify-fifo) failed: Permission denied</b><br>---<br><br>Why is this?<br><br>By the way, When 30-dsync.conf is changed as follows, it works only for one user<br><b>---<br>service aggregator {<br>  fifo_listener replication-notify-fifo {<br>    user = "one user name"<br>  }<br>  unix_listener replication-notify {<br>    user = "one user name"<br>  }<br>}<br>---</b><br><br>However, I want to work with all mail users.<br>Please help me what to do.<br><br><br>My configuration is as follows<br><b>---<br># 2.2.36 (1f10bfa63): /etc/dovecot/dovecot.conf<br># OS: Linux 3.10.0-1062.9.1.el7.x86_64 x86_64 CentOS Linux release 7.7.1908 (Core) <br># Hostname: <a href="http://test1.s1.iwate-np.co.jp">test1.s1.iwate-np.co.jp</a><br>dsync_remote_cmd = ssh -l%{login} %{host} doveadm dsync-server -u%u<br>first_valid_uid = 1000<br>mail_location = maildir:~/Maildir<br>mail_plugins = notify replication<br>mbox_write_locks = fcntl<br>namespace inbox {<br>  inbox = yes<br>  location = <br>  mailbox Drafts {<br>    special_use = \Drafts<br>  }<br>  mailbox Junk {<br>    special_use = \Junk<br>  }<br>  mailbox Sent {<br>    special_use = \Sent<br>  }<br>  mailbox "Sent Messages" {<br>    special_use = \Sent<br>  }<br>  mailbox Trash {<br>    special_use = \Trash<br>  }<br>  prefix = <br>}<br>passdb {<br>  driver = pam<br>}<br>plugin {<br>  mail_replica = <a href="mailto:remote%3Aroot@192.168.4.2">remote:root@192.168.4.2</a><br>}<br>service aggregator {<br>  fifo_listener replication-notify-fifo {<br>    user = mail<br>  }<br>  unix_listener replication-notify {<br>    user = mail<br>  }<br>}<br>service replicator {<br>  process_min_avail = 1<br>  unix_listener replicator-doveadm {<br>    mode = 0600<br>  }<br>}<br>ssl = required<br>ssl_cert = </etc/pki/dovecot/certs/dovecot.pem<br>ssl_key =  # hidden, use -P to show it<br>userdb {<br>  driver = passwd<br>}<br>---</b><br><br></div>