Mercurial > prosody-wiki
annotate mod_auth_dovecot.wiki @ 207:d716766d946a
Add page about the Dovecot auth module
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 03 Sep 2011 01:17:16 +0200 |
parents | |
children | 101519e4ef14 |
rev | line source |
---|---|
207
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
1 #summary Dovecot authentication module |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
2 #labels Stage-Alpha,Type-Auth |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
3 |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
4 = Introduction = |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
5 |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
6 This is a Prosody authentication plugin which uses Dovecot as the backend. |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
7 |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
8 = Configuration = |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
9 |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
10 As with all auth modules, there is no need to add this to modules_enabled. Simply add in the global section, or for the relevant hosts: |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
11 |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
12 {{{ |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
13 authentication = "dovecot" |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
14 }}} |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
15 |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
16 These options are specific to mod_auth_dovecot: |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
17 |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
18 || *Name* || *Description* || *Default value* || |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
19 || dovecot_auth_socket || Path to the Dovecot auth socket || /var/run/dovecot/auth-login || |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
20 || auth_append_host || If true, sends the bare JID as authzid. || false || |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
21 |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
22 = Compatibility = |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
23 ||trunk||Works|| |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
24 ||0.8||Works|| |
d716766d946a
Add page about the Dovecot auth module
Kim Alvefur <zash@zash.se>
parents:
diff
changeset
|
25 |