教学文库网 - 权威文档分享云平台
您的当前位置:首页 > 精品文档 > 学前教育 >

linux下架设邮箱 MUA篇RoundCubeWebmail(3)

来源:网络收集 时间:2026-07-31
导读: date format for log entries 日志文件中的时间格式 $rcmail_config['syslog_facility'] = LOG_USER; Syslog facility to use, if using the 'syslog' log driver. 若使用'syslog'系统日志,则使用的日志工具 $rcma

date format for log entries 日志文件中的时间格式

$rcmail_config['syslog_facility'] = LOG_USER;

Syslog facility to use, if using the 'syslog' log driver. 若使用'syslog'系统日志,则使用的日志工具 $rcmail_config['smtp_log'] = true;

Log sent messages to /sendmail or to syslog

True:把smtp日志记录在/logs/sendmail文件中,False:不记录 $rcmail_config['log_logins'] = true;

Log successful logins to /userlogins or to syslog

True:把用户成功登录日志记录在/logs/sendmail文件中,False:不记录 $rcmail_config['sql_debug'] = false;

Log SQL queries to /sql or to syslog

True:把SQL错误日志记录在/logs/sql文件中,False:不记录 $rcmail_config['imap_debug'] = false;

Log IMAP conversation to /imap or to syslog

True:把imap调试日志记录在/logs/imap文件中,False:不记录 $rcmail_config['ldap_debug'] = false;

Log LDAP conversation to /ldap or to syslog True:把imap调试日志记录在/logs/imap文件中,False:不记录 $rcmail_config['smtp_debug'] = false;

Log SMTP conversation to /smtp or to syslog

True:把smtp调试日志记录在/logs/ smtp文件中,False:不记录 G.2、交互式邮件存取协议(IMAP)

$rcmail_config['default_host'] = '192.168.1.253';

the mail host chosen to perform the log-in.leave blank to show a textbox at login, give a list of hosts to display a pulldown menu or set one host as string.To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://.Supported replacement variables:%n - http hostname ($_SERVER['SERVER_NAME']) %d - domain (http hostname without the first part) For example %n = mail.domain.tld, %d = domain.tld 邮件登录主机。’’:在登录是显示一个输入框,字符串数组array(‘x’,’xx’):显示一个下拉菜单,字符串’xx’:则为默认邮箱登录时不显示,SSL/TLS连接:主机名以ssl://或 tls://开头,支持变量替换:%n主机名称($_SERVER['SERVER_NAME']),%d域名,若主机名为mail.domain.tld,%n = mail.domain.tld,,%d = domain.tld。 $rcmail_config['default_port'] = 143;

TCP port used for IMAP connections Imap端口

$rcmail_config['imap_auth_type'] = null;

IMAP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use best server supported one) IMAP AUTH类型,选择服务支持最好的一个 $rcmail_config['imap_delimiter'] = null;

If you know your imap's folder delimiter, you can specify it here.Otherwise it will be determined automatically

如果你知道你的IMAP的文件夹分隔符,你可以在此指定它,否则就让它会自动确定。 $rcmail_config['imap_ns_personal'] = null; $rcmail_config['imap_ns_other'] = null; $rcmail_config['imap_ns_shared'] = null;

If IMAP server doesn't support NAMESPACE extension, but you're using shared folders or personal root folder is non-empty, you'll need to set these options. All can be strings or arrays of strings. Folders need to be ended with directory separator, e.g. \directory \is an exception to this rule) These can be used also to overwrite server's namespaces.

如果IMAP服务器不支持命名空间扩展,但你使用共享文件夹或个人的根文件夹是非空,

你需要设置这些选项。这些选项的值可以是字符串或字符串数值。文件夹需要以目录分隔符结尾,如“INBOX.”。(特殊的目录\是对这一规则的例外),这些也可用于覆盖服务器的命名空间。

$rcmail_config['imap_force_caps'] = false;

By default IMAP capabilities are readed after connection to IMAP server In some cases, e.g. when using IMAP proxy, there's a need to refresh the list after login. Set to True if you've got this case.

在某些情况下连接后服务器后IMAP默认被读取 ,例如当使用IMAP代理,登录后需要刷新列表。若你有这种情况的话就设置为True。 $rcmail_config['imap_force_lsub'] = false;

By default list of subscribed folders is determined using LIST-EXTENDED extension if available. Some servers (dovecot 1.x) returns wrong results for shared namespaces in this case. http://trac.roundcube.net/ticket/1486225 Enable this option to force LSUB command usage instead. 若可用订阅文件夹的默认列表确认被用作名单扩展。在这种情况下一些服务器(dovecot 1. x)返回错误的结果为共同命名空间。 $rcmail_config['imap_timeout'] = 0;

IMAP connection timeout, in seconds. Default: 0 (no limit) IMAP连接超时时间,秒,默认:0(不限制)。 $rcmail_config['imap_auth_cid'] = null;

Optional IMAP authentication identifier to be used as authorization proxy 可选的IMAP认证标识符作为授权代理 $rcmail_config['imap_auth_pw'] = null;

Optional IMAP authentication password to be used for imap_auth_cid 可选的IMAP认证密码用来作imap_auth_cid G.3、简单邮件传输协议(SMTP)

$rcmail_config['smtp_server'] = '192.168.1.253';

SMTP server host (for sending mails). To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://,If left blank, the PHP mail() function is used,Supported replacement variables:%h - user's IMAP hostname,%n - http hostname ($_SERVER['SERVER_NAME']),%d - domain (http hostname without the first part),%z - IMAP domain (IMAP hostname without the first part).For example %n = mail.domain.tld, %d = domain.tld SMTP服务主机(发送邮件)。SSL/TLS连接:主机名以ssl://或 tls://开头,空白:使用php的main()函数,支持变量替换:%h 用户IMAP主机,%n http主机($_SERVER['SERVER_NAME']),%d域名(没有第一部分的主机名),%z IMAP域名(没有第一部分的IMAP主机名)。若主机名为mail.domain.tld,%n = mail.domain.tld,,%d = domain.tld。

$rcmail_config['smtp_port'] = 25;

SMTP port (default is 25; 465 for SSL) SMTP端口(默认25;SSL465) $rcmail_config['smtp_user'] = '';

SMTP username (if required) if you use %u as the username Roundcube will use the current username for login SMTP用户名(如果需要)如果你使用%u作为用户名,Roundcube将使用当前登录用户。

$rcmail_config['smtp_pass'] = '';

SMTP password (if required) if you use %p as the password Roundcube will use the current user's password for login

SMTP密码(如果需要)如果你使用%p作为密码,Roundcube将使用当前登录用户的密码。

$rcmail_config['smtp_auth_type'] = '';

SMTP AUTH 类型,选 …… 此处隐藏:6760字,全部文档内容请下载后查看。喜欢就下载吧 ……

linux下架设邮箱 MUA篇RoundCubeWebmail(3).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
本文链接:https://www.jiaowen.net/wendang/592620.html(转载请注明文章来源)
Copyright © 2020-2025 教文网 版权所有
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ:78024566 邮箱:78024566@qq.com
苏ICP备19068818号-2
Top
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)