Develop and Download Open Source Software

Browse Subversion Repository

Contents of /config.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33 - (show annotations) (download)
Mon May 5 13:54:41 2008 UTC (16 years ago) by ktym9814
File size: 1150 byte(s)
IMAPサーバへの接続パラメータを外部ファイルへExport
1 <?php
2
3 #for language change
4 require_once "functions/language.inc";
5
6 #Input imap server's IP Address or host name
7 $imap["server"]="";
8
9 #Input connect port.Default is 143
10 $imap["port"]="143";
11 #
12 $imap["service"]="imap";
13
14 #If you want connect IMAP Server as User,set this value.
15 $imap["user"]="";
16
17 #Connect IMAP Server as User.if you set this value,use this user\'s password
18 #for Authentication.
19 $imap["authuser"]="";
20
21 #Connect IMAP Server as 'anonymous'.
22 #Default is no,If you want this value yes,set "1".
23 $imap["useanonymous"]="0";
24
25 #If you want Debug Connection,set this value to "1"
26 $imap["debug"]="0";
27
28 #Dont permit to send PLAIN password
29 #Default is "0"
30 $imap["secure"]="0";
31
32 #Use rsh to establish IMAP session
33 #Default is "0"
34 $imap["usersh"]="0";
35
36 #Use ssl to connect IMAP Server
37 #Default is "0"
38 $imap["usessl"]="1";
39
40 #Validate Server cert. If you have only test cert,set this value to "no".
41 #Default is "1"
42 $imap["validatecert"]="1";
43
44 #Use tls to connect IMAP Server
45 #Default is "0"
46 $imap["usetls"]="0";
47
48 #require imap server of Readonly Connection.
49 #Default is "0"
50 $imap["readonly"]="0";
51
52 ?>

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26