On Saturday 23 May 2009 10:15:41 Sthu Pous wrote: > Nice to see You here, Mouss! Thank You for Your time and answer, again: > > Instead of this, use the 3d option: "Use the STARTTLS command ..." > > > > STARTTLS is the standard method for doing SSL/TLS in ESMTP. > > Ok. So I've done and here what I see: > > . Client's part: > > [14:59:19] SMTP< 220 The eMail Service > [14:59:19] ESMTP> EHLO localhost > [14:59:20] ESMTP< 250-myhost.org > [14:59:20] ESMTP< 250-PIPELINING > [14:59:20] ESMTP< 250-SIZE 30720000 > [14:59:20] ESMTP< 250-VRFY > [14:59:20] ESMTP< 250-ETRN > [14:59:20] ESMTP< 250-AUTH PLAIN LOGIN > [14:59:20] ESMTP< 250-AUTH=PLAIN LOGIN > [14:59:20] ESMTP< 250-ENHANCEDSTATUSCODES > [14:59:20] ESMTP< 250-8BITMIME > [14:59:20] ESMTP< 250 DSN > [14:59:20] ESMTP> STARTTLS > [14:59:21] ESMTP< 502 5.5.1 Error: command not implemented > ** error occurred on SMTP session > *** Error occurred while sending the message: > 502 5.5.1 Error: command not implemented
Amazingly this thread has moved in a totally strange direction (or I overlook s.th. and I make a fool of myself). The server does not advertise STARTTLS, so "command not implemented" is a correct response. You didn't have TLS enabled in the config you posted. You need to put "smtpd_tls_security_level = may" (or =encrypt) in main.cf or in the smtpd service definition in master.cf. You also need to configure the certificate and key files. See TLS_README in the postfix documentation. Rainer