Translations:คู่มือการพัฒนา EAI Mail Server บน CentOS 8/112/en

จาก Wiki_EAI
รุ่นแก้ไขเมื่อ 14:36, 12 กรกฎาคม 2564 โดย Photchanan (คุย | มีส่วนร่วม) (สร้างหน้าด้วย "* Using self-sign SSL may cause Roundcube to not able to connect to the mail server. Additional configurations are needed $config '''# vi /var/www/html/...")
(ต่าง) ←รุ่นแก้ไขก่อนหน้า | รุ่นแก้ไขล่าสุด (ต่าง) | รุ่นแก้ไขถัดไป→ (ต่าง)
ไปยังการนำทาง ไปยังการค้นหา
  • Using self-sign SSL may cause Roundcube to not able to connect to the mail server. Additional configurations are needed

$config

# vi /var/www/html/roundcubemail/config/defaults.inc.php
$config['imap_conn_options'] = array(
  'ssl'         => array(
     'verify_peer'      => false,
     'verify_peer_name' => false,
  ),
);
 
$config['smtp_conn_options'] = array(
  'ssl'         => array(
     'verify_peer'      => false,
     'verify_peer_name' => false,
  ),
);