Sponsor:

Server and Web Integrator
Link:
Kloxo-MR logo
6.5.0 or 7.0.0
Click for "How to install"
Donation/Sponsorship:
Kloxo-MR is open-source.
Donate and or Sponsorship always welcome.
Click to:
Click Here
Please login or register. 2017-11-08, 00:57:55

Author Topic: how to setup mail with ssl kloxo mr 7.0.0  (Read 2805 times)

0 Members and 1 Guest are viewing this topic.

Offline jtaco263

  • Senior Member
  • *
  • Posts: 160
  • Karma: +0/-0
    • View Profile
how to setup mail with ssl kloxo mr 7.0.0
« on: 2016-03-17, 07:28:01 »
hi i have 2 wildcard ssl certificates that my vps provider offers me in the package
the question is how i can activate for using with email?

because gmail notifies:
Gmail notification xxxx.mydomain  did not encrypt this message



to the point:
how i can configure the mail with ssl to get encrypted ?

Online MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,381
  • Karma: +112/-9
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #1 on: 2016-03-17, 07:34:54 »
Qmail already set ssl for you. Above message appear because you are not using ssl/tls for sending/received mail.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline jtaco263

  • Senior Member
  • *
  • Posts: 160
  • Karma: +0/-0
    • View Profile
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #2 on: 2016-03-17, 07:39:19 »
how i can set up?

Online MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,381
  • Karma: +112/-9
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #3 on: 2016-03-17, 07:46:42 »
Use different port send (smtp/submission) and received (pop3/imap4).
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline jtaco263

  • Senior Member
  • *
  • Posts: 160
  • Karma: +0/-0
    • View Profile
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #4 on: 2016-03-17, 07:49:35 »
sorry i dont understand how im using roundcube

Offline jtaco263

  • Senior Member
  • *
  • Posts: 160
  • Karma: +0/-0
    • View Profile
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #5 on: 2016-03-17, 07:58:40 »
i tried using 465 ssl with outlook but still showing the non-encryption message

Online MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,381
  • Karma: +112/-9
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #6 on: 2016-03-17, 08:04:20 »
In Thunderbird, select 'ssl/tls' for 'connection security'.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline jtaco263

  • Senior Member
  • *
  • Posts: 160
  • Karma: +0/-0
    • View Profile
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #7 on: 2016-03-17, 08:08:36 »
and for roundcube?

Online MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,381
  • Karma: +112/-9
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #8 on: 2016-03-17, 08:15:43 »
Investigate '/home/kloxo/httpd/webmail/roundcube/config/config.inc.php'.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline jtaco263

  • Senior Member
  • *
  • Posts: 160
  • Karma: +0/-0
    • View Profile
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #9 on: 2016-03-17, 08:41:16 »
i edited but still non-encrypted



Code: [Select]
// ----------------------------------
// 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 - hostname ($_SERVER['SERVER_NAME'])
// %t - hostname without the first part
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
// %z - IMAP domain (IMAP hostname without the first part)
// For example %n = mail.domain.tld, %t = domain.tld
$rcmail_config['smtp_server'] = 'ssl://%n';

// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
// deprecated SSL over SMTP (aka SMTPS))
$rcmail_config['smtp_port'] = 465;

// SMTP username (if required) if you use %u as the username Roundcube
// will use the current username for login
$rcmail_config['smtp_user'] = '%u';

// SMTP password (if required) if you use %p as the password Roundcube
// will use the current user's password for login
$rcmail_config['smtp_pass'] = '%p';

this is the code in main.inc.php

Online MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,381
  • Karma: +112/-9
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #10 on: 2016-03-17, 08:55:23 »
config.inc.php!
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline jtaco263

  • Senior Member
  • *
  • Posts: 160
  • Karma: +0/-0
    • View Profile
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #11 on: 2016-03-17, 08:58:30 »
i only have config.inc.php.sample


Online MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,381
  • Karma: +112/-9
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #12 on: 2016-03-17, 16:07:47 »
Did you run 'sh /script/cleanup' or 'sh /script/setup-roundcube'?.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline jtaco263

  • Senior Member
  • *
  • Posts: 160
  • Karma: +0/-0
    • View Profile
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #13 on: 2016-03-17, 20:46:09 »
no,what thats for?

Online MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,381
  • Karma: +112/-9
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: how to setup mail with ssl kloxo mr 7.0.0
« Reply #14 on: 2016-03-17, 22:00:30 »
Copy config.inc.php.sample to config.inc.php and then modified it.

Kloxo-MR 7.0 have setup-roundcube.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

 


MRatWork Affiliates:    BIGRAF(R) Inc.    House of LMAR    EFARgrafix
Click Here

Page created in 0.051 seconds with 18 queries.

web stats analysis
 
Mirror created by MasterkinG32.CoM