# File lib/protocols/smtpserver.rb, line 176
176:                 def reset_protocol_state
177:                         init_protocol_state
178:                         s,@state = @state,[]
179:                         @state << :starttls if s.include?(:starttls)
180:                         @state << :ehlo if s.include?(:ehlo)
181:                         receive_transaction
182:                 end