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
|
<?php
$CONFIG = array
(
'adminMail' => 'jmi@iut-blagnac.fr',
'automatedMail' => 'no_reply@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',
'Glace (ancien)' => 'ice_moche',
'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'
)
)
),
'SUPERUSERS' => array ('jeremie.denoyer', 'lpouzenc'),
'UPLOAD' => array
(
'accepted_files' => array
(
'jpg', 'jpeg', 'gif', 'png', 'svg', 'pdf', 'ps', 'txt', 'rtf', 'csv', 'doc', 'docx', 'ppt', 'xls', 'sxw','sxp','sxd', 'odt', 'odg', 'odp', 'avi', 'mpg', 'mpeg', 'rm', 'flv', 'mp3', 'mp4', 'ogg','htm','html','zip', 'rar', 'tar', 'gz', 'bz2', 'ace'
)
)
);
?>
|