-
Notifications
You must be signed in to change notification settings - Fork 0
/
capkopper_smtp.features.defaultconfig.inc
97 lines (84 loc) · 3.35 KB
/
capkopper_smtp.features.defaultconfig.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
/**
* @file
* capkopper_smtp.features.defaultconfig.inc
*/
/**
* Implements hook_defaultconfig_features().
*/
function capkopper_smtp_defaultconfig_features() {
return array(
'capkopper_smtp' => array(
'strongarm' => 'strongarm',
),
);
}
/**
* Implements hook_defaultconfig_strongarm().
*/
function capkopper_smtp_defaultconfig_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mail_system';
$strongarm->value = array(
'default-system' => 'SWIFTMailSystem',
);
$export['mail_system'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'swiftmailer_character_set';
$strongarm->value = 'UTF-8';
$export['swiftmailer_character_set'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'swiftmailer_convert_mode';
$strongarm->value = 1;
$export['swiftmailer_convert_mode'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'swiftmailer_format';
$strongarm->value = 'text/html';
$export['swiftmailer_format'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'swiftmailer_path';
$strongarm->value = 'profiles/capkopper_multilingual/libraries/swiftmailer';
$export['swiftmailer_path'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'swiftmailer_respect_format';
$strongarm->value = 0;
$export['swiftmailer_respect_format'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'swiftmailer_smtp_encryption';
$strongarm->value = 'tls';
$export['swiftmailer_smtp_encryption'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'swiftmailer_smtp_host';
$strongarm->value = 'smtp-gw.capkopper.fr';
$export['swiftmailer_smtp_host'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'swiftmailer_smtp_port';
$strongarm->value = '587';
$export['swiftmailer_smtp_port'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'swiftmailer_transport';
$strongarm->value = 'smtp';
$export['swiftmailer_transport'] = $strongarm;
return $export;
}