Displaying 5 results from an estimated 5 matches for "domain_tld".
Did you mean:
domain_tls
2014 Sep 03
0
Setup sieve failed
...= script /usr/local/bin/quota-exceeded.sh
unix_listener quota-exceeded {
user = vmail
}
user = root
}
service quota-warning {
executable = script /usr/local/bin/quota-warning.sh
unix_listener quota-warning {
user = vmail
}
user = root
}
ssl = required
ssl_ca = </certificate/domain_tld.ca-bundle
ssl_cert = </certificate/domain_tld.crt
ssl_cipher_list = ALL:!LOW:!SSLv2:!EXP:!aNULL:!ADH:!eNULL
ssl_key = </certificate/domain_tld.key
userdb {
args = /etc/dovecot/dovecot-sql.conf.ext
driver = sql
}
userdb {
args = uid=5000 gid=5000 home=/var/www/kunden/mail/%d/%Ln
driver...
2018 Oct 04
2
vpopmail
...tual domain
>> instead of storing all users in a single table.
>> Only valid for MySQL and PostgreSQL
>>
>> This disallows (I think) the use Dovecot MySQL configuration file
>> as every user is stored in a domain table of the form 'mydomain_tld'.
>>
>> So, we're limited to these configurations (no dovecot-mysql.conf.ext) :
>>
>> passdb {
>> args = cache_key=%u webmail=127.0.0.1
>> driver = vpopmail
>> }
>>
>> userdb {
>> args = cache_key=%u quota_template=quota_rule...
2018 Oct 04
0
vpopmail
...ously mentioned. When
using these options dovecot will get the clear text password if present.
The problem is that if a password is over 16 characters long the clear
text field will only store the first 16 characters while the hashed
field will contain the whole password.
# echo "describe domain_tld" | mysql -u root -p`cat vpoppasswd` vpopmail
yeilds
Field?? Type??? Null??? Key???? Default Extra
pw_name char(32)??????? NO????? PRI???? NULL
pw_passwd?????? char(40)??????? YES???????????? NULL
pw_uid? int(11) YES???????????? NULL
pw_gid? int(11) YES???????????? NULL
pw_gecos??????? char(48)...
2018 Oct 04
0
vpopmail
...of storing all users in a single table.
>>> ? ? ? ? ? ? ? ? ? ? ? ? ? ?Only valid for MySQL and PostgreSQL
>>>
>>> This disallows (I think) the use Dovecot MySQL configuration file
>>> as every user is stored in a domain table of the form
>>> 'mydomain_tld'.
>>>
>>> So, we're limited to these configurations (no dovecot-mysql.conf.ext) :
>>>
>>> passdb {
>>> args = cache_key=%u webmail=127.0.0.1
>>> driver = vpopmail
>>> }
>>>
>>> userdb {
>>> args = cach...
2018 Oct 04
3
vpopmail
...omains Creates a table for each virtual domain
instead of storing all users in a single table.
Only valid for MySQL and PostgreSQL This disallows (I think)
the use Dovecot MySQL configuration file as every user is stored in a
domain table of the form 'mydomain_tld'. So, we're limited to these
configurations (no dovecot-mysql.conf.ext) : passdb { args =
cache_key=%u webmail=127.0.0.1 driver = vpopmail } userdb { args
= cache_key=%u quota_template=quota_rule=*:backend=%q driver =
vpopmail } If there is a clear text password (pw_clea...