1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2026-01-07 17:47:14 +00:00

dovecot: Remove "experimental" qualifiers

dovecot support has been around for a release, has decent testing and
seems stable enough to remove the "experimental" qualifier.
This commit is contained in:
Alberto Bertogli
2018-06-04 23:45:18 +01:00
parent cf81fbee74
commit 17b7bbe9c6
7 changed files with 40 additions and 14 deletions

View File

@@ -90,15 +90,15 @@ type Config struct {
// If "<syslog>", log using the syslog (at MAIL|INFO priority).
// Default: <syslog>
MailLogPath string `protobuf:"bytes,12,opt,name=mail_log_path,json=mailLogPath" json:"mail_log_path,omitempty"`
// EXPERIMENTAL - Enable dovecot authentication.
// Enable dovecot authentication.
// Domains that don't have an user database will be authenticated via
// dovecot.
DovecotAuth bool `protobuf:"varint,13,opt,name=dovecot_auth,json=dovecotAuth" json:"dovecot_auth,omitempty"`
// EXPERIMENTAL - Dovecot userdb path. If dovecot_auth is set and this
// Dovecot userdb path. If dovecot_auth is set and this
// is not, we will try to autodetect it.
// Example: /var/run/dovecot/auth-userdb
DovecotUserdbPath string `protobuf:"bytes,14,opt,name=dovecot_userdb_path,json=dovecotUserdbPath" json:"dovecot_userdb_path,omitempty"`
// EXPERIMENTAL - Dovecot client path. If dovecot_auth is set and this
// Dovecot client path. If dovecot_auth is set and this
// is not, we will try to autodetect it.
// Example: /var/run/dovecot/auth-client
DovecotClientPath string `protobuf:"bytes,15,opt,name=dovecot_client_path,json=dovecotClientPath" json:"dovecot_client_path,omitempty"`

View File

@@ -75,17 +75,17 @@ message Config {
// Default: <syslog>
string mail_log_path = 12;
// EXPERIMENTAL - Enable dovecot authentication.
// Enable dovecot authentication.
// Domains that don't have an user database will be authenticated via
// dovecot.
bool dovecot_auth = 13;
// EXPERIMENTAL - Dovecot userdb path. If dovecot_auth is set and this
// Dovecot userdb path. If dovecot_auth is set and this
// is not, we will try to autodetect it.
// Example: /var/run/dovecot/auth-userdb
string dovecot_userdb_path = 14;
// EXPERIMENTAL - Dovecot client path. If dovecot_auth is set and this
// Dovecot client path. If dovecot_auth is set and this
// is not, we will try to autodetect it.
// Example: /var/run/dovecot/auth-client
string dovecot_client_path = 15;