Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Adam Krupicka
cl-smtp
Commits
b4be603f
Commit
b4be603f
authored
Jan 28, 2014
by
Jan Idzikowski
Browse files
Add patch for converted username and password to base64 string,
ignore default wrap columns 80, so that no newline is inserted.
parent
1222bb14
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
b4be603f
Version 20140128.1
2014.01.28
Add patch for converted username and password to base64 string,
ignore default wrap columns 80, so that no newline is inserted.
Thanks Helmut G. Enders for the bug report and patch
Change cl-smtp.asd, cl-smtp.lisp, CHANGELOG
Version 20131218.1
2013.12.18
Add patch convert bare LF into CRLF in rfc2045-q-encode-string-to-stream
...
...
cl-smtp.asd
View file @
b4be603f
...
...
@@ -17,7 +17,7 @@
;;; Description: cl-smtp ASDF system definition file
(
asdf:defsystem
:cl-smtp
:version
"201
3
12
1
8.1"
:version
"201
40
128.1"
:perform
(
load-op
:after
(
op
webpage
)
(
pushnew
:cl-smtp
cl:*features*
))
:depends-on
(
:usocket
...
...
cl-smtp.lisp
View file @
b4be603f
...
...
@@ -297,14 +297,15 @@
(
format
nil
"~A~C~A~C~A"
username
#\null
username
#\null
password
)))
#\null
password
)
:columns
nil
))
235
))
((
search
" LOGIN"
server-authentication
:test
#'
equal
)
(
smtp-command
stream
"AUTH LOGIN"
334
)
(
smtp-command
stream
(
string-to-base64-string
username
)
(
smtp-command
stream
(
string-to-base64-string
username
:columns
nil
)
334
)
(
smtp-command
stream
(
string-to-base64-string
password
)
(
smtp-command
stream
(
string-to-base64-string
password
:columns
nil
)
235
))
(
t
(
error
'no-supported-authentication-method
:features
features
))))))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment