Slashdot Mirror


Microsoft Releases 'Caller-ID For Email' Specs

gfilion writes "Microsoft has released a draft specification for Caller-ID for email, 'to address the widespread problem of domain spoofing' - the concept is similar to SPF, but is using XML. There's already an Caller-ID to SPF converter in the works. A few weeks ago, Microsoft discussed compatibility between the projects with Meng Weng Wong (SPF's project leader), but most SPF users are against using XML, so nothing has come of it thus far." We recently covered a brief article mentioning Microsoft's anti-spam work, though this is a clearer indication of their intentions. Update: 02/26 21:36 GMT by T : NewsForge is carrying a brief article with FSF counsel Eben Moglen's take on the draft; Moglen says it is "encumbered with unclear and unnecessary patent license claims."

63 of 430 comments (clear)

  1. XML... in its place. by SoTuA · · Score: 5, Insightful

    While I acknowledge that XML is great for some things, why is it that it gets used for almost everything nowadays? Damn buzzword-dominated market...

    Ok, I'll be quiet now :)

    1. Re:XML... in its place. by trix_e · · Score: 5, Insightful

      because its become what it was intended to become. A 'data format' that everyone (thereabouts) understands. More than just everyone, but most everything understands how to parse it (everything from a 'modern day systems' standpoint, not a 'my toaster' standpoint... though wait a few years...).

      While I agree that there are no absolutes, why not go with the path of least resistance when it doesn't really matter? XML has become the path of least resistance *at a macro level*. it's universally accepted these days, so unless there's a compelling reason *not* to use it... use it.

      The reason I say at a macro level, is that yes, on an individual project using XML may be a bit harder -- though most development platforms these days have trivialized the difficulty of implementation.

      --
      No man is an island, but Gary is a city in Indiana.
    2. Re:XML... in its place. by trix_e · · Score: 5, Insightful

      that's why I used 'data format' in quotes...

      agreed, if you want to be picky it's not a format by itself, but XML as a framework for structuring data (to include DTDs, XSLTs, etc.).

      The term 'XML' is used generically these days as reference to a particular way of structuring data as contrasted to other ways.

      --
      No man is an island, but Gary is a city in Indiana.
    3. Re:XML... in its place. by blowdart · · Score: 2, Insightful
      though most development platforms these days have trivialized the difficulty of implementation.

      And there's the rub. It's so damned easy to parse XML these days, why reinvent the wheel having to parse a comma delimited file, a fixed width file, a bizzare internal format?

    4. Re:XML... in its place. by Short+Circuit · · Score: 2, Insightful

      Your first point is only an issue if you intend to write a program that can handle arbitrary XML data.

      For many (most?) applications, you already have a good idea what the data you're working with is going to be like.

      I find XML mostly useful because I can edit data with vim, and not require the original application.

    5. Re:XML... in its place. by AndroidCat · · Score: 4, Insightful
      20 years ago, everyone used yacc/lex when they needed to parse something. They were handy tools and they were there. Now people need to parse a whole lot of stuff and the tools for XML are there.

      XML is handy, and it's a lovely big hammer. Ooo, look at all the nails!

      --
      One line blog. I hear that they're called Twitters now.
    6. Re:XML... in its place. by pomakis · · Score: 4, Insightful
      Sorry, I don't care what tools are available, parsing a comma delimited file when the records are reasonably simple in structure will always be easier. XML is really only usefull when the data resists structure.
      I have to slightly disagree with you there. Even if you start with a simple structure that can be handled okay by a simple comma-delimited set of values, things tend to evolve. What will happen to your encoding when a decision is made to add a bit more structure to the data in the future, such as allowing some parameterization on the items, or allowing tuples of items, etc.? More importantly, what will happen to the existing codebase that has been hardcoded to parse the simple comma-separated list? Using XML for even simple structures allows for more structure to be added in the future while allowing existing applications to read through it. That's been my experience, anyways.
    7. Re:XML... in its place. by wfberg · · Score: 2, Insightful

      True, XML is overkill for many many uses, but the matter of fact upside is ubiquity. I disagree in that a DTD gives you anything other than validation. Even if you have a DTD you can only validate the STRUCTURE of the XML...you still can't glean any MEANING from it. Which is why a lot of platforms simply choose to parse XML loosely with regular expressions and just treat it as a simple hierarchical format.

      I did make the distinction between syntax ("STRUCTURE") and semantics ("MEANING") in my post, thank you very much :-P


      There are certain discrepencies [prescod.net] between XML and S-expressions.


      Particularly entertaining it say there that S-expressions don't have a notion of attributes. Which is a very astute observation, since attributes suck the big one.

      It is true that any of these other formats "would do", and believe me, I am by no means an advocate of inappropriate, and over- use of XML, but the reality is that the proposed format is so tiny to begin with, and XML is so universally accepted, that it is practically moot whether this or that format would be "better". There are already a wealth of tools to index, mine, translate, etc. etc. XML.

      I'm not claiming otherwise, just that XML is horribly overcomplicated and that it really ought not to be used as widely as it is. It would make no sense to say "it really ought not to be used as widely as it is", if it wasn't used widely.

      XML is one of those historical errors that will bite us all in the ass from time to time for all time to come..

      --
      SCO employee? Check out the bounty
    8. Re:XML... in its place. by gnu-generation-one · · Score: 2, Insightful

      "It's so damned easy to parse XML these days, why reinvent the wheel having to parse a comma delimited file, a fixed width file, a bizzare internal format?"

      because one requires a "while(<>)split(/\t/, $_);", and the other takes loading a library, DLL, or module, initialising it, setting up callbacks which may or may not be possible in the context of your function, loading data into the XML parser, then trying to keep track of your place in the data structure as the XML library floods your callback functions with crap and just praying that it's all thread-safe.

      Plus text files are human-readable.
      And smaller.
      And take less memory to parse.
      And are easier to debug ...or edit ...or validate

    9. Re:XML... in its place. by jonadab · · Score: 2, Insightful

      > parsing a comma delimited file when the records are reasonably simple
      > in structure

      Have you ever worked with real data? Real data has commas within some of the
      records -- so then you switch to allowing records to be quoted, or commas to
      be escaped. Then you get data with newlines embedded in the records, so you
      have to allow those to be quoted or escaped too (unless you have a fixed number
      of columns per row, which is the exception rather than the rule). So you
      establish a rule that entries which start with ' or " are quoted, and you go
      to the end quote mark even if there are embedded commas and newlines. Then
      you have entries with embedded quote marks -- both kinds of them.

      Bah. It's more complicated wheel than you think, and XML handles all this
      stuff. There are other formats that handle it too, but XML is a perfectly
      cromulent choice and is more human-readable than average.

      Yes, it uses a few extra bytes, but the number of bytes can still be described
      as O(n) -- i.e., the size grows only linearly with the amount of data that have
      to be represented. Squabbling over whether the file is 10k or 100k is, this
      century, misguided. There are more important things programmers should spend
      their time on than saving a few bytes. Robustness, for example, is far more
      important to the end user (and, in terms of maintenance, to the programmer)
      than a few bytes one way or the other.

      --
      Cut that out, or I will ship you to Norilsk in a box.
  2. Why not XML? by Anonymous Coward · · Score: 1, Insightful

    Why are SPF's developers against using XML? - because it's not more than a buzzword.
    Why is Microsoft using XML? - because they're a business, they need buzzwords.

  3. Imagine when Hotmail gets this by ObviousGuy · · Score: 5, Insightful

    Microsoft is one big player in the email world through their Hotmail service. They probably serve more spam to more places than any other single mail service. As such it makes sense that they would want to be at the forefront of spam-elimination technologies. They ought to be applauded for their initiative here, as well as their cooperation with SPF and Sendmail.

    However, it disconcerts me that they are also applying for a patent in this area instead of engaging the community through a consortium-like committee that could share the technology across the board unencumbered by licensing fees. The specter of Hotmail becoming a proprietary mail system requiring foreign mail servers to run Microsoft-licensed "Caller-ID" to interact with Hotmail is a very legitimate concern.

    --
    I have been pwned because my /. password was too easy to guess.
    1. Re:Imagine when Hotmail gets this by leerpm · · Score: 3, Insightful
      Sorry for replying to my own post. But I missed another bit of information:

      From the "terms of the patent license for implementing this specification":
      "Microsoft and its Affiliates hereby grant you ("Licensee") a fully paid, royalty-free, non-exclusive, worldwide license under Microsoft's Necessary Claims to make, use, sell, offer to sell, import, and otherwise distribute Licensed Implementations, provided, Licensee, on behalf of itself and its Affiliates, hereby grants Microsoft and all other Specification Licensees, a reciprocal fully paid, royalty-free, non-exclusive, worldwide, nontransferable, non-sublicenseable, license under Necessary Claims of Licensee to make, use, sell, offer to sell, import, and otherwise distribute Licensed Implementations. "
    2. Re:Imagine when Hotmail gets this by PhotoBoy · · Score: 4, Insightful

      This is a bloody pain in the neck. SPF was just starting to look like it might be adopted on a large scale basis an MS have to stick their proprietary oar in.

      I don't want to have to make my mail servers compliant with this AND SPF, I also do not like the idea of sending XML packets to/from Hotmail (and other MS mail system) for every email allegedly from them.

      Also I'd rather not use an MS solution since there are always security holes. How long till the spammers find a way around this and start sending out spam via a flaw in Hotmail?

    3. Re:Imagine when Hotmail gets this by bigsteve@dstc · · Score: 2, Insightful
      > You mean, open source? Yes, I think.

      But I don't think you could prevent MS from distributing your software in a closed source product. In particular, it says this:

      You are not licensed to distribute a Licensed Implementation under license terms and conditions that prohibit the terms and conditions of this license.

      You are not licensed to sublicense or transfer your rights.

      (I think that) one effect of those two sentences is that you cannot distribute a Licensed Implementation under the GPL. The GPL grants the right to sublicense (among other things) that the "Caller ID" license does not allow.
  4. Re:two things by geminidomino · · Score: 5, Insightful
    True, I see how this may help stop some spam, but it also means (if I understood the article correctly) that everyone can find out where I mail from... and in some instances that could be a problem too.
    It's the classic claim that "If you're not doing anything wrong, you've got nothing to hide" anti-privacy excuse.
  5. Zombie Boxen hastens Trusted Computing? by G4from128k · · Score: 5, Insightful

    Caller-ID for email will help prevent spoofing, but will only increase spammers use of zombies. I wonder if increased exploitation of Microsoft OS weaknesses (to create spammer platforms) will have a long-term detrimental effect on Windows or whether it will hasten adoption of Trusted Computing? I wonder if Microsoft wants ISPs to become so sick of zombie boxen that the ISPs will prohibit all but a few chosen OS options (read the lastest version of Windows) for connection to their networks.

    For a very well-entrenched provider, making everyone sick of you old product is a good way to force them to buy your new product.

    --
    Two wrongs don't make a right, but three lefts do.
    1. Re:Zombie Boxen hastens Trusted Computing? by tiger99 · · Score: 4, Insightful
      Sadly you are right. Almost all the trouble I get now is from zombies (not sure if I mean the PCs or their owners!). Of course most of it happens because the stupid morons are continuing to use Outlook, which is a singularly pathetic program apart from its major security holes.

      As an aside, I set up a firewall, and the equivalent of Internet Connection Sharing (i.e. forwarding) on a Linux box the other day, IIRC it needed 4 lines of commands to iptables in one of the startup scripts, which being lazy I got out of a book. I went to grc.com for a test, and it was every bit as good as Zone Alarm, a product I use successfully on the inferior OS.

      The point is that in an open OS, useful and essential things tend to be fully documented, visible, and easy to set up. I fear that in this case, Sir Bill's anti-spamming system will be obfuscated, needlessly difficult to configure, and will at the slightest provocation automatically default to doing it Sir Bill's way, even if that is not what you want. There is a precedent in every previous M$ application, the world's most unpopular Word processor being the prime example.....

      It is of course another con trick to move us towards Longhorn, which on its own would get no acceptance whatsoever, because its drastically cut-down API set will break compatability with virtually everything. of course, if the Convicted Monopolist was competent, they would have had a much smaller, more manageable and properly documented API set in the first place, and we would not have nearly as many bugs, crashes or security holes.

      It seems to me that someone needs start the RFC process right now, describing a properly working, non-proprietary system. Otherwise, the Convicted Monopolist will once again do as described in the Halloween Documents.....

    2. Re:Zombie Boxen hastens Trusted Computing? by cca93014 · · Score: 2, Insightful

      Ah yes, because every day users can comprehend IPTables.

      I mean, wtf?

  6. thanks by flaez · · Score: 5, Insightful

    if it will mean I have to pay fees to Microsoft to get my domain signed, I'd rather continue filtering out spoofed-bounces, thank you.

    Interesting how instead of supporting a perfectly sound project that has been going for a year, everybody seems to have to come up with their own little *patented* scheme.

    1. Re:thanks by Masem · · Score: 4, Insightful
      For a lot of home residental (DSL) users, it's very hard to get the upstream ISP to implement reverse mapping on the DNS, since the ISP is the one in control of the IP number, not the end user. The end user can point domain names all they want to the IP, but reverse mapping will always come up with the ISP's naming scheme. This is a nice idea, but in practice, it's not going to work.

      Mine you, you're talking about your block of residental DSL users that run their own mail server (commercial DSL users generally do get the reversing mapping through their ISP); they will most likely not be clients and may be a larger source of spam than other sources.

      --
      "Pinky, you've left the lens cap of your mind on again." - P&TB
      "I can see my house from here!" - ST:
    2. Re:thanks by warrax_666 · · Score: 2, Insightful

      There is another reason. You can't reverse map one IP to several domains -- so no sending mail from multiple domains from one box. That's why using reverse lookups is a bad idea. Note that SPF (and similar schemes) does not have this problem because the authorization is in the actual domain you're (claiming to be) sending from, not the reverse domain.

      --
      HAND.
    3. Re:thanks by RedHat+Rocky · · Score: 2, Insightful

      Why should I, as a DSL user, depend on my ISP's SMTP server?

      I don't depend on their nameservers, either. I don't want anything from them except to have my packets passed up the line.

      Why? Control. If I only use services I provide, I am responsible when they are broken and I CAN FIX THEM.

      Labelling all SMTP servers on DSL lines as spam relays is really over the line.

      --
      Anything is possible given time and money.
  7. Re:Why not? by Marxist+Commentary · · Score: 2, Insightful

    Then why not just call you in the first place, and do away with the email?

  8. PR Issue by millahtime · · Score: 3, Insightful

    I do believe this is one area we have to really keep an on eye on M$ in. Do they really want to stop the spam or is it just PR. They have the browser that doesn't block pop ups and on a default install of windows Ad-Aware will find things it considers an issue right after the default install.

    This may just be a PR issue to show people they are pushing for it. When they implement something like this will they put their own hooks in it to allow what they want???

    M$ really needs to be kept an eye on if they do this.

  9. If Microsoft cared about SPAM... by Knertified · · Score: 4, Insightful

    They would have allowed a user to disable a the javascript popup function in the browser. Instead we have to rely on bandaids like googles toolbar to block popups from websites.

  10. Danger! Read the fine print! by Eponymous+Cowboy · · Score: 5, Insightful
    Look what happens if you add support for "Caller ID for Email" to your software:
    Microsoft and its Affiliates hereby grant you ("Licensee") a ... license ... to make, use, sell, offer to sell, import, and otherwise distribute Licensed Implementations, provided, Licensee ... grants Microsoft and all other Specification Licensees, a reciprocal fully paid, royalty-free, non-exclusive, worldwide, nontransferable, non-sublicenseable, license under Necessary Claims of Licensee to make, use, sell, offer to sell, import, and otherwise distribute Licensed Implementations.

    (From Microsoft's license.)

    So by building support for "Caller ID for Email" into your software, you suddenly give Microsoft an unlimited license to use and sell it. And, in fact, not only Microsoft, but everyone else who writes software that supports "Caller ID for Email."

    There is a word for this: Insane.

    No thanks. I'll stick with SPF--especially since the two are essentially identical, just a slightly different parsing format.

    --
    It's hard for thee to kick against the pricks.
  11. Re:Why not? by kalidasa · · Score: 4, Insightful

    They already have systems that do this [challenge-response], you know. This doesn't require any changes to standards; but it does require that the sending user be clueful - and given how quickly Netsky.C spread, I think that's a hopeless cause.

    In the US at least, caller-ID is not a challenge response system, it simply displays the originating phone number - and ONLY if you haven't requested that your number be hidden, and only if you live in an area that supports it.

    So, what lessons can we carry from this fact to MS's suggestion of "caller ID" for email? 1. We'll still get emails that are unauthenticated, because it will take a long time for folks to upgrade MTAs to manage this - after all, there are still open relays - and 2. someone will figure out some way to sell a solution to get past the authentication system so blocked spam senders can still get through (can you say "sales@viagra.hotmail.com"???).

  12. Re:Why not? by geminidomino · · Score: 3, Insightful

    That still has the same problem as every other C/R system. In order to GET that phone number, presumably every email is responded to by a notice to call that phone number. It still bombards the poor shmuck whose email was forged with C/R requests.

  13. Why we shouldn't use XML here... by doofusclam · · Score: 5, Insightful

    ... because the performance is crap. This is true on my pc (with any parser you care to name - i've tried it) so what it'd be like on a mail server handling x thousand messages a minute I have no idea.

    XML is great, but only when the underlying data is sufficiently variable within a pre-defined schema and where throughput is not an issue. It's not necessary here.

    sean.

    1. Re:Why we shouldn't use XML here... by viktor · · Score: 4, Insightful

      Oh, pleeeeeze!

      Is there no end to the Microsoft-bashing in this forum?

      If Microsoft had done this using a home-made format, then everybody would be screaming death to them for inventing their own standard "just like they did with Word documents".

      And when they do use a public format like XML? Then we all scream death to them because XML is so bloated etc. etc.

      It's time to grow up.

      PS. I will NOT make the mandatory "I really don't like them, but in this case..." argument, which seems to be the only standardized way of saying anything positive at all about Microsoft here.

  14. Port 25 by npcole · · Score: 3, Insightful

    On a first reading, I thought the ideas seemed quite sensible. One problem they did address in an interesting way was that of people with several email identities. One of their suggestions is that whoever is hosting the incoming email provides outgoing smtp services too, which would be a change from the (outdated?) idea that one should always use the "nearest" smtp server for all email. Though ISPs who currently block outgoing port 25 (such as my University!) would have to think again.

    N.

  15. XML Is Awesome When.... by Omega1045 · · Score: 2, Insightful

    XML is awesome when you are looking for interoperability between different applications/systems. I would think that when the Internet community agrees upon whatever protocol, it should be a common standard and will not need the benefits of XML. Indeed, XML would actually be a bad choice, as the extra market will just use more bandwidth. Sounds like MS should just bow its head, say thanks to SPF, and adopt it. If they want XML on their side, then let them right an internal API/converter so those developing with Exchange or Outlook will have access to an XML version. By leave it off the pipe! And I say this as a guy who works with XML everyday and enjoys the benefits it provides my company.

    --

    Great ideas often receive violent opposition from mediocre minds. - Albert Einstein

  16. This is rather unfortunate... by qtp · · Score: 3, Insightful

    because the Sendmail sender verification proposal (mentioned here) relies only on already existing tech (Domain Keys, mx records, and smtp auth) thaty is already incorporated into the vast majority of MTAs, it does not really make much sense (from a users, or a non-microsoft, point of veiw) to create a seprate and more complicated solution (even if the license is rather innocuous).

    I cannot help but think that continuing to allow senders that do not have a mx record for the sending machine to bypass smtp-auth for sending messages will fail to curb the spam problem, as it fails to tie the sent mails to an actual domain, and it allows (encourages) ISPs to restrict mailing through their email services only. With smtp-auth, it is still possible to send using an smtp server connected anywhere on the net, which allows accountability, but also makes it more possible to identify those providers who are allowing their users to send spam.

    --
    Read, L
  17. Pure FUD by leerpm · · Score: 4, Insightful

    No, it is not insane. It is called cross-licensing. They are saying if you want to use this technology, then you agree that you are not going to come back and sue Microsoft (or any other licensee too!) for patent violations relating to this implementation. This is a good thing!! They are protecting themselves.

    So by building support for "Caller ID for Email" into your software, you suddenly give Microsoft an unlimited license to use and sell it. And, in fact, not only Microsoft, but everyone else who writes software that supports "Caller ID for Email."

    Absolutely not. There is something called copyright law. Microsoft or any other company cannot just go and resell your software on their own terms. The license just means you cannot sue them for patent violations when they choose to build software that implements technology similar to yours in this area (provided you had obtained additional patents relating to this 'Caller-ID').

    1. Re:Pure FUD by IGnatius+T+Foobar · · Score: 2, Insightful

      It is called cross-licensing. They are saying if you want to use this technology, then you agree that you are not going to come back and sue Microsoft

      That's all well and good, and Microsoft will even "generously" give you a free license. But it's poison anyway. Here's why.

      Their "free" license is only "free as in beer." It specifically prohibits you from sublicensing it to someone else. This means you can't use Microsoft's "freely licensed" technology in any project whose license meets the Open Source Definition.

      Convenient for them, isn't it? They get to say "look, we're open, we're free, competitiors can use our technology at no charge" while they've quietly locked out the only real competition they have these days.

      No thanks. I'll take SPF over "MS Caller ID" any day.

      --
      Tired of FB/Google censorship? Visit UNCENSORED!
  18. XML is the ASCII of a new Generation by Anonymous Coward · · Score: 1, Insightful

    XML has become what ASCII files were used for back in the 80s and 90s. From that perspective, we've come a long way. At least now we can make a rough guess at what the data inside the XML file represents (unless of course it was designed by a moron).

    And as for speed, it's really a non-issue for email. Who gives a rats-ass if it takes your email server an extra 100ms to process an email. More then likely you have a email server that serves 1000 users or less. The amount of time you'll save processing XML headers vs. the shit your server process now will be infinitesimal compared to the amount of time it currently spends processing spam.

    Say what you will about XML, but at least it's better then the custom format binary crap files that proliferate tons of legacy systems.

  19. Re:MSXML experience by Cereal+Box · · Score: 4, Insightful

    just to escape-out special characters requires instantiating a new "entity" element in the middle of the text string element.

    Maybe that's the "right" way to do it, but I highly doubt that you cannot set the value of a text node to a string that contains an entity (i.e., "this is an ampersand: &amp;"). That would be the more direct approach.

    And I still haven't figured out how to make the thing give me a CRLF at the end of each element. No, XML doesn't require the whitespace, but it would have sure made it easier for my clients to read the file!

    First, you could have them read the file with Wordpad or just about any text editor other than notepad. And BTW, why are you complaining about MSXML not generating CRLF? You DO realize CRLF is a Microsoft-ism and not "standard", right? So you're complaining about MSXML generating text files in a manner more in line with the way every other system does it. Baffling...

    But the worst part is that I *succeeded* in using MSXML. Now, if I wanted to go back to just writing a text file (which I do!), I can't -- my code is tangled up in the objects to the point that it would take a complete rewrite.

    I've got news for you -- every decent XML parser library requires you to manipulate the XML tree in an object-oriented manner! It's called the Document Object Model for a reason -- you're not manipulating raw text! You can go ahead and do that if you like, and we'll see how much "easier" that is for any project requiring more than the most basic use of XML.

    Mods, get a clue. The way the MSXML library handles XML is not unique in some "Microsoft always makes crap" kind of way. Every decent XML library handles XML the same way.

  20. Do you Microsoft by tobybuk · · Score: 4, Insightful

    I say ignore them.

    Microsoft has never been interested in helping the community but rather wants only to further its own dominance of the market. When did they start being philanthropic?

    What's to say in a few years time when everyone is relying on this that they don't pull some stunt and start charging people? Do you know enough about the law to say they couldn't?

    Anyway their record on enhancing email is not good. I knew the first time I saw the ability to embed HTML and * SCRIPTS * into email that the virus writers would have a field day. I mean, what complete arseholes to allow code to be executed when someone just *reads* and email. It beggars belief!

    If they are serious they could assign their patents over to the FSF and then we'll consider it. I bet they won't.

  21. Re:At least by Hard_Code · · Score: 2, Insightful

    Not only would it be difficult, it would be POINTLESS because spam prevention only works if EVERYBODY DOES IT.

    --

    It's 10 PM. Do you know if you're un-American?
  22. Re:two things by Hard_Code · · Score: 5, Insightful

    So don't comply and risk getting your mail dropped. You can have your privacy, but you can't FORCE others to read mail from suspicious and unknown sources. Your call. There are plenty of non-email alternatives to be anonymous. Post in a random newsgroup from a web cafe. Or use a secure IM protocol, or secure IRC.

    --

    It's 10 PM. Do you know if you're un-American?
  23. Re:At least by evilad · · Score: 2, Insightful

    Have you ever tried to emit those types of compound documents without using any Microsoft controls? I.e., on another platform? A non-trivial task.

  24. MS is trying to pull a fast one by Anonymous Coward · · Score: 3, Insightful

    Isn't this likely Microsofts attempt to get everyone using passport of something similar?
    Once they authenticate everyone using their anti-spam system, they'll be able to authenticate for financial transactions, etc...

  25. What about 'localhost' servers with dynamic IPs? by davids-world.com · · Score: 4, Insightful

    I use a locally running postfix SMTP server on my laptop to send pretty much all of my email. Microsoft's proposal doesn't address this: of course, my laptop gets various IPs. I cannot use the SMTP server provided by my organization, as they firewalled it... With the MS proposal, I will have to go for VPN or talk to my sysadmins about smtp-auth -- and lose my independence...

  26. Has caller ID worked on phones? by PhiltheeG · · Score: 4, Insightful

    Like caller ID worked for the phone system. About 90 percent of my calls were either "Unknown" or "Private Line", and some action was still requried on my part to respond to the ringing phone.

    I don't have facts readily available to back this up but I'll assume somebody made money off caller-ID, as will Microsoft will attempt to do with their new "standards".

    --
    -Phil
    Shoot questions, first ask later...
  27. Re:two things by walt-sjc · · Score: 5, Insightful

    It doesn't even take a free account.

    The major problem with ALL these systems is critical mass.

    Corporations are not going to be blocking mail based on a lack of SPF, Caller-ID, or anything. Too many companies are going to be slow to implement, or apathetic about it. No larger business is going to block mail and potentially lose contact with potential customers, or existing clients.

    90% of the current crop of spam would stop if all ISP's would block outbound port 25 from dynamic IP clients by default (unblock if the client agrees to keep their system patched and secure and face penalties if found spamming.)

    For the most part, open relays have been closed due to RBL like activity, as enough sites use RBL's to make life very difficult for admins that leave their systems open. So spammers have moved to dynamic's, which there is a virtually unlimited supply due to the piss poor security of Windows and clueless users. RBL's are helping with that too, but it's hard to keep up. Again, many corporations won't use RBL's due to problems noted above.

    While I have not read the detail on MS's solution, SPF has the "roving user", "mail forwading" problem that there is no solution for that has been discussed to death. Anyone know if MS's solution has the same problem?

  28. Re:two things by Alioth · · Score: 2, Insightful
    Wouldn't this be declared as valid, and presumably laying the blame on the user.

    Yes - and then we'd know exactly who's machine has been trojaned with much less effort. The ISP can then disconnect them until they have patched their OS/removed the trojan.
  29. Re:MSXML experience by pohl · · Score: 3, Insightful
    I've got news for you -- every decent XML parser library requires you to manipulate the XML tree in an object-oriented manner! It's called the Document Object Model for a reason

    This isn't true. The SAX API is event-oriented, and though it may be a little bit more difficult to wield than DOM it has the advantage of giving you complete control over memory allocation. That is, you can allocate as little as you need, and only when you need it, whereas DOM libraries allocate all that is required to completely represent the entire document in memory up-front.

    Every decent XML library handles XML the same way.

    Also not true; the same example suffices.

    --

    The "cue the foo posts in 3, 2, 1..." posts will commence with no subsequent foo posts in 3, 2, 1...

  30. Re:sucks / rocks by ideonode · · Score: 2, Insightful

    I can assure you that when Satan sends messages, he sends them ASN.1-encoded. Especially the BER encoding, which doesn't even have one canonical means of encoding.

    It's so much fun that it causes buffer overflows all over the place (Microsoft OSes, OpenSSL...)

  31. It's not the metalanguage that's important by hexene · · Score: 3, Insightful

    I think "do we want XML" vs. "do we want a series of header fields" is asking the wrong question. It's the schema that's wrapped up in the XML or fields that's important.

    XML is great for expressing tree-like data structures, where as the "field-name: field-body" approach is probably better for expressing linear data. If you look at a schema it is usually obvious if XML is being used just for the sake of it, and parsing SPF as it stands is trivial.

    Companies with an "embrace, extend and extinguish" mentality towards standards can leverage XML by using it without any formal machine-processable schema (DTD, XSD or RNG), whilst all the while insisting it is "standard" because it uses XML. Look no further than WordML for an example of Microsoft doing this.

  32. Re:two things by mlefevre · · Score: 3, Insightful

    ISPs can already see exactly whose machine has been trojaned from the time and IP. Checking their logs to find that info is trivial - the tricky part is getting the user to patch/clean their computer. Knowing the email address of the person whose machine is trojaned doesn't really help the recipient.

    Having correct sender addresses would be nice, and would force spammers and virus writers to adapt somewhat. The question is whether the effort of implementing it is worth it for the gains available.

  33. XML inside a 2k TXT Record??? by jbrayton · · Score: 2, Insightful

    Previous comments have been for or against XML being used to deliver this information. I don't have a strong opinion either way on that; it seems reasonable enough. What does seem silly is that this information is being stuffed into a TXT record, and limited to 2k. A goal of using XML should be to easily add information and to make the information hierarchical. But that goal will likely never be realized in a 2k string. The XML tags will eat away at the number of allowed characters pretty quickly. And the zone file examples in the document are pretty ugly.

    SPF is better in that it keeps the information simpler. If XML is should be used, perhaps the TXT record should simply include an HTTP URL to the XML file. Alternatively, a simple URL standard could be used, such that one could reliably get Caller ID information regarding mydomain.com from http://mydomain.com/callerid or http://callerid.mydomain.com/.

    1. Re:XML inside a 2k TXT Record??? by Anonymous Coward · · Score: 1, Insightful

      DNS use of UDP limits packet size 512-bytes not 2k - and that's a good thing. Big bloated M$CID XML chunks force DNS onto TCP with all the handshake and handholding that goes along with it... laaaaaaaaaaame.

      And NO to your URL idea, already email requires SMTP and DNS to work, why add more more point-of-failure in HTTP? Just drop the XML and use a nice, tight data structure.

  34. Re:At least by Illissius · · Score: 3, Insightful

    Personally, I think in this case MS is actually, honestly trying to do the Right Thing. And it's easy to see why. What is one of the three biggest reasons the average user would even consider moving away from MS and Windows? Exactly. (The other two are spyware and virii. Popups don't get a seperate category, as they're just another form of spam.)
    Microsoft realizes this, and are trying to fix it, in their own very good interest. See also: SP2 contains antivirus, an upgraded firewall, a popup blocker integrated into IE, buffer overflow protection for processors that support it (Athlon 64 and Opteron currently), and I assume there's more.
    So you can safely expect for it to be That Much Harder convincing people to move to *nix, once SP2 is released. Do it while you still can. (Note again that I am not saying *nix will lose any advantage it has/had over Windows. Merely that in the eyes of the average user, it will.)

    --
    Work is punishment for failing to procrastinate effectively.
  35. Incompatible with GPL by Peer · · Score: 2, Insightful
    If you distribute, license or sell a Licensed Implementation, this license is conditioned upon you requiring that the following notice be prominently displayed in all copies and derivative works of your source code and in copies of the documentation and licenses associated with your Licensed Implementation:

    "This product may incorporate intellectual property owned by Microsoft Corporation. If you would like a license from Microsoft, you need to contact Microsoft directly."

    By including the above notice in a Licensed Implementation, you will be deemed to have accepted the terms and conditions of this license. You are not licensed to distribute a Licensed Implementation under license terms and conditions that prohibit the terms and conditions of this license.

    I guess this means no GPL apps, but I will now head to Groklaw and refresh the page until some legal info comes up ;-)
  36. Re:two things by Eivind · · Score: 5, Insightful
    Well, the nice thing about SPF is that it works, and has benefits even if not everyone uses it.

    For example, it allows me to tell SpamAssassin that IF a domain has SPF-records, and the email doesn't come from one of the ips that send mail for that domain, then in the spam-bucket it goes.

    Thus, for example, all the spam that claims to be from hotmail is gone.

    Secondly, I can, by publishing spf-records on my own domain eliminate the problem of spam bouncing back to me because it *claims* to be sent from me.

    Third, once a sufficient part of the people I communicate with email from domains that *have* spf-records, I'm free to, for example, implement a challenge-response system for email coming from other domains. Yes, this will mean people using those domains gets some challenges based on spam that only *claimed* to be from their domain, but actually isn't. That migth serve as a good incentive to get them to also publish spf-records. It's not as if it's a huge deal to stick 2-3 extra records in your dns-info.

  37. Re:How about text? by dangermouse · · Score: 4, Insightful
    I wish you would learn something about existing mail standards before you say something so stupid. Email is primarily a simple text format, my HTML/word document/virus packed mailbox not withstanding. I am not surprised M$ would want to further polute the standards but why would you?

    I wish you would learn something about existing mail standards-- like their colossal drawbacks. SMTP is entirely "a simple text format", and that's one of its biggest problems. We have all kinds of lame hacks for mailing binaries around and handling attachments. Nearly everyone who writes a mail client writes a mail parser and a composer. Not just a formatter, or presentation-level stuff-- basic goddamn parsing and composition.

    You don't seriously believe that any format that is newline-dot-newline-delimited is a good one, do you? SMTP is a relic, all the way down to the message format. I hope to god someone eventually succeeds in dislodging it.

  38. Microsoft *IS* critical mass by JohnQPublic · · Score: 2, Insightful

    I wish this wasn't true, but if Microsoft implements some sort of spam-blocking in Exchange, that's all the critical mass you'll need. Especially if they turn it on by default.

  39. Onb a more basic note by gerardrj · · Score: 1, Insightful

    Many here have pointed out flaws, problems or complications with the proposal, I have a fundamental problem with it.
    They released it as a .doc file. Who releases a proposed "standard" in a proprietary format? Shouldn't this have been plain text, RTF, HTML or even PDF so that everyone could read it properly?

    Using a Mac without Office installed I get lots of document formatting commands interspersed with the text. Apparently Apple hasn't figured out all of the .doc formatting in TextEdit yet.

    --
    Article X: The powers not delegated... by the Constitution...are reserved...to the people
  40. Email standard proposal by amightywind · · Score: 4, Insightful

    Colossal drawbacks to text? LOL! It is a feature. You could say the same for most internet services. There are no standard client API's for FTP or Telnet or most other services either. Has that stopped their widespread adoption? Has it made them any less useful? No.

    I am not concerned at all of people like you who make the internet groan under the weight of 20MB excel files wrapped in proprietary XML formats. MIME has done enough damage. Maybe the Standard should be a Microsoft (C, TM) paperclip icon that does a dance while he speaks your message in one of a hundred supported languages.

    --
    an ill wind that blows no good
  41. Re:MS 1, SPF 0 by Matts · · Score: 3, Insightful

    This is because you don't understand SMTP.

    The Sender entry in the headers is often added by MTAs as the value in the SMTP envelope's MAIL field. This is the same value that SPF validates against.

    Just because you don't understand SMTP and SPF is written in RFC language does not mean that Caller-ID is better. The XML in DNS TXT records is a big deal. The fact that with Caller-ID you have to validate after DATA is a big deal. But you won't understand these issues if you don't understand SMTP.

    --

    Matt. Want XML + Apache + Stylesheets? Get AxKit.
  42. Re:uh, yeah by wfberg · · Score: 4, Insightful

    You said it! I'm sure we'll all regret using a standard format for hierarchically arranged tuples of name-value pairs. I only have to use this type of data in maybe 99% of my projects.

    Nothing wrong with agreeing. Agreeing on a standard that's cruddy will bite you in the ass. There are many, many standards, and most of them are cruddy.

    And "name-value pairs"? How do attributes figure into that? Well.. Cruddily, that's how!
    Perhaps you're thinking of RDF (which has issues of it's own.. A lot..).

    And the output files sure are difficult to understand if you've never seen any markup language before and don't have a file viewer that understands ASCII text.

    XML allows for a lot more than ASCII.. Which is the reason a fully compliant XML parser is enormously bloated.

    Instead why doesn't everyone just make up their own format that is uniquely tailored for the individual application? You can leave off the attribute names since the recipient of the data should just know what they are anyway. And you can use a binary encoding to really add efficiency to the process. And developers love the challenge of trying to figure out new data formats on top of interpreting the data itself.

    Slippery slope? Or straw man? The latter. I never said no standard should be agreed upon. I would have preferred if it had not been something as complex and cruddy as XML. I even specifically gave S-expressions as an example that would be much simpler; you might note how that's not a binary format.

    One day, ASN.1 was what XML is now (well, it still holds telecommunications and cryptography in its stranglehold). Do you propose we use ASN.1 because it's so well accepted and standardized and there are so many tools? Or do you recoil in shock at how bloated the featureset is, how convoluted the encoding, how shockingly incomprehensible the parsing process? XML is simpler than ASN.1, and XML is better than ASN.1 (except that ASN.1 has a cute way of compiling parsers from its syntax/schema language, which is a nice feature); but that does not mean XML is the best general purpose meta-syntactic language imaginable. It's not.

    --
    SCO employee? Check out the bounty
  43. Re:How about text? by gnu-generation-one · · Score: 2, Insightful

    "You don't seriously believe that any format that is newline-dot-newline-delimited is a good one, do you?"

    Ask that again when you've got your x million messages-per-hour email gateway parsing an XML file each time...

    Email is so simple you could probably parse it with a circuit board and a few NAND gates, and that's very good indeed when you want people to start using it.