mind that my openssl is the latest.
The major version on redhat systems is not as important as minor. And these builds often include latests patches of major versions from the vendor.
[neptune@neptune ~]$ rpm -q --info openssl
Name : openssl Relocations: (not relocatable)
Version : 0.9.7a Vendor: Red Hat, Inc.
Release : 42.1 Build Date: Fri 20 May 2005 07:18:47 PM MSD
Install Date: Sat 21 May 2005 11:50:41 PM MSD Build Host: bugs.build.redhat.com
Group : System Environment/Libraries Source RPM: openssl-0.9.7a-42.1.src.rpm
Size : 2564531 License: BSDish
Signature : DSA/SHA1, Fri 20 May 2005 08:00:44 PM MSD, Key ID b44269d04f2a6fd2
Packager : Red Hat, Inc. <
http://bugzilla.redhat.com/bugzilla>
URL :
http://www.openssl.org/
Summary : The OpenSSL toolkit.
Description :
The OpenSSL toolkit provides support for secure communications between
machines. OpenSSL includes a certificate management tool and shared
libraries which provide various cryptographic algorithms and
protocols.
[neptune@neptune ~]$ rpm -q --info postfix
Name : postfix Relocations: (not relocatable)
Version : 2.1.5 Vendor: Red Hat, Inc.
Release : 5 Build Date: Fri 11 Feb 2005 04:56:09 PM MSK
Install Date: Sun 20 Mar 2005 07:12:47 PM MSK Build Host: bugs.build.redhat.com
Group : System Environment/Daemons Source RPM: postfix-2.1.5-5.src.rpm
Size : 6394469 License: IBM Public License
Signature : DSA/SHA1, Wed 16 Mar 2005 08:38:14 PM MSK, Key ID b44269d04f2a6fd2
Packager : Red Hat, Inc. <
http://bugzilla.redhat.com/bugzilla>
URL :
http://www.postfix.org
Summary : Postfix Mail Transport Agent
Description :
Postfix is a Mail Transport Agent (MTA), supporting LDAP, SMTP AUTH (SASL),
TLS and running in a chroot environment.
sure
[neptune@neptune ~]$ /usr/sbin/postconf -n
alias_maps = hash:/etc/aliases
command_directory = /usr/sbin
config_directory = /etc/postfix
daemon_directory = /usr/libexec/postfix
default_transport = smtp
delay_warning_time = 1m
html_directory = /usr/share/doc/postfix-2.1.5/html
mail_owner = postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
mydestination = $myhostname, localhost
mydomain = degunino.net
myhostname = neptune.degunino.net
mynetworks = 127.0.0.0/8
mynetworks_style = host
myorigin = neptune.degunino.net
newaliases_path = /usr/bin/newaliases.postfix
owner_request_special = no
queue_directory = /var/spool/postfix
readme_directory = /usr/share/doc/postfix-2.1.5/README_FILES
recipient_delimiter = +
relayhost = smtp.gmail.com
sample_directory = /usr/share/doc/postfix-2.1.5/samples
sender_canonical_maps = hash:/etc/postfix/sender_canonical
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
smtp_sasl_security_options =
smtp_tls_CAfile = /etc/postfix/certs/ca.crt
smtp_tls_cert_file = /etc/httpd/conf/ssl.crt/server.crt
smtp_tls_key_file = /etc/httpd/conf/ssl.key/server.key
smtp_use_tls = yes
smtpd_banner = $myhostname ESMTP $mail_name ($mail_version) (Fedora Linux)
smtpd_tls_CAfile = /etc/postfix/certs/ca.crt
smtpd_tls_auth_only = yes
smtpd_tls_cert_file = /etc/httpd/conf/ssl.crt/server.crt
smtpd_tls_key_file = /etc/httpd/conf/ssl.key/server.key
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
smtpd_use_tls = yes
tls_random_source = dev:/dev/urandom
unknown_local_recipient_reject_code = 450
[neptune@neptune ~]$ cat /etc/postfix/sasl_passwd
smtp.gmail.com
neptune.bot@gmail.com:PASSWORD
[neptune@neptune ~]$ cat /etc/postfix/sender_canonical
neptune.bot
neptune.bot@gmail.com
[neptune@neptune ~]$ ldd /usr/sbin/postfix
libldap-2.2.so.7 => /usr/lib/libldap-2.2.so.7 (0xb7f89000)
liblber-2.2.so.7 => /usr/lib/liblber-2.2.so.7 (0xb7f7d000)
libpcre.so.0 => /lib/libpcre.so.0 (0xb7f6b000)
libsasl2.so.2 => /usr/lib/libsasl2.so.2 (0xb7f57000)
libssl.so.4 => /lib/libssl.so.4 (0xb7f23000)
libcrypto.so.4 => /lib/libcrypto.so.4 (0xb7e3a000)
libgssapi_krb5.so.2 => /usr/lib/libgssapi_krb5.so.2 (0xb7e26000)
libkrb5.so.3 => /usr/lib/libkrb5.so.3 (0xb7dc1000)
libcom_err.so.2 => /lib/libcom_err.so.2 (0xb7dbd000)
libk5crypto.so.3 => /usr/lib/libk5crypto.so.3 (0xb7d9c000)
libresolv.so.2 => /lib/libresolv.so.2 (0xb7d88000)
libdl.so.2 => /lib/libdl.so.2 (0xb7d84000)
libz.so.1 => /usr/lib/libz.so.1 (0xb7d74000)
libdb-4.2.so => /lib/tls/i686/libdb-4.2.so (0xb7ca6000)
libnsl.so.1 => /lib/libnsl.so.1 (0xb7c8f000)
libc.so.6 => /lib/tls/libc.so.6 (0xb7b65000)
libcrypt.so.1 => /lib/libcrypt.so.1 (0xb7b37000)
/lib/ld-linux.so.2 (0xb7fd8000)
libpthread.so.0 => /lib/tls/libpthread.so.0 (0xb7b25000)
Good luck