Koozali.org: home of the SME Server

Disabling SSMTP Certificate Validation

Offline schlagg

  • *
  • 12
  • +0/-0
Disabling SSMTP Certificate Validation
« on: January 25, 2009, 07:30:09 PM »
Hi,

i've some troubles since my SME certificate regenerate,

so i'm looking for a way to disable the SSL connexion to SSMTP protocol

i want to use my SME as an external SMTP server without the request of a certificate, but only using login/password authentification

Thanks,

bye ..

Offline cactus

  • *
  • 4,880
  • +3/-0
    • http://www.snetram.nl
Re: Disabling SSMTP Certificate Validation
« Reply #1 on: January 25, 2009, 07:49:13 PM »
Hi,

i've some troubles since my SME certificate regenerate,

so i'm looking for a way to disable the SSL connexion to SSMTP protocol

i want to use my SME as an external SMTP server without the request of a certificate, but only using login/password authentification

Thanks,

bye ..
Then you should use SMTP, drawback will be that traffic is not encrypted and that username and password travel over the line in plain text.
Be careful whose advice you buy, but be patient with those who supply it. Advice is a form of nostalgia, dispensing it is a way of fishing the past from the disposal, wiping it off, painting over the ugly parts and recycling it for more than its worth ~ Baz Luhrmann - Everybody's Free (To Wear Sunscreen)

Offline schlagg

  • *
  • 12
  • +0/-0
Re: Disabling SSMTP Certificate Validation
« Reply #2 on: January 25, 2009, 09:59:51 PM »
Then you should use SMTP, drawback will be that traffic is not encrypted and that username and password travel over the line in plain text.

hi

thanks for your answers

how can i use smtp?
in the server-manager, in Athentification SMTP i can only choose 'Use Only SSMTP (secure) private and public access'
if i choose 'Not activated', then i cannot use the SMTP server on an external network

is there a method for what i want?

EDIT
i found how the disable SSL for IMAP and POP but none for SMTP  :???:


Thanks again  ,
bye
« Last Edit: January 25, 2009, 10:40:52 PM by schlagg »

Offline yythoss

  • *
  • 532
  • +0/-0
    • http://www.hylafax-client.de
Re: Disabling SSMTP Certificate Validation
« Reply #3 on: January 25, 2009, 10:54:16 PM »
You can enable smtpd in the Server-Manager with this command:

Code: [Select]
db configuration setprop smtpd access public
/sbin/e-smith/signal-event email-update


yythoss


Offline schlagg

  • *
  • 12
  • +0/-0
Re: Disabling SSMTP Certificate Validation
« Reply #4 on: January 25, 2009, 11:02:35 PM »
You can enable smtpd in the Server-Manager with this command:

Code: [Select]
db configuration setprop smtpd access public
/sbin/e-smith/signal-event email-update


yythoss

hi, thanks to you

i did the command, but found nothing in the server-manager
where do i found the smtpd configuration?

bye

Offline yythoss

  • *
  • 532
  • +0/-0
    • http://www.hylafax-client.de
Re: Disabling SSMTP Certificate Validation
« Reply #5 on: January 25, 2009, 11:12:45 PM »
You find it in the server-manager:

configuration/email

and then the third menu.

What you want to do. It is very danger to open the port 25.
« Last Edit: January 25, 2009, 11:15:12 PM by yythoss »

Offline schlagg

  • *
  • 12
  • +0/-0
Re: Disabling SSMTP Certificate Validation
« Reply #6 on: January 25, 2009, 11:23:15 PM »
thanks again,

but i checked and nothing wad changed
in configuration/mail, i've :

- change mail access
** pop3 and pop3s
** imap and imaps
** https

- filters

- mail reception
** mail recovery : standar (smtp) or ETRN or Multipoint
** smtp authentification : disabled or SMTP over SSL


now its configured with standard mail recovery and smtph auth disabled, and client always needs to use SSL

i know its dangerous, but i've some application which needs this and until i fix another problem, i need to disable SMTP SSL

thanks again
« Last Edit: January 25, 2009, 11:25:57 PM by schlagg »

Offline yythoss

  • *
  • 532
  • +0/-0
    • http://www.hylafax-client.de
Re: Disabling SSMTP Certificate Validation
« Reply #7 on: January 25, 2009, 11:29:41 PM »
You need:

Code: [Select]
Enable SMTP and SSMTP over SSL
whst show this command on your server:

Code: [Select]
db configuration show smtpd

Offline schlagg

  • *
  • 12
  • +0/-0
Re: Disabling SSMTP Certificate Validation
« Reply #8 on: January 25, 2009, 11:47:35 PM »
this :
Code: [Select]
db configuration show smtpd
smtpd=service
    Authentication=disabled
    Instances=40
    InstancesPerIP=5
    MaximumDateOffset=0
    PatternsScan=enabled
    Proxy=disabled
    TCPPort=25
    TCPProxyPort=25
    VirusScan=enabled
    access=public
    status=enabled
    tnef2mime=enabled

Quote
You need:

Code: [Select]
Enable SMTP and SSMTP over SSL

don't have this option, only SSMTP

Offline yythoss

  • *
  • 532
  • +0/-0
    • http://www.hylafax-client.de
Re: Disabling SSMTP Certificate Validation
« Reply #9 on: January 25, 2009, 11:54:26 PM »
Look at my config:

smtpd=service
    Authentication=enabled
    Instances=40
    InstancesPerIP=5
    MaximumDateOffset=0
    PatternsScan=disabled
    Proxy=enabled
    TCPPort=25
    TCPProxyPort=25
    VirusScan=enabled
    access=public
    status=enabled
    tnef2mime=enabled


You can enable the fields with this command:


db configuration setprop smtpd FIELDNAME VALUE

Then don't forget

signal-event post-upgrade
signal-event reboot


If you have a router on your Network, you must open and forward the port 25 to your sme server!
« Last Edit: January 25, 2009, 11:56:37 PM by yythoss »

Offline schlagg

  • *
  • 12
  • +0/-0
Re: Disabling SSMTP Certificate Validation
« Reply #10 on: January 26, 2009, 11:53:39 AM »
Hi

thanks very much

now it work, SMTP for external network is enabled ....


bye ;)