using a ftp user name that contains the "@" character

Asked by Mihai Chezan

Hi,

I'm trying to use ftp as a central repository for bazaar. The problem is that the ftp user name is like "xxx@yyy". If I try:
bzr init ftp://xxx@<email address hidden>/repo/trunk
it doesn't work.
How can I specify the user name for the ftp account when the user name contains the "@" character?

Question information

Language:
English Edit question
Status:
Solved
For:
Bazaar Edit question
Assignee:
No assignee Edit question
Solved by:
John A Meinel
Solved:
Last query:
Last reply:
Revision history for this message
Best John A Meinel (jameinel) said :
#1

Either use a newer bzr version, or escape the @ as %40 so you would use "ftp://xxx%<email address hidden>"

Newer versions of bzr should do the right thing and only break out the last @

Revision history for this message
Mihai Chezan (mihai-chezan) said :
#2

Thanks John A Meinel, that solved my question.