Defined Type: exim::authenticator
- Defined in:
-
manifests/authenticator.pp
Summary
This module configures a single authenticator in exims configuration
Overview
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# File 'manifests/authenticator.pp', line 36
define exim::authenticator (
$driver,
$public_name,
$client_name = undef,
$client_secret = undef,
$client_send = undef,
$server_secret = undef,
$server_condition = undef,
$server_set_id = undef,
$server_prompts = undef,
){
concat::fragment { "authenticator-${title}":
target => $::exim::config_path,
content => template("${module_name}/authenticator/authenticator.erb"),
order => 5001,
}
}
|