Displaying 3 results from an estimated 3 matches for "userdb_mail_crypt_save_version".
2018 May 28
0
Best mail encryption solution for per-user
...in one mysql query so dovecot can work with it
>>>
>>> Please let me know your thougts, after this last thing im done :)
>>> also let me know if i can support this project in some way, im willing to contribute
>>>
>>> Zjemm
>> You can select it as userdb_mail_crypt_save_version=0 to disable encryption (it won't disable
>> decryption). You can use value '2' for enabling encryption. DO NOT USE 1.
>>
>> Also I tried the SQL based thing, and if you had EMPTY mail_crypt_private_password, try these to
>> change the password. If the one that w...
2020 May 14
0
[Dovecot v2.3.9.3] HTTP API Endpoint for mailbox cryptokey operations
...39;/var/spool/mail/virtual_mailboxes/%d/%n' as home, \
5000 AS uid, \
5000 AS gid, \
crypt AS mail_crypt_save_version \
FROM virtual_users WHERE email='%u';
#SQL Query used to fetch the user's password from the DB
password_query = SELECT password, \
crypt AS userdb_mail_crypt_save_version, \
'%w' AS userdb_mail_crypt_private_password \
FROM virtual_users WHERE email='%u';
#SQL Query to iterate over all users
iterate_query = SELECT email AS user FROM virtual_users;
dovecot-sql-dict.conf.ext
=========================
#driver = mysql
connect = "host=/va...
2018 May 27
0
Best mail encryption solution for per-user
...M virtual_users;
> >
> > but then in one mysql query so dovecot can work with it
>
> Please let me know your thougts, after this last thing im done :)
> also let me know if i can support this project in some way, im willing to contribute
>
> Zjemm
You can select it as userdb_mail_crypt_save_version=0 to disable encryption (it won't disable decryption). You can use value '2' for enabling encryption. DO NOT USE 1.
Also I tried the SQL based thing, and if you had EMPTY mail_crypt_private_password, try these to change the password. If the one that works is the second one, let me know...