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
|
<?php
$CONFIG = array
(
'adminMail' => 'jmi@iut-blagnac.fr',
'AUTH' => array
(
'POP' => array
(
'SERVERS' => array
(
'wanadoo.fr' => array
(
'subdomain' => 'pop.orange.fr',
'port' => 110,
'username_is_full_mail' => false
),
'orange.fr' => array
(
'subdomain' => 'pop.orange.fr',
'port' => 110,
'username_is_full_mail' => false
)
)
),
'bypass_if_local' => false
),
'CSS' => array
(
'CHOOSER_LIST' => array
(
// 'nom � afficher' => 'nom_fichier_sans_extension'
'standard' => 'ice',
'bleu' => 'style1'
)
),
'MAIL' => array
(
'TEMPLATES' => array
(
'cree' => array
(
'caption' => 'Nouvelle R�union',
'tpl_file' => 'mail_cree.php'
),
'modif' => array
(
'caption' => 'R�union modifi�e',
'tpl_file' => 'mail_modif.php'
),
'annul' => array
(
'caption' => 'R�union annul�e',
'tpl_file' => 'mail_annul.php'
),
'fixee' => array
(
'caption' => 'R�union fix�e',
'tpl_file' => 'mail_fixee.php'
)
)
)
);
?>
|