Question

Can't solve Postfix SMTP/TLS problems

Asked by: ktwdallas

Okay, I'm really at the end of my rope here. I have a mail server that I have set up which was supposed to be copy of a working machine. This machine runs Dovecot as a mail server and Postfix as an SMTP server. I use MySQL for the account information (and postfixadmin to administer).

The email server (IMAP) works, and I can receive email from the outside just fine. Anyone emails my address, I get the email. What is NOT working is using the server as my outbound SMTP server.

I am using a non-standard port, 2525 to send out, with authentication (obviously so it's not an open relay) and I have an SSL certificate, the same one as my web server.

When I attempt to send, it just times out. No specific error message, just seems to go nowhere and eventually on my mail client (Mac Mail.app in this case) it just comes back with a "can't send".

I can telnet to the server (telnet www.eightounce.com 2525) and it will respond, but then closes the connection when I do a test with ehlo. Files and logs below. I'm baffled. I do see TLS errors in the log file, but I don't know how to start to fix them.

main.cf
 
 
# postfix config file eightounce.com
 
# uncomment for debugging if needed
soft_bounce=no
 
# postfix main
mail_owner = postfix
setgid_group = postdrop
delay_warning_time = 4
 
# postfix paths
html_directory = no
command_directory = /usr/sbin
daemon_directory = /usr/libexec/postfix
queue_directory = /var/spool/postfix
sendmail_path = /usr/sbin/sendmail.postfix
newaliases_path = /usr/bin/newaliases.postfix
mailq_path = /usr/bin/mailq.postfix
manpage_directory = /usr/share/man
sample_directory = /usr/share/doc/postfix-2.2.2/samples
readme_directory = /usr/share/doc/postfix-2.2.2/README_FILES
 
# network settings
inet_interfaces = all
mydomain = eightounce.com
myhostname = server1.$mydomain
mynetworks = 192.168.0.0/16,
	216.19.0.0/16,
        127.0.0.0/8
mydestination = $myhostname, localhost.$mydomain
#relay_domains = $mydestination
 
#######Changes for MAILMAN
#relay_domains = $mydestination,eightounce.com
#transport_maps = hash:/etc/postfix/transport 
 
message_size_limit = 40960000
 
 
#mailman_destination_recipient_limit = 1
 
# mail delivery
recipient_delimiter = + 
 
# mappings
alias_database = hash:/etc/postfix/aliases
alias_maps = hash:/etc/aliases,hash:/etc/postfix/aliases
 
local_recipient_maps = $alias_maps 
 
# virtual setup
virtual_alias_domains = hash:/etc/postfix/virtual_domains
virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
 
 
 
virtual_gid_maps = static:89
virtual_mailbox_base = /home/vmail
virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_mailbox_domains.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_minimum_uid = 89
virtual_transport = virtual
virtual_uid_maps = static:89
 
# debugging
#debug_peer_level = 1
#debug_peer_list = 127.0.0.1
#debugger_command =
#         PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
#         xxgdb $daemon_directory/$process_name $process_id & sleep 5
 
#rules restrictions
smtpd_client_restrictions =
        permit_sasl_authenticated,
        permit_mynetworks,
        reject_unknown_client_hostname
smtpd_helo_required = yes
smtpd_helo_restrictions =
        permit_sasl_authenticated,
        permit_mynetworks,
        reject_non_fqdn_hostname
 
smtpd_sender_restrictions =
        reject_non_fqdn_sender,
        reject_unknown_sender_domain
 
smtpd_recipient_restrictions =
        permit_sasl_authenticated,
        permit_mynetworks,
        reject_unauth_destination,
        reject_non_fqdn_recipient,
        reject_unknown_recipient_domain
 
# authentication
smtpd_use_tls = yes
 
smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain = $myhostname
broken_sasl_auth_clients = yes
#smtpd_sasl_type = dovecot
#smtpd_sasl_path = private/auth
smtpd_sasl_type = cyrus
smtpd_sasl_path = smtpd
smtpd_sasl_authenticated_header = yes
smtp_sasl_mechanism_filter = login, plain
 
# tls config
smtpd_tls_auth_only = no
smtp_tls_note_starttls_offer =yes
smtp_use_tls = yes
smtpd_use_tls = yes
 
 
smtpd_tls_cert_file = /etc/ssl/eightounce.crt
smtpd_tls_key_file = /etc/ssl/eightounce.key
smtpd_tls_CAfile = /etc/ssl/bundle.crt
 
smtpd_tls_loglevel = 3
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
smtpd_tls_received_header = no
tls_random_source = dev:/dev/urandom
 
unknown_local_recipient_reject_code = 550
disable_vrfy_command = yes
smtpd_data_restrictions = reject_unauth_pipelining
 
 
master.cf
 
smtp      inet  n       -       n       -       -       smtpd 
smtps     inet  n       -       n       -       -       smtpd -v
	 -o smtpd_sasl_auth_enable=yes
	 -o smtpd_enforce_tls=yes
	 -o smtpd_tls_wrappermode=yes
submission inet n       -       n       -       -       smtpd -v
	 -o smtpd_sasl_auth_enable=yes
	 -o smtpd_enforce_tls=yes
2525     inet   n       -       n       -       -       smtpd -v
	 -o smtpd_sasl_auth_enable=yes
	 -o smtpd_enforce_tls=yes
	 -o smtpd_tls_wrappermode=yes
#628      inet  n       -       n       -       -       qmqpd
pickup    fifo  n       -       n       60      1       pickup
  -o content_filter= 
  -o receive_override_options=no_header_body_checks
cleanup   unix  n       -       n       -       0       cleanup
qmgr      fifo  n       -       n       300     1       qmgr
#qmgr     fifo  n       -       n       300     1       oqmgr
tlsmgr    unix  -       -       n       1000?   1       tlsmgr
rewrite   unix  -       -       n       -       -       trivial-rewrite
bounce    unix  -       -       n       -       0       bounce
defer     unix  -       -       n       -       0       bounce
trace     unix  -       -       n       -       0       bounce
verify    unix  -       -       n       -       1       verify
flush     unix  n       -       n       1000?   0       flush
proxymap  unix  -       -       n       -       -       proxymap
smtp      unix  -       -       n       -       -       smtp
# When relaying mail as backup MX, disable fallback_relay to avoid MX loops
relay     unix  -       -       n       -       -       smtp
        -o fallback_relay=
#       -o smtp_helo_timeout=5 -o smtp_connect_timeout=5
showq     unix  n       -       n       -       -       showq
error     unix  -       -       n       -       -       error
discard   unix  -       -       n       -       -       discard
local     unix  -       n       n       -       -       local
virtual   unix  -       n       n       -       -       virtual
lmtp      unix  -       -       n       -       -       lmtp
anvil     unix  -       -       n       -       1       anvil
scache    unix  -       -       n       -       1       scache
 
 
maillog (-n200)
 
Jul  4 20:28:27 www postfix/smtpd[20245]: warning: TLS library problem: 20245:error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol:s23_srvr.c:562:
Jul  4 20:28:27 www postfix/smtpd[20245]: match_hostname: S010600226b4ce77a.vc.shawcable.net ~? 192.168.0.0/16
Jul  4 20:28:27 www postfix/smtpd[20245]: match_hostaddr: 96.49.199.117 ~? 192.168.0.0/16
Jul  4 20:28:27 www postfix/smtpd[20245]: match_hostname: S010600226b4ce77a.vc.shawcable.net ~? 216.19.0.0/16
Jul  4 20:28:27 www postfix/smtpd[20245]: match_hostaddr: 96.49.199.117 ~? 216.19.0.0/16
Jul  4 20:28:27 www postfix/smtpd[20245]: match_hostname: S010600226b4ce77a.vc.shawcable.net ~? 127.0.0.0/8
Jul  4 20:28:27 www postfix/smtpd[20245]: match_hostaddr: 96.49.199.117 ~? 127.0.0.0/8
Jul  4 20:28:27 www postfix/smtpd[20245]: match_list_match: S010600226b4ce77a.vc.shawcable.net: no match
Jul  4 20:28:27 www postfix/smtpd[20245]: match_list_match: 96.49.199.117: no match
Jul  4 20:28:27 www postfix/smtpd[20245]: send attr request = disconnect
Jul  4 20:28:27 www postfix/smtpd[20245]: send attr ident = 2525:96.49.199.117
Jul  4 20:28:27 www postfix/smtpd[20245]: private/anvil: wanted attribute: status
Jul  4 20:28:27 www postfix/smtpd[20245]: input attribute name: status
Jul  4 20:28:27 www postfix/smtpd[20245]: input attribute value: 0
Jul  4 20:28:27 www postfix/smtpd[20245]: private/anvil: wanted attribute: (list terminator)
Jul  4 20:28:27 www postfix/smtpd[20245]: input attribute name: (end)
Jul  4 20:28:27 www postfix/smtpd[20245]: lost connection after CONNECT from S010600226b4ce77a.vc.shawcable.net[96.49.199.117]
Jul  4 20:28:27 www postfix/smtpd[20245]: disconnect from S010600226b4ce77a.vc.shawcable.net[96.49.199.117]
Jul  4 20:28:27 www postfix/smtpd[20245]: master_notify: status 1
Jul  4 20:28:27 www postfix/smtpd[20245]: connection closed
Jul  4 20:28:28 www postfix/smtpd[20245]: auto_clnt_close: disconnect private/tlsmgr stream
Jul  4 20:28:43 www postfix/smtpd[20245]: connection established
Jul  4 20:28:43 www postfix/smtpd[20245]: master_notify: status 0
Jul  4 20:28:43 www postfix/smtpd[20245]: name_mask: resource
Jul  4 20:28:43 www postfix/smtpd[20245]: name_mask: software
Jul  4 20:28:43 www postfix/smtpd[20245]: xsasl_cyrus_server_create: SASL service=smtp, realm=server1.eightounce.com
Jul  4 20:28:43 www postfix/smtpd[20245]: name_mask: noanonymous
Jul  4 20:28:43 www postfix/smtpd[20245]: connect from localhost[127.0.0.1]
Jul  4 20:28:43 www postfix/smtpd[20245]: match_list_match: localhost: no match
Jul  4 20:28:43 www postfix/smtpd[20245]: match_list_match: 127.0.0.1: no match
Jul  4 20:28:43 www postfix/smtpd[20245]: match_list_match: localhost: no match
Jul  4 20:28:43 www postfix/smtpd[20245]: match_list_match: 127.0.0.1: no match
Jul  4 20:28:43 www postfix/smtpd[20245]: setting up TLS connection from localhost[127.0.0.1]
Jul  4 20:28:43 www postfix/smtpd[20245]: localhost[127.0.0.1]: TLS cipher list "ALL:!EXPORT:!LOW:+RC4:@STRENGTH"
Jul  4 20:28:43 www postfix/smtpd[20245]: auto_clnt_open: connected to private/tlsmgr
Jul  4 20:28:43 www postfix/smtpd[20245]: send attr request = seed
Jul  4 20:28:43 www postfix/smtpd[20245]: send attr size = 32
Jul  4 20:28:43 www postfix/smtpd[20245]: private/tlsmgr: wanted attribute: status
Jul  4 20:28:43 www postfix/smtpd[20245]: input attribute name: status
Jul  4 20:28:43 www postfix/smtpd[20245]: input attribute value: 0
Jul  4 20:28:43 www postfix/smtpd[20245]: private/tlsmgr: wanted attribute: seed
Jul  4 20:28:43 www postfix/smtpd[20245]: input attribute name: seed
Jul  4 20:28:43 www postfix/smtpd[20245]: input attribute value: daRlRjHOPU7GEqT4AAE2vPZgUd6lVsb/OFN8FYfwCUQ=
Jul  4 20:28:43 www postfix/smtpd[20245]: private/tlsmgr: wanted attribute: (list terminator)
Jul  4 20:28:43 www postfix/smtpd[20245]: input attribute name: (end)
Jul  4 20:28:43 www postfix/smtpd[20245]: SSL_accept:before/accept initialization
Jul  4 20:28:43 www postfix/smtpd[20245]: read from 004B4CE0 [004C21F8] (11 bytes => -1 (0xFFFFFFFF))
Jul  4 20:28:44 www postfix/smtpd[20245]: read from 004B4CE0 [004C21F8] (11 bytes => 11 (0xB))
Jul  4 20:28:44 www postfix/smtpd[20245]: 0000 65 68 6c 6f 20 6c 6f 63|61 6c 68                 ehlo loc alh
Jul  4 20:28:44 www postfix/smtpd[20245]: SSL_accept:error in SSLv2/v3 read client hello A
Jul  4 20:28:44 www postfix/smtpd[20245]: SSL_accept error from localhost[127.0.0.1]: -1
Jul  4 20:28:44 www postfix/smtpd[20245]: warning: TLS library problem: 20245:error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol:s23_srvr.c:562:
Jul  4 20:28:44 www postfix/smtpd[20245]: match_hostname: localhost ~? 192.168.0.0/16
Jul  4 20:28:44 www postfix/smtpd[20245]: match_hostaddr: 127.0.0.1 ~? 192.168.0.0/16
Jul  4 20:28:44 www postfix/smtpd[20245]: match_hostname: localhost ~? 216.19.0.0/16
Jul  4 20:28:44 www postfix/smtpd[20245]: match_hostaddr: 127.0.0.1 ~? 216.19.0.0/16
Jul  4 20:28:44 www postfix/smtpd[20245]: match_hostname: localhost ~? 127.0.0.0/8
Jul  4 20:28:44 www postfix/smtpd[20245]: match_hostaddr: 127.0.0.1 ~? 127.0.0.0/8
Jul  4 20:28:44 www postfix/smtpd[20245]: lost connection after CONNECT from localhost[127.0.0.1]
Jul  4 20:28:44 www postfix/smtpd[20245]: disconnect from localhost[127.0.0.1]
Jul  4 20:28:44 www postfix/smtpd[20245]: master_notify: status 1
Jul  4 20:28:44 www postfix/smtpd[20245]: connection closed
Jul  4 20:28:48 www postfix/smtpd[20245]: auto_clnt_close: disconnect private/tlsmgr stream
Jul  4 20:29:13 www postfix/smtpd[20285]: warning: database /etc/aliases.db is older than source file /etc/aliases
Jul  4 20:29:13 www postfix/smtpd[20285]: initializing the server-side TLS engine
Jul  4 20:29:13 www postfix/smtpd[20285]: connect from k2smtpout01-01.prod.mesa1.secureserver.net[64.202.189.88]
Jul  4 20:29:13 www postfix/smtpd[20285]: DF7E7412001: client=k2smtpout01-01.prod.mesa1.secureserver.net[64.202.189.88]
Jul  4 20:29:13 www postfix/cleanup[20289]: DF7E7412001: message-id=<2703D51A-BE39-4C17-9AEF-FEFDB236BB2E@eightounce.com>
Jul  4 20:29:14 www postfix/qmgr[6302]: DF7E7412001: from=<kris.white@eightounce.com>, size=1147, nrcpt=1 (queue active)
Jul  4 20:29:14 www postfix/smtpd[20285]: disconnect from k2smtpout01-01.prod.mesa1.secureserver.net[64.202.189.88]
Jul  4 20:29:14 www postfix/virtual[20291]: DF7E7412001: to=<kris.white@eightounce.com>, relay=virtual, delay=0.34, delays=0.26/0.01/0/0.07, dsn=2.0.0, status=sent (delivered to maildir)
Jul  4 20:29:14 www postfix/qmgr[6302]: DF7E7412001: removed
Jul  4 20:29:20 www postfix/smtpd[20285]: connect from k2smtpout04-01.prod.mesa1.secureserver.net[64.202.189.166]
Jul  4 20:29:20 www postfix/smtpd[20285]: 857D8412001: client=k2smtpout04-01.prod.mesa1.secureserver.net[64.202.189.166]
Jul  4 20:29:20 www postfix/cleanup[20289]: 857D8412001: message-id=<E9E5686B-A900-4D04-9EED-72C96F5B1184@eightounce.com>
Jul  4 20:29:20 www postfix/qmgr[6302]: 857D8412001: from=<kris.white@eightounce.com>, size=1147, nrcpt=1 (queue active)
Jul  4 20:29:20 www postfix/smtpd[20285]: disconnect from k2smtpout04-01.prod.mesa1.secureserver.net[64.202.189.166]
Jul  4 20:29:20 www postfix/virtual[20291]: 857D8412001: to=<kris.white@eightounce.com>, relay=virtual, delay=0.24, delays=0.19/0/0/0.05, dsn=2.0.0, status=sent (delivered to maildir)
Jul  4 20:29:20 www postfix/qmgr[6302]: 857D8412001: removed
Jul  4 20:30:24 www postfix/smtpd[20245]: idle timeout -- exiting
Jul  4 20:32:40 www postfix/anvil[20246]: statistics: max connection rate 1/60s for (smtp:64.202.189.88) at Jul  4 20:29:13
Jul  4 20:32:40 www postfix/anvil[20246]: statistics: max connection count 1 for (smtp:64.202.189.88) at Jul  4 20:29:13
Jul  4 20:32:40 www postfix/anvil[20246]: statistics: max cache size 2 at Jul  4 20:29:20

                                  
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:

Select allOpen in new window

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2009-07-04 at 20:37:13ID24544452
Tags

postfix smtp mysql TLS error

Topics

Postfix

,

Email Software

,

Linux

Participating Experts
1
Points
500
Comments
5

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. SMTP AUTH using Postfix
    I'm trying to get SMTP AUTH working in Postfix, but I'm not having any success. here is my main.cf file: command_directory = /usr/sbin daemon_directory = /usr/lib/postfix program_directory = /usr/lib/postfix sample_directory = /usr/share/doc/postfix/examples readme_director...
  2. PostFix + MySQL, SMTP Auth Doesn't work??
    I have PostFix, Courier, Squirrel, MySQL installed, everything is running great except SMTP Authentication. My webmail works, people can send email to me, i can send anywhere in the organization, and i can send from squirrel mail to any outside client. However, using Outloo...
  3. Postfix - Relaying
    I currently have a web server configured with Apache, BIND, Postfix, VM-Pop3d and all that wizzwozz and have just successfully got Postfix working correctly with pop-before-smtp (PERL), i'm having trouble with relaying though. I have a list of IP Addresses and domain names w...
  4. Postfix SMTP Authentication with vm-pop3d
    Hi, I have just recently setup fedora core 4 with postfix installed. I have also installed vm-pop3d for multiple domains support. I just realised that the newly setup would need smtp authentication to prevent open relay problem. Does anyone have any suggestions for any smtp ...
  5. Urgent Postfix SMTP not working
    My setup consists of: postfix-2.1.5-2.3.RHEL4.1 dovecot-0.99.11-4.EL4 mysql-4.1.20-1.RHEL4.1 I used the instructions from to configure my server Redhat Fedora Core 4 http://bliki.rimuhosting.com/space/knowledgebase/linux/mail/postfixadmin+on+debian+sarge Please help =======...

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: martino87rPosted on 2009-07-06 at 01:55:56ID: 24783500

Now, first question:

Your machine have a reverse DNS record? To check open a terminal and write:

nslookup [youripaddress]

if no reverse record is found in the dns, then you have to modify the config file to accept connections from host that doesn't have an FQDN

let me know

 

by: martino87rPosted on 2009-07-06 at 02:07:18ID: 24783541

After check if you have the openssl package on your server and check if they match the same version on both machines.
There was a known problem with the Hello extension for OpenSSL during initialization of TLS channels, the suggestion is to get the latest version of OpenSSL and compile it from sources.

 

by: ktwdallasPosted on 2009-07-06 at 10:23:23ID: 24787307

Reverse lookup is working, it shows the ISP instead of my domain but it is working (below). OpenSSL is actually newer (0.9.8g) on the machine that's not working than on the original I coped from (0.9.8b) that is working.


Server:            216.19.176.6
Address:      216.19.176.6#53

Non-authoritative answer:
53.176.19.216.in-addr.arpa      name = 216-19-176-53.stc.novuscom.net.

Authoritative answers can be found from:
176.19.216.in-addr.arpa      nameserver = ns1.novuscom.net.
176.19.216.in-addr.arpa      nameserver = ns2.novuscom.net.
ns1.novuscom.net      internet address = 216.19.176.13
ns2.novuscom.net      internet address = 216.19.176.16

 

by: martino87rPosted on 2009-07-07 at 08:01:07ID: 24794825

Clearly seems to be a problem with the OpenSSL library, try to get it and recompile it entirely from sources.

Update to version 9.8K or try the beta 1.0.0

This is why i think so:

(Jul  4 20:28:27 www postfix/smtpd[20245]: warning: TLS library problem: 20245:error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol:s23_srvr.c:562:)


 

by: ktwdallasPosted on 2009-07-07 at 21:45:01ID: 31599865

looks like a "yum install openssl" did an update and that worked. Thank you much.

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...