Displaying 20 results from an estimated 23 matches for "pw_domain".
2018 Oct 04
2
vpopmail
...he clear text?
>>>>
>>> Prefix your passwords in vpopmail with {SCHEME} (like,? {CRYPT})
>>> Aki
>>
>>
>> Or use SQL -? then you don't have to munge any of your tools.
>>
>> password_query =
>> SELECT CONCAT(pw_name, '@', pw_domain) AS user, pw_passwd AS
>> password, pw_dir as userdb_home, 89 as userdb_uid, 89 as userdb_gid
>> FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d' AND
>> !(pw_gid & 8) AND !(pw_gid & 2) AND ('%r'!='<webserverip>' or
>>...
2020 Mar 18
2
Headsup on feature removal
...uery for vpopmail database:
# cat /etc/dovecot/dovecot-sql.conf.ext
### Vpopmail
driver = mysql
connect = host=192.168.1.2 dbname=vpopmail user=vpopmail password=Vp0pM4iL
default_pass_scheme = MD5-CRYPT
### Query to get a list of all usernames.
iterate_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user FROM vpopmail
### user_query for vpopmail
user_query = SELECT pw_dir AS home, 89 AS uid, 89 AS gid,
concat('*:backend=', pw_shell) AS quota_rule FROM vpopmail WHERE pw_name
= '%n' AND pw_domain = '%d'
### password_query for vpopmail (not used)
#password_query =...
2018 Oct 04
3
vpopmail
...s that tells the
>> program to authenticate against the hash instead of the clear text?
>
> Prefix your passwords in vpopmail with {SCHEME} (like,? {CRYPT})
> Aki
Or use SQL -? then you don't have to munge any of your tools.
password_query =
SELECT CONCAT(pw_name, '@', pw_domain) AS user, pw_passwd AS password,
pw_dir as userdb_home, 89 as userdb_uid, 89 as userdb_gid
FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d' AND !(pw_gid &
8) AND !(pw_gid & 2) AND ('%r'!='<webserverip>' or !(pw_gid & 4))
pw_gid refers to...
2009 Dec 14
2
vpopmail/mysql/quota
...b:
driver: vpopmaildriver = mysql
#
connect = host=/var/lib/mysql/mysql.sock user=vpopuser password=xxxxxxxx
dbname=vpopmail
#
default_pass_scheme = PLAIN
# NOTE: '\' line splitting works only with v1.1+
password_query = SELECT pw_clear_passwd AS password, CONCAT(pw_name, '@',
pw_domain) AS user FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d'
user_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user, pw_dir as home,
508 AS uid, 503 AS gid, concat('maildir:backend=%q', pw_shell) AS quota_rule
FROM vpopmail WHERE pw_name = '%n' AND...
2018 Oct 04
0
vpopmail
...>>>
>>>> Prefix your passwords in vpopmail with {SCHEME} (like,? {CRYPT})
>>>> Aki
>>>
>>> Or use SQL -? then you don't have to munge any of your tools.
>>>
>>> password_query =
>>> SELECT CONCAT(pw_name, '@', pw_domain) AS user, pw_passwd AS
>>> password, pw_dir as userdb_home, 89 as userdb_uid, 89 as userdb_gid
>>> FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d' AND
>>> !(pw_gid & 8) AND !(pw_gid & 2) AND ('%r'!='<webserverip>'...
2011 Apr 25
1
dovecot lda aliases doesn't work
...correct with real addresses but couldn't find forwarding
addresses.
This is my /usr/local/etc/dovecot-sql.conf:
driver = mysql
connect = host=localhost user=vpopmailuser password=vpopmailpassword
dbname=vpopmail
default_pass_scheme = PLAIN
password_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user,
pw_clear_passwd AS password FROM vpopmail WHERE pw_name = '%n' AND
pw_domain = '%d'
user_query = SELECT pw_dir as home, 89 AS uid, 89 AS gid FROM vpopmail
WHERE pw_name = '%n' AND pw_domain = '%d'
It is querying vpopmail table all the time but forwardin...
2010 Oct 07
1
Qmail+Vpopmail+Mysql+Dovecot 2.x (Notes on a successful conversion)
...-many-domains
to collapse the tables.
2. Switch to mysql authentication. The following snippet works well.
driver = mysql
connect = host=/var/run/mysqld/mysqld.sock user=vpopmail
password=YOURPASS dbname=vpopmail
default_pass_scheme = PLAIN
password_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user,
pw_clear_passwd AS password FROM vpopmail WHERE pw_name = '%n' AND
pw_domain = '%d'
user_query = SELECT pw_dir as home, 1008 AS uid, 1003 AS gid FROM
vpopmail WHERE pw_name = '%n' AND pw_domain = '%d'
3. When integrating Sieve, vpopmail apparently need...
2018 Oct 04
2
vpopmail
...es that tells the
>> program to authenticate against the hash instead of the clear text?
>
> Prefix your passwords in vpopmail with {SCHEME} (like,? {CRYPT})
> Aki
Or use SQL -? then you don't have to munge any of your tools.
password_query =
SELECT CONCAT(pw_name, '@', pw_domain) AS user, pw_passwd AS password,
pw_dir as userdb_home, 89 as userdb_uid, 89 as userdb_gid
FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d' AND !(pw_gid &
8) AND !(pw_gid & 2) AND ('%r'!='<webserverip>' or !(pw_gid & 4))
pw_gid refers to...
2008 Sep 01
1
usernames with/without domain - my solution
...Dovecot IP and the 'default' domain
2. create a (rather ugly looking) sql query that combines data from both the vpopmail table and the new table
The SQL query is as follows:
SELECT
IF('%d' = '',dovecot.domain,'%d') AS authdomain,
CONCAT(pw_name, '@', pw_domain) AS user,
pw_passwd AS password, pw_dir AS userdb_home, 89 AS userdb_uid, 89 AS userdb_gid
FROM vpopmail, dovecot_authmap AS dovecot
WHERE pw_name = '%n'
AND dovecot.local_ip = SUBSTRING_INDEX('%l', ':', -1)
GROUP BY pw_domain HAVING pw_domain = authdomain
NOTE...
2018 Oct 04
0
vpopmail
...ticate against the hash instead of the clear text?
>>>
>> Prefix your passwords in vpopmail with {SCHEME} (like,? {CRYPT})
>> Aki
>
>
> Or use SQL -? then you don't have to munge any of your tools.
>
> password_query =
> SELECT CONCAT(pw_name, '@', pw_domain) AS user, pw_passwd AS password,
> pw_dir as userdb_home, 89 as userdb_uid, 89 as userdb_gid
> FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d' AND !(pw_gid &
> 8) AND !(pw_gid & 2) AND ('%r'!='<webserverip>' or !(pw_gid & 4))
>...
2020 Mar 18
3
Headsup on feature removal
So I am on of the many users with qmail, and using vpopmail auth, I guess chatting with some other guys in the other mailing list we will convert to mysql driver but this is a lot of work for many people.
I do understand dropping things out but a valid solutions needs to be proposed.
Remo
> On Mar 18, 2020, at 06:49, Michael Peddemors <michael at linuxmagic.com> wrote:
>
>
2009 Mar 13
2
New to list, got a quota question
...ing to implement some extra
features like IMAP quotas.
I'm using the sql passdb, with the following config:
driver = mysql
connect = host=/var/lib/mysql/mysql.sock user=username password=password
dbname=vpopmail
default_pass_scheme = PLAIN
password_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user,
pw_clear_passwd AS password FROM vpopmail WHERE pw_name = '%n' AND
pw_domain = '%d'
user_query = SELECT pw_dir as home, 508 AS uid, 503 AS gid FROM vpopmail
WHERE pw_name = '%n' AND pw_domain = '%d'
My vpopmail installation keeps the quota information...
2017 May 12
0
Dovecot 2.2.29.1 + VPopMail 5.4.33
Hi all,
I have a fresh installation of a Vpopmail 5.4.33 + Dovecot 2.2.29.1 + SQL
As usual I followed the AuthDatabase/VPopMail wiki
password_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user, \
pw_clear_passwd AS password \
FROM vpopmail \
WHERE pw_name = '%n' AND pw_domain = '%d'
user_query = SELECT pw_dir as home, \
89 AS uid, 89 AS gid \
FROM vpopmail \
WHERE pw_name = '%n' AND pw_domain = '%d'
For VPopMail, I pre...
2020 Mar 19
2
Headsup on feature removal
Il 19/03/20 02:01, John Stoffel ha scritto:
> Alessio> ### user_query for vpopmail
> Alessio> user_query = SELECT pw_dir AS home, 89 AS uid, 89 AS gid,
> Alessio> concat('*:backend=', pw_shell) AS quota_rule FROM vpopmail
> Alessio> WHERE pw_name = '%n' AND pw_domain = '%d'
>
> Careful! You need to explain that 89 is the UID and GID of the
> vpopmail user account? Or some other account? I don't use either of
> these auth methods, but this just struck me a a little magical.
Hi John,
what you said is true but historically in vpopmail...
2008 Jan 25
2
proxy logging
...: /etc/dovecot-sql.conf
userdb:
driver: static
args: uid=0 gid=0
plugin:
quota: maildir
mail_log_events: delete undelete expunge copy mailbox_delete
mailbox_rename
mail_log_fields: uid box msgid size
/etc/dovecot-sql.conf:
password_query = SELECT pw_clear_passwd AS password, pw_domain AS
domain, '192.168.224.2' AS host, 'Y' AS nologin, 'Y' AS nodelay, 'Y' AS
proxy FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d' limit 1
2011 Mar 24
1
pigeonhole and roundcube install problem
...postmaster_address = postmaster at example.com
sendmail_path = /var/qmail/bin/sendmail
}
dovecot-sql.conf ??kt?s?:
driver = mysql
connect = host=localhost user=vpopmailuser password=vpopmailpassword
dbname=vpopmail
default_pass_scheme = PLAIN
password_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user,
pw_clear_passwd AS password FROM vpopmail WHERE pw_name = '%n' AND
pw_domain = '%d'
user_query = SELECT pw_dir as home, 89 AS uid, 89 AS gid FROM vpopmail
WHERE pw_name = '%n' AND pw_domain = '%d'
[1]: http://wiki2.dovecot.org/LDA/Qmail
--
Selcuk MIYNAT...
2016 Oct 12
2
Detect IMAP server domain name in Dovecot IMAP proxy
I?m in the process of setting up a Dovecot IMAP proxy to handle a number of IMAP server domains. At the current time, I have my users divided into 70 different groups of users (call them G1 to G70). I want each group to configure their email client to access their mailboxes at a domain name based on the group they belong to (e.g., g1.example.com <http://g1.example.com/>, g2.example.com
2018 Oct 03
2
vpopmail
Hello list,
I run Dovecot with the vpopmail driver and have found that it
authenticates against the clear text password in the vpopmail database.
Is there a configuration option either at compile time, link time, or a
setting in one of the configuration files that tells the program to
authenticate against the hash instead of the clear text?
--
Eric Broch
White Horse Technical Consulting
2018 Oct 04
0
vpopmail
...ticate against the hash instead of the clear text?
>>>
>> Prefix your passwords in vpopmail with {SCHEME} (like,? {CRYPT})
>> Aki
>
>
> Or use SQL -? then you don't have to munge any of your tools.
>
> password_query =
> SELECT CONCAT(pw_name, '@', pw_domain) AS user, pw_passwd AS password,
> pw_dir as userdb_home, 89 as userdb_uid, 89 as userdb_gid
> FROM vpopmail WHERE pw_name = '%n' AND pw_domain = '%d' AND !(pw_gid &
> 8) AND !(pw_gid & 2) AND ('%r'!='<webserverip>' or !(pw_gid & 4))
>...
2020 Mar 19
0
Headsup on feature removal
...essio> ### Vpopmail
Alessio> driver = mysql
Alessio> connect = host=192.168.1.2 dbname=vpopmail user=vpopmail password=Vp0pM4iL
Alessio> default_pass_scheme = MD5-CRYPT
Alessio> ### Query to get a list of all usernames.
Alessio> iterate_query = SELECT CONCAT(pw_name, '@', pw_domain) AS user FROM vpopmail
Alessio> ### user_query for vpopmail
Alessio> user_query = SELECT pw_dir AS home, 89 AS uid, 89 AS gid,
Alessio> concat('*:backend=', pw_shell) AS quota_rule FROM vpopmail
Alessio> WHERE pw_name = '%n' AND pw_domain = '%d'
Careful! You...