config.php

来自「通过WAP网站开发连接邮件服务器,通过手机访问WAP邮箱进行收发邮件.」· PHP 代码 · 共 58 行

PHP
58
字号
<?/*$Header: /home/cvsroot/pofhq-wapmail/config.php,v 1.7 2002/12/13 20:19:58 pau Exp $Copyright (c) 2002 Pau Oliva Fora <pau@eSlack.org>               Licensed under the GNU GPL. For full terms see the file COPYING.*/# pofHQ wapMAIL configuration# Put your imap server address here# To connect to an SSL IMAP server add /ssl# To connect to an SSL IMAP server with a self-signed certificate, add /ssl/novalidate-cert$IMAPSERVER="localhost/notls";# Put your imap server port here# Usually 143 for unencrypted connections or 993 for encrypted (SSL) connections.$IMAPPORT="143";# Server type configuration# If you don't use Courier nor Cyrus IMAP, put 0 in both cases. (for example if your imap server is uw-imapd)# Is your server Cyrus-IMAP ?# Put "1" if you use Cyrus-IMAP, otherwise leave it as "0".$CYRUS="0";# Is your server Courier-IMAP ?# Put "1" if you use Courier-IMAP, otherwise leave it as "0".$COURIER="0";# What is your domain name?# This is de domain of sender's address for use when sending a mail$DOMAIN="yourdomain.com";# Wap browsers have limitations in content length.# Adjust this value to your message size in bytes per single wap page to divide long messages into parts$MESSAGESIZE="2100";# How many mails to show by page when browsing your folders$MAILSBYPAGE="10";# Base folder for imap folders. You can leave it blank by using "".$BASEFOLDER="INBOX";#LANGUAGE# Select your language file by uncommenting *ONLY* one of this# Please send your translations to <pau@eslack.org> if your language is not includedrequire("lang/english.php");		// english#require("lang/spanish.php");		// spanish#require("lang/catalan.php");		// catalan#require("lang/german.php");		// german#require("lang/italian.php");		// italian#require("lang/french.php");		// french## DO NOT CHANGE BELOW THIS LINE ##require("functions.php");?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?