You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
/**
* 邮件服务器配置文件
*/
return [
// 数据库配置
'database' => [
'driver' => 'mysql' ,
'host' => 'dbconn.sealoshzh.site' ,
'port' => 33979 ,
'database' => 'smtp' ,
'username' => 'root' ,
'password' => 'nv7cr6db' ,
'charset' => 'utf8mb4' ,
'collation' => 'utf8mb4_unicode_ci' ,
'prefix' => '' ,
'strict' => true ,
],
// SMTP配置
'smtp' => [
'port' => 25 , // SMTP端口
'host' => '0.0.0.0' , // 监听地址
'max_connections' => 100 , // 最大连接数
],
// POP3配置
'pop3' => [
'port' => 110 , // POP3端口
'host' => '0.0.0.0' , // 监听地址
'max_connections' => 100 , // 最大连接数
],
// 服务器配置
'server' => [
'domain' => 'test.com' , // 服务器域名
'admin_password' => 'admin123' , // 管理员密码
'max_email_size' => 10 * 1024 * 1024 , // 最大邮件大小( 10MB)
],
// 日志配置
'log' => [
'path' => '../logs/' , // 日志文件路径
'level' => 'info' , // 日志级别: debug, info, warning, error
'max_file_size' => 10 * 1024 * 1024 , // 最大日志文件大小( 10MB)
],
// 邮箱配置
'mailbox' => [
'max_size' => 100 * 1024 * 1024 , // 最大邮箱大小( 100MB)
],
];