mirror of
https://github.com/decke/smtprelay.git
synced 2026-04-25 04:45:52 +03:00
[GH-ISSUE #89] i cant seem to use "#" <- this kind of special ascii character as password. #19
Labels
No labels
bug
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/smtprelay#19
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @hiqsociety on GitHub (Oct 9, 2022).
Original GitHub issue: https://github.com/decke/smtprelay/issues/89
error parsing url: 'starttls://abc@example.com:587': parse "starttls://abc@example.com:ofy#": invalid port ...
@decke commented on GitHub (Oct 10, 2022):
Cannot reproduce. You seem to use an invalid format. Format is:
protocol://[user[:password]@][netloc][:port][/remote_sender][?param1=value1&...]
so it should be:
starttls://abc:ofy#@example.com:587
@hiqsociety commented on GitHub (Oct 10, 2022):
can you try this? i think there's an issue with the pipe "|" character etc. the below are the characters used as legit password
remotes = starttls://no-reply@example.com:okf#|Qd&3r%4A]fdy#4@example.com:587
@hiqsociety commented on GitHub (Oct 12, 2022):
hi, any feedback on this?
@decke commented on GitHub (Oct 13, 2022):
We are using Go url.Parse() for this so you can try to urlencode your special characters in the password.
@hiqsociety commented on GitHub (Oct 13, 2022):
ok thx