Code: Select all
(print (POP3:get-mail-status ""user" "password" "my-isp.com"))
Code: Select all
(print (POP3:get-mail-status ""user" "password" "my-isp.com"))
--!hotcore wrote:I don't know anything about that library, but there is a syntax error in your statement: unbalanced double quotes. Maybe that is the problem?
/Arie
Code: Select all
:old code
(net-confirm-request)
(net-receive socket status 256)
;change to
(net-confirm-request)
;add follow code
(if (and (net-receive socket status 256) (= " " status))
(net-receive socket status 256)
status
)
;With a separate macro
(define-macro (net-receive_blank int_socket sym-buffer max-bytes wait-string)
(letex (int_socket (eval int_socket)
sym-buffer sym-buffer
max-bytes max-bytes
)
(if (and (net-receive int_socket sym-buffer max-bytes) (= " " sym-buffer))
(net-receive int_socket sym-buffer max-bytes)
)
)
)