Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

78
votes
4answers
17k views

Maximum length of a valid email address

What is the maximum length of a valid email address? Is it defined by any standard?
19
votes
10answers
998 views

Does e-mail obfuscation really make automatic harvesting harder?

Many users and forum programs in attempt to make automatic e-mail address harversting harder conseal them via obfuscation - @ is replaced with "at" and . is replaced with "dot", so ...
13
votes
8answers
15k views

What characters are allowed in email address?

I'm not asking about full email validation. I just want to know what are allowed characters in user-name and server parts of email address. This may be oversimplified, maybe email adresses can take ...
5
votes
8answers
538 views

May I safely treat email addresses lower case?

In theory emails are case sensitive. But using emails as system login I want them to be all lower case (i.e. john@smith.com and John@smith.com cannot be different users). Can this be a problem for ...
4
votes
1answer
163 views

How many sub-domain are allowed for an Email Id?

How many subdomains are possible for an Email address? For Example: something@something.co.uk.uk like that....
4
votes
9answers
2k views

Test/expand my email regex

I'm really not confident with Regex, I know some basic syntax but not enough to keep me happy. I'm trying to build a regular expression to check if an email is valid. So far here's what I've got: ...
3
votes
4answers
3k views

Regular Expression for domain from email address

Can anyone help me with a regular expression that will return the end part of an email address, after the @ symbol? I'm new to regex, but want to learn how to use it rather than writing inefficient ...
2
votes
3answers
88 views

Remove everything except characters between '<' & '>,' in Vim — extract email addresses from Gmail “To” field

I have a comma-delimited list of email addresses with each actual address prepended by the contact's name (from Gmail). Here's an example: Fred Flintstone <fred@flintstone.org>, Wilma ...
2
votes
4answers
255 views

Extract (multiple) emails from user-input text into the MailAddress format (.NET)

The MailAddress class doesn't provide a way to parse a string with multiple emails. The MailAddressCollection class does, but it only accepts CSV and does not allow commas inside of quotes. I am ...
2
votes
5answers
202 views

Does this e-mail-regex exclude valid addresses?

I tried to create a regular expression which catches all RFC-valid addresses but it's ok if some false-positives come through (though hopefully not so many). This is waht I came up so far: ...
2
votes
3answers
795 views

Convert non-ascii domain to SMTP compatible

When customers enter email addresses with non-ascii chars like äüö our SMTP rejects to process them. So I think might be there is a solution to handle those domains myself and convert them to ...
1
vote
5answers
135 views

Python check for valid email address?

Is there a good way to check a form input using regex to make sure it is a proper style email address? Been searching since last night and everybody that has answered peoples questions regarding this ...
1
vote
2answers
169 views

Do I really need webmaster@domain.com, postmaster@domain.com, etc. emails?

So I know that I should accept mail on postmaster, webmaster, abuse and others to conform with RFC 2142 and others. They seem to rarely/never attract any legitimate email and I almost never list those ...
1
vote
1answer
109 views

how do I trim an email input address so only the data before the @ is inputted into the database?

I am using coldfusion 9 to add data into a MySQL database from a form. I would like to create a username from the email address inputed into the form. for example, <cfset store_user_email = ...
1
vote
7answers
300 views

validate that an email address contains “@” and “.”

i need to validate that an inserted email address contains "@" and "." without a regular expression. Can somebody to give me "java code" and "structure chart" examples please?
1
vote
2answers
199 views

PHP preg_match result

This PHP function working just fine: if (preg_match ("/<(\S+@\S+\w)>.*\n?.*55[0-9]/i",$body,$match)) { echo "found!"; } in This message was created automatically by mail delivery software. ...
1
vote
1answer
46 views

Where is the + in email addresses defined?

I know that email addresses, in the local part (before the @ sign), can include a +. And everything after the + can be used by the email system for filtering and other uses. But the email itself is ...
1
vote
6answers
231 views

In Perl, how can I parse a string that might contain many email addresses to get a list of addresses?

I want to split the a string if it contains ; or ,. For example: $str = "a@a.com;b@b.com,c@c.com;d@d.com;"; The expected result is: result[0]="a@a.com"; result[1]="b@b.com"; result[2]="c@c.com"; ...
1
vote
3answers
491 views

How to write regular expression to match free email accounts?

I'm trying to write a regular expression that checks if an email form field contains a free email address, with no luck. Essentially I need to check if the email contains: hotmail, yahoo, gmail etc ...
1
vote
0answers
379 views

parse email address from outlook macro

I am wring a macro in outlook 2007 to extract email address from e-mails. I am able to read the body as a whole through a variable Pls let me know how to extract email address from the variable ...
1
vote
7answers
187 views

How can I filter email addresses that belong in a particular domain using Perl?

How can I scan through a file which contains email addresses that are separated by a new line character and get rid of those that belong to a certain domain, e.g. hacker@bad.com. I want to get rid of ...
0
votes
1answer
58 views

mysql: getting all email address from multi database ?

I Have an access to MYSQL Server with more than 2000 Databases in it. I want to scan all databases to get all email addresses that saved in the tables of databases. So would you please give me a ...
0
votes
6answers
126 views

Acceptable field type and size for email address? [closed]

Possible Duplicate: Common mySQL fields and their appropriate data types What are the recommended database column sizes for names? I am looking for what would be the most correct field ...
0
votes
4answers
126 views

Is there a good two way hash to convert an email address to a predictable, readable, unix username?

We are working with a number of unix based filesystems, all of which share a similar set of restrictions on that certain characters can't be used in the username fields. One of those restrictions is ...
0
votes
2answers
133 views

simple regex for email address validation

I need a regex to exclude certain characters such as 'ç' and also to check '@' sign is present. Can someone help? I am using jquery to do client-side validation using the following expression: ...
0
votes
0answers
149 views

Setting a bounce address using System.Net.Mail.MailAddress

I am trying to figure our how to set the bounce address of microsoft MailAddress object. I tried setting the Sender but that doesn't seem to work. Any suggestions? Here is some example code I am ...
0
votes
1answer
461 views

how to do the validation of email id in MFC?

I used this code for validating email id , im getting few errors i dono how to solve it,,, im new to MFC,, if im silly pls forgive me BOOL CMailDlg::Validate(CString m_sFrom) { m_sFrom = ...
0
votes
2answers
343 views

box email addresses like hotmail

I don't know what this is called hence having a hard time finding any reference on the net for this. On hotmail when you enter an email it boxes the email into a rectange block one by one on the same ...
0
votes
3answers
176 views

function for validating email addresses

I am using this function for validating email addresses, but it doesn’t work if the email address is like this: name@server.com. OR //name@server.com Is there a way to develop this function? ...
0
votes
8answers
172 views

PHP email address validation question

I was wondering how can I just check if an @ sign has been included when an email address is entered into the input box? I'm using PHP. Here is my php code. if (isset($_POST['email']) && ...
0
votes
5answers
156 views

php regular expression : How to fetch all the email address in a paragraph

I want to fetch all the email address in a paragraph. could you please help me Thanks a lot
0
votes
1answer
553 views

javascript validation for address

Hi Iam new to j query can any one let me know if there is a way to declare a jQuery.validator.addMethod function and write the java script inside this jquery validator for validating address where it ...
-1
votes
1answer
25 views

Is it possible to fetch email address of facebook restaurant (or any individual category) page owners? [closed]

Is it possible to fetch email address for facebook restaurant (or any individual category) page owners? I want email addresses of all the restaurant page owners.
-1
votes
2answers
88 views

Automatic e-mail extraction in Java

How can I scan for potential e-mail addresses in a text file using Java?
-2
votes
1answer
21 views

Create new mail addresses on mail server using PHP $_POST data [closed]

We have a mail server and we want to create new mail addresses with user submitted details. Is it possible to do it with php?