[華語, cmn-Hant-TW]
用 Roundcube 架 Webmail,一般來講只要 imap 跟 smtp 在伺服器端都已經先設定好的話,應該是不會遇到太大的問題,就設定檔填一填值就可以動了,不過嘛… 來看一下 main.inc.php 關於smtp 設定的說明:
// 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 $rcmail_config['smtp_server'] = ''; |
照說明來看,要開啟 SSL 的話應該是打 ssl:// 就可以,不過其實這樣只會吃到錯誤訊息而已,事實上 只有 tls:// 能用,因為 rcube_smtp.php 只會解析 tls:// 開頭的 smtp_server 參數…… 總之,會動就好了。