foo@bar.com is a real email address
71–80 of 98 posts
Re: foo@bar.com is a real email address
#72I used to work for a company that hosted customer.com. Microsoft, on more than one occasion, sent thousands and thousands of emails to customer@customer.com.
Re: foo@bar.com is a real email address
#73Earlier quoted context omitted.
*.local is a great example of why not to use a domain that just 'sounds good' as an internal dns suffix, as it is used by bonjour/avahi[1] I had to rename an entire corporate network once because the previous folks thought .local "looked good". It cause constant issues with clients that had bonjour or avahi running. [1]: http://en.wikipedia.org/wiki/.local
Wait, why doesnt apple just fix its software? .local isn't reserved. Seems like picking some arbitrary fix over another isn't helping matters.
That, and mDNS already being used as a psuedo-standard with things like Avahi.
Re: foo@bar.com is a real email address
#74We get a lot of crap email address signups at http://feefighters.com We do a little bit of filtering to check that the email address is legit, but let you get by anyway (with an additional click) if it isn't... we have a 1-click unsubscribe but this is making me rethink whether we should let fake email addresses through at all. We recently got this email from Fake.com Hello We own the domain fake.com, and from time t…
I assume you have an obvious 1-click subscribe on all of your emails? If not, I'd gladly mark you as spam over, and over, and over...
Re: foo@bar.com is a real email address
#75Re: foo@bar.com is a real email address
#76We get a lot of crap email address signups at http://feefighters.com We do a little bit of filtering to check that the email address is legit, but let you get by anyway (with an additional click) if it isn't... we have a 1-click unsubscribe but this is making me rethink whether we should let fake email addresses through at all. We recently got this email from Fake.com Hello We own the domain fake.com, and from time t…
Re: foo@bar.com is a real email address
#77Earlier quoted context omitted.
*.local is a great example of why not to use a domain that just 'sounds good' as an internal dns suffix, as it is used by bonjour/avahi[1] I had to rename an entire corporate network once because the previous folks thought .local "looked good". It cause constant issues with clients that had bonjour or avahi running. [1]: http://en.wikipedia.org/wiki/.local
Wait, why doesnt apple just fix its software? .local isn't reserved. Seems like picking some arbitrary fix over another isn't helping matters.
Re: foo@bar.com is a real email address
#78Earlier quoted context omitted.
Except some people fall back to the A record (see RFC 5321).
Can you please let me know where you're seeing this? I looked through http://tools.ietf.org/html/rfc5321 for /\sa\s/i and /(fall(\s)?back)/i and didn't find anything related to this this behaviour. I ask because I'd like to have my answer at http://stackoverflow.com/questions/8221381/where-does-email-... be as accurate as possible (plus I'm now curious about this). Thanks!
after DNS was in place, MX records came along in order to route mail destined for a host to a different server, or just supply a list of backup servers. now since most people just use email addresses containing only a domain, MX records are pretty much common place (since the A record of many domains resolves to the web server). now MTAs check for MX records before trying to connect directly to the host.
to demonstrate:
jcs@thalamus:~> host -t mx test.jcs.org
test.jcs.org has no MX record
jcs@thalamus:~> host test.jcs.org
test.jcs.org has address 10.10.10.10
jcs@thalamus:~> echo test | mail test@test.jcs.org
and shortly after, in postfix's mail log: Nov 21 22:59:18 thalamus postfix/smtp[23742]: connect to test.jcs.org[10.10.10.10]:25: Operation timed outRe: foo@bar.com is a real email address
#79Re: foo@bar.com is a real email address
#80I thought this is basic knowledge of everyone technically engaged in Internet stuff. But apparently, this isn't the case, despite its well-known and very readable documentation! [1] It says: 1) There are exactly 3 domains the IANA keeps free for that purpose: example.com example.net example.org 2) In addition, all domains under the following 3 top level domains can be used freely for that purpose: *.test *.example *.…