[Openmcl-devel] cl-smtp error

Ralf Stoye stoye at stoye.com
Mon Feb 26 03:58:56 PST 2018


> (cl-smtp:send-email "localhost” “m_klein at mit.edu" "m_klein at mit.edu” “subject" “message")
>> Error: Error #<USOCKET:CONNECTION-REFUSED-ERROR #x302018F9D84D>
>> While executing: USOCKET::RAISE-ERROR-FROM-ID, in process Listener-6(3866).

you get this using a "wrong" port:
? (cl-smtp:send-email  "10.44.1.250" "anything at anywhere.de"
"rs at housenet" "important message" "this is the message" :port 66)
> Error: Error #<USOCKET:CONNECTION-REFUSED-ERROR #x302001BED8AD>
> While executing: USOCKET::RAISE-ERROR-FROM-ID, in process listener(1).

;; trying wrong ip:
? (cl-smtp:send-email "10.44.1.249" "anything at anywhere.de" "rs at housenet"
"important message" "this is the message")
> Error: Error #<USOCKET:TIMEOUT-ERROR #x302001BFD16D>
> While executing: USOCKET::RAISE-ERROR-FROM-ID, in process listener(1).

;; finally send this mail... (ip & port fits) :-)
;; no need to give :port argument, just to illustrate...
? (cl-smtp:send-email  "10.44.1.250" "anything at anywhere.de"
"rs at housenet" "important message" "this is the message" :port 25)
("2.0.0 Bye")







More information about the Openmcl-devel mailing list