Flare0n
Flare0n

Reputation: 95

Are these valid email addresses?

I found this samples of URL and email address, and found these.

1. [email protected]/test/
2. user:[email protected]
3. user:[email protected]/test/index.html

Are these valid(possible) email addresses?

Upvotes: 1

Views: 154

Answers (2)

Taemyr
Taemyr

Reputation: 3437

The addresses are illegal.

The local part of an email adress can not contain : except in a quoted part.

The domainname has to be a valid hostname, and as such can not include directory.

As idipous notes the linked page does not indicate that these should be interpreted as email adresses.

Upvotes: 0

idipous
idipous

Reputation: 2910

These are not email addresses. These are ssh connection statements or http connections or with no protocol at all pointing to a particular directory on the server. For example if you want to use scp you write something like

scp test.txt user@myhost:/dirtocopyto

Upvotes: 1

Related Questions