Displaying 3 results from an estimated 3 matches for "user_pass".
Did you mean:
user_pass1
2011 Mar 11
1
Using dovecot with wordpress/phpass passwords?
Good afternoon,
I am trying to setup dovecot to authenticate using the userdata from wordpress.
It's being a bit mor difficult than I thought. This is the relevant
part of the dovecot-sql.conf
default_pass_scheme = CRYPT
password_query = SELECT user_pass AS password FROM wp_users WHERE
user_email='%u';
user_query = SELECT 501 as uid, 501 as gid,'maildir:storage=51200' as
quota FROM wp_users WHERE user_email = '%u'
I can see that the query is being procecessed according to the logs.
Wordpress and others are using phpass to...
2012 Jun 24
2
Dovecot Quotas in Version 2
...pop3 {
mail_plugins = quota
pop3_uidl_format = %08Xu%08Xv
}
And for the dovecot-sql.conf file (passwords changed, of course):
driver = mysql
connect = dbname=horde user=<USER> password=<PASSWORD> host=localhost
default_pass_scheme = PLAIN
password_query = SELECT user_uid as user, user_pass as password FROM horde_users WHERE user_uid = '%u';
user_query = SELECT uid, gid, home, maildir, concat('maildir:storage=', quota) AS quota FROM horde_users WHERE user_uid = '%u';
I did not update the dovecot-sql.conf file at all - so I don't know if there maybe be some...
2020 Apr 06
2
Adding a new External Suite to test-suite
...s.tar.gz)
Each file is a single function, that compiles as is---no dependencies are
needed. For instance, the commands below work for each individual
file:
$ clang $compile_flags -Xclang -disable-O0-optnone -S -c -emit-llvm \
"$file" -o "$individual_bc"
$ opt -mem2reg -O0 ${user_passes[@]} -instcount -stats -S \
"$individual_bc" -disable-output 2>&1"
So, these are my questions:
Q1: What do I have to do to start integrating my collection of .c files as
an
External Suite? They are all single source, single function,
compilable headerless files extracte...