Slashdot Mirror


Qmail At 10 Years — Reflections On Security

os2man writes "Qmail is one of the most widely used MTAs on the Net and has a solid reputation for its level of security. In 'Some thoughts on security after ten years of qmail 1.0' (PDF), Daniel J. Bernstein, reviews the history and security-relevant architecture of qmail; articulates partitioning standards that qmail fails to meet; analyzes the engineering that has allowed qmail to survive this failure; and draws various conclusions regarding the future of secure programming. A good read for anyone involved in secure development."

50 of 304 comments (clear)

  1. license by raffe · · Score: 4, Informative
    The good thing is that is easy to work with and works really good. The bad thing is that the license is NOT FOSS. Sure, you can see the code and modify it but....from authors site:

    If you want to distribute modified versions of qmail (including ports, no matter how minor the changes are) you'll have to get my approval. This does not mean approval of your distribution method, your intentions, your e-mail address, your haircut, or any other irrelevant information. It means a detailed review of the exact package that you want to distribute.
    1. Re:license by Znork · · Score: 5, Informative

      "The good thing is that is easy to work with and works really good."

      I'd heard that it was really good too. Then I noticed that if I wanted IPv6 support I'd have to patch and compile it myself. Thanks for playing, but there are more modern secure MTA's available.

      "The bad thing is that the license is NOT FOSS."

      Yep, and that's probably why qmail ends up lacking in some areas. Perhaps it could be called a security feature, but I prefer spending time learning applications that dont depend on some single person for having any future at all.

    2. Re:license by larien · · Score: 5, Interesting
      Between the non-FOSS license and the author's enormous ego, it becomes difficult to get anything done with qmail. Sure, it's secure, but it's a pain to do certain things. One of my biggest bugbears with it was that he didn't seem to see a problem where a mail sent to multiple group aliases might end up appearing twice in users' inboxes if a user was in more than one of the lists. It caused us some confusion when we started using qmail and all responses seemed to be "why wouldn't you want multiple copies of the same mail in your inbox?".

      Yes, some of his refusal to compromise mean that qmail is still secure, but in terms of usability, it's a bitch unless you're willing to work with patches & diffs to add the functions you need.

    3. Re:license by ta+bu+shi+da+yu · · Score: 2, Interesting

      And thus the fallacy of "super-security". Security is only as good as what it allows a user to do. Sure, my computer will be secure if I put in a locked room with no access to the Internet, but it wouldn't be very useful.

      If the program is not functional, it doesn't matter how secure it is.

      That said, qmail is actually still pretty useful. However, pride cometh before a fall. The author's arrogance is going to let him down one day.

      --
      XML is like violence. If it doesn't solve the problem, use more.
    4. Re:license by Asmodai · · Score: 2, Interesting

      The good thing is that is easy to work with and works really good.

      Last time I had to reconstruct a particular email's flow through various MTAs including Qmail ended at the Qmail MTA since it the log files it uses offer little to system administrators to do proper troubleshooting.

      That alone is one major reason to never ever consider it for production use.

      --
      Jeroen Ruigrok/Asmodai
    5. Re:license by MichaelSmith · · Score: 4, Interesting

      If the program is not functional, it doesn't matter how secure it is.

      In wonder how much of the worlds spam traffic is a result of qmail sending bounces from a different socket connection and process, instead of sending the response back through the connection which the message arrived in.

      But yeah it is very secure. Back when I first ran servers on the internet I bought a book on configuring sendmail. The ultimate conclusion in the book was to run qmail.

    6. Re:license by irc.goatse.cx+troll · · Score: 4, Interesting

      The log files are useless, last time I had to debug qmail it involved writing a bash script to race to strace as soon as the qmail process was ran (I forgot why I didn't just hook the parent process, but I digress).

      --
      Pain lasts, kid. Its how you know you're alive. Sometimes I think this growing up thing is just pain management-TheMaxx
    7. Re:license by Antique+Geekmeister · · Score: 4, Interesting

      Not much. Most of it, according to the last numbers I saw from the notes of the MIT Spam Conference, is rootkitted Windows boxes. There are just too many of them and it's just too easy to get more for any such operational feature of the servers themselves to make much of a dent.

      I agree that sendmail was horrid to configure. The m4 wrappers have made it better, and Postfix provides an easy to configure tool that actually allows you to rebundle it with the configurations you want. Dan Bernstein's precious ideas of no documentation, his own peculiar and poorly explained licensing, no publication of forks of his code, and mixing the binaries in with the mail spool itself for various reasons are so nasty that many of us working with open source won't touch his utilities.

    8. Re:license by Carewolf · · Score: 3, Insightful

      Seriously if the user has subscribed to multiple mailing lists and the same mail is send to more than one of them he SHOULD get more than one copy.

      It is incredibly confusing when some stupid mail-provider along the way decides to snuff one copy. This means the mail doesn't appear where it should in my email-program. Each mail the the different mailing list creates a separate thread of responses WITHIN that mailing-list. That is TWO not ONE, but TWO different discussion threads, which should be represented with two entries in you email program.

    9. Re:license by Ed+Avis · · Score: 5, Interesting

      But from an individual site's point of view, it does make a big difference to have your MTA drop incoming connections immediately on getting an invalid address, rather than accept the mail and send back a soft bounce. Lots of spam is sent to random.address@known.site in the hope of getting somewhere. While accepting these messages ties up the spammer's resources, it also ties up your machine's resources.

      --
      -- Ed Avis ed@membled.com
    10. Re:license by gmack · · Score: 2, Informative

      The lack of SPF should be no excuse to allow for a broken mail server implementation. When I set up a server the ability for a user to gain a shell on the system is only one of the forms of security I look at. I also need to consider if any of the resources on my machine can be used by an outside to inflict harm on other servers. I need to make sure that my name servers can't be used for a reflector attack, my CGI scripts can't be used to send email to other people and my email server can't be used to relay.

      Unpatched Qmail is a form of an open relay. A couple years after running it for the first time someone started bouncing email off it and eventually it got so bad that I had thousands of emails in my queue at any given moment. This has been the case for every customer I've run into that is using Qmail.

      People need to stop referring to Qmail as "secure." It just isn't.

    11. Re:license by Antique+Geekmeister · · Score: 2, Insightful

      Also note: bouncing undeliverable email is part of the specification for SMTP, because mis-addressed or randomly guessed email is indistinguishable from temporarily undeliverable email. If you don't bounce it, the sender (who may be legitimate!) has no way to know it hasn't arrived. Dropping it on the floor becomes a real problem.

      What you've described as an open relay really isn't: it's a "Joe Job", a forgery pretending to be from somewhere else, exactly what SPF was designed to block. Now, *throttling* such connections seems completely reasonable, but as someone who's run SMTP servers, I submit to you that discarding the messages silently is not.

    12. Re:license by Russ+Nelson · · Score: 4, Informative

      No documentation?? Every executable has a man page, even executables that the system runs (e.g. qmail-local or qmail-remote).
      His licensing isn't poorly explained. But then again, you can't run 'man' so no wonder you couldn't Google for "djb licensing" and find http://cr.yp.to/distributors.html
      Your third allegation was true until the publication of this PDF which you obviously didn't read since it included a dedication of qmail to the public domain.
      The binaries aren't "mixed in with the mail spool". Binaries are in /var/qmail/bin, the queue is in /var/qmail/queue.

      1 for 4. 25%. That's a failing grade in every school I know of.

      --
      Don't piss off The Angry Economist
    13. Re:license by buanzo · · Score: 2, Interesting

      Yes, for example, you have Courier-MTA, which is a lovely and complete GNU GPLv2 package that closely follows standards and has lots of wonderful features, and a great filters API. For instance, you can implement SPF, Antivirus, Greylisting, several useful whitelistings and spamassassin in 5 minutes just by installing the pythonfilter package. http://www.courier-mta.org/ Although, to be fair, it lacks some milter-like filter API.

      --
      Buanzo Consulting - 15 Years of GNU/Linux experience, for you.
    14. Re:license by einhverfr · · Score: 2, Informative

      I run Qmail still. I intend to move to Postfix fairly soon.

      There is only *one* reasonable advantage of Qmail, that the security engineering is one of the best I have seen (there is still room for improvement, for example a missing rcpthosts file should not turn a SMTP server into an open relay-- it is better to fail to safe conditions and reject everything).

      The major disadvantages are:
      1) I don't see any attempts by DJB to modernize the software. I would therefore suggest that the project has been orphaned.
      2) Since it is not open source, nobody can pick it up, modernize it, and release a version with compliance of newer standards (i.e the ones which have come out in the last 10 years, meaning you are stuck with pop-before-smtp and the like :-( ).
      3) While the security engineering is good, the overall software engineering leaves a lot to be desired. In particular a lot of really braindead algorithms are used.

      The article is an interesting one to read though.

      --

      LedgerSMB: Open source Accounting/ERP
  2. Good article by BadAnalogyGuy · · Score: 5, Informative

    I don't mean to be flippant, but this is a really good article. That it appears on Slashdot gives me a lot of hope that this site isn't just a hangout for system administrators but also for software engineers.

    The concepts Bernstein discusses regarding increasing security are very interesting, if not exactly obvious. Fix bugs immediately. Reduce LOCs to reduce the probability of bugs. And execute as much code as possible in untrusted mode. His discussion of running untrusted code in "prisons" is interesting, and I wonder what, if any, accomodation for this type of programming Windows has.

    It was really nice to see software engineering presented here for once. Thanks kdawson... kdawson? No way!

    1. Re:Good article by Ed+Avis · · Score: 5, Informative

      You're misunderstanding Alan Cox's message. The way djb is suggesting is to chroot() to somewhere empty and then drop root privileges so you can't chroot() again.

      (It's really unfortunate that you have to be root to chroot() to start with.)

      --
      -- Ed Avis ed@membled.com
    2. Re:Good article by Eunuchswear · · Score: 2, Informative
      No, if you chdir to /home/test/root, then chroot to /home/test/root, then chdir to .. you'll still be in /home/test/root.

      From man 2 chroot:

            The .. entry in the root directory is interpreted to mean the root
            directory itself. Thus, .. cannot be used to access files outside the
            subtree rooted at the root directory.

      How root gets out of a chroot is:
      1. make, or find, a directory under the current chroot
      2. chroot there, but don't chdir there
      3. now ".." in the old chroot is its real parent, not itself.


      Of course DJB was suggesting that you drop root privs immediately after the chroot, so this is moot.
      --
      Watch this Heartland Institute video
  3. Re: It works really well? was: license by Anonymous Coward · · Score: 3, Informative

    The good thing is that is easy to work with and works really good.
    Amazingly, this is already flamebait. Yes, some people like it. No, other people absolute despise the djb-preferred way of doing things. Me, I'm one of those heretical djb-dislikers. I'm not saying you can't have your preferences, though; I am pointing out they're not universal. If you want the lowdown on large-scale qmail deployments today, ask NANAE.
  4. Qmail and the patchset of doom by Neo-Rio-101 · · Score: 2, Informative

    I'd use Qmail, except that the licence means that in order for Qmail to scale, it has to be patched about fifteen squillion times over ... all thanks to the restrictive licence.

    Sure it may be fast and secure... but unfortuantely scalable it is not (and if it is, it is far from obvious how).
    Does anybody run an ISP mail system with Qmail featuring predominately as MTA of choice?

    --
    READY.
    PRINT ""+-0
    1. Re:Qmail and the patchset of doom by Gricey · · Score: 2, Informative

      I heard Yahoo! use it... or a derivative.

      I used it in an ISP environment but at a certain point it becomes impossible to manage. The qmail queue is like a tub of nitroglycerine - fine, but if you touch it, it explodes.

      Qmails strength its its simplicity. It then achieves security because it is a simple program. For small mail installations it is fine, high performance, small footprint, etc. Each component part is easy to debug.

      It becomes unwieldily when you need to do things which aren't simple, queue management, scaling to a godzillion users, policy based mail routing, multiple actions on a mail before its delivered, db lookups, intelligent filtering, etc. These things are either unavailable or a third party (after the fact) bolt-on.

      If it's license wasn't so badly the suck, then it probably would be as current and featureful as any other MTA in wide use today. As a result of its silly license, the barrier to maintain and extend it is too high for most people and it's stuck in 1997.

      -- incubus

      --
      Sticking feathers up your butt does not make you a chicken.
    2. Re:Qmail and the patchset of doom by aproposofwhat · · Score: 2, Funny
      Yes - Yahoo! use it (or so the headers report).

      I've encountered problems with users sending to multiple recipients in the same domain from a Yahoo! account, where Qmail sends the email not just once, but N times (where N is the number of users), resulting in N^2 emails being processed by the recieving server.

      I conclude from this behaviour that Qmail is fundamentally broken, and am a firm believer in Postfix (all hail the mighty Big Blue!).

      :P

      --
      One swallow does not a fellatrix make
    3. Re:Qmail and the patchset of doom by discord5 · · Score: 2, Informative

      Does anybody run an ISP mail system with Qmail featuring predominately as MTA of choice?

      At my previous job we used to run qmail for our mailhosting boxes. I can tell you that we were really happy with qmail back then, with the right patches it can be a really flexible mailserver, and once you're used to how it works you'll be in SMTP bliss. However, when you need functionality that isn't provided by qmail, you're doing one (or some) of the following:

      • patching qmail, recompiling, testing, deploying
      • writing a perl/bash/whatever script that goes somewhere in the Big Qmail Picture
      • muttering curses and djb's name for the licensing

      I can't really bring myself to bashing qmail over these things because it's served me well and I've hardly had any "unexpected" things happen to me, which is something I can't really say of other MTAs I've tried and I've never had any security problems (altough you might want to read this page). There's a lot of information available on qmail, and you can check out this guide (although this may now be quite dated). An indispensible tool is qmHandle for inspecting and manipulating the qmail queue in case something did go wrong.

      Finally, I have to admit that when I left that company my own mailhosting services are currently being run by postfix, simply because I don't have the time to build my own qmail packages whenever I need some feature. If you look at the postfix design, any qmail user will see similarities and the fact that you're not patching and rebuilding it whenever you need feature X sort of grows on you.

      I know that if I were to start hosting a large mailserver, I'd have a hard time deciding between the two and I'd do a lot of testing before I made a choice.

  5. Re:File system layout standards by MichaelSmith · · Score: 5, Funny

    Geez, how about some thoughts about file system layout standards, after 10 years?

    Count yourself lucky that it doesn't all go under /djb

  6. Security by not evolving by gullevek · · Score: 5, Insightful

    if you use qmail "out of the box" it might be secure, but its not usable nowadays anymore. You often have to compile in so many patches that at the end there is no security there anymore.

    I rather start with an up to date MTA, rather then fight with something like qmail ever (EVER) again.

    Just the fact that you have a fixed layout, fixed start tools that need to be there to actually start it, etc etc makes it so horrible, that I wouldn't touch it ever again with a 100 yard pole.

    --
    "Freiheit ist immer auch die Freiheit des Andersdenkenden" - Rosa Luxemburg, 1871 - 1919
  7. The patches make it still worthwhile by rainer_d · · Score: 2, Informative

    Bill Shupp's patch plus Matt Simerson's Mail-Toaster Perl-library still make a difference.
    With postfix or sendmail, you've got to write all the provisioning-tools yourself, but qmail+vpopmail+qmailadmin delivers something out-of-the-box.

    http://www.shupp.org/
    http://mail-toaster.org/

    --
    Windows 2000 - from the guys who brought us edlin
    1. Re:The patches make it still worthwhile by gmack · · Score: 3, Informative

      Not even close to true. Postfix Admin does everything vpopmail does and more. I used to run qmail+qmail for years several years before I switched over and I can tell you Postfix Admin does a better job.

  8. One of the most widely used ??? by inflex · · Score: 3, Informative

    Where did the submitter get their information from for saying that it's one of the most widely used mail servers ? I suppose if you "widen" your limits a fair way it could come in as being moderately popular.

    Sendmail, Postfix, Exchange... sure, they're up there in the high levels.

    Anyhow, would love to see a site/page showing the breakdown of mail servers around the net.

    1. Re:One of the most widely used ??? by wfWebber · · Score: 2, Informative

      There, Googled it for ya:

      http://www.securityspace.com/s_survey/data/man.200710/mxsurvey.html

      And, at 0.17%, I'd say it wasn't as widely used as the poster wants us to think.

      --
      Never underestimate the bandwidth of a station wagon full of tapes hurtling down the highway. -- Andrew S. Tanenbaum
    2. Re:One of the most widely used ??? by tokul · · Score: 2, Informative

      Server provided banner - 1,521,596 - 85.95%
      Server banner identifies software in use - 921,048 - 52.03%

      Qmail does not provide banner that allows to identify software. 0.17% is for Qmail toaster.

    3. Re:One of the most widely used ??? by thanosk · · Score: 2, Informative

      Well the way that survey was conducted it relies on the 220 answer from the MTA
      to identify which Mail server it is.
      Qmail does NOT identify itself and as a result it cannot be counted using this method

      Also note that for only 52% of the queried MTA they were able to determine the
      software used.

  9. Qmail going public domain? by Bogtha · · Score: 4, Interesting

    The bad thing is that the license is NOT FOSS.

    Actually, that might be changing in the immediate future. Check out the slides to go with this talk, in particular, page 10 where there's a timeline including:

    2007.11: $500 -> $1000;
    qmail placed into public domain.

    --
    Bogtha Bogtha Bogtha
    1. Re:Qmail going public domain? by Russ+Nelson · · Score: 4, Informative

      I can confirm this. djb send me, John Levine and Dave Sill (prominent qmail book authors) an email saying that he was going to put qmail into the public domain.

      --
      Don't piss off The Angry Economist
    2. Re:Qmail going public domain? by fimbulvetr · · Score: 3, Interesting

      Good solid code outside of the fact that he:

      Hard codes port numbers.
      Uses non-descript variables.
      Forces interpretations one way without allowing changing.
      Hard codes directory structures.
      Has to write a monitoring program to monitor his daemons and restart on failures instead of just spending more time making sure his daemons are solid to begin with. Here's a note: If you need a different tool to restart your process when it fails, perhaps you should consider looking into why the process failed in the first place?

    3. Re:Qmail going public domain? by Russ+Nelson · · Score: 2, Insightful

      "Hard codes port numbers." Okay, *you* go ahead and change port 25. Tell me when you get everybody else to use a different number and then I'll change my code. (hint: I won't be holding my breath.) "Uses non-descript variables." Usually 'i' is an iterator, but you can use it any way you want. On the other hand, he calls the remote IP address "remoteip", the remote host "remotehost" and the remote user info "remoteinfo", but if you think that's non-descript, I wonder what variable names *you* would use. "Forces interpretations one way without allowing changing." I have no idea what you're talking about; so far you don't either. "Hard codes directory structures", yes, this is to prevent attackers from subverting the paths."Has to write a monitoring program to monitor his daemons..." Actually that's because Unix HAS NO monitoring program which allows you to send a signal to a child, which is why people resort to REALLY GROSS hacks like: kill -HUP `ps aux | grep processname | grep -v grep | awk print $1` . Then again, you'd probably complain if djb *didn't* provide daemontools.

      --
      Don't piss off The Angry Economist
  10. Re:qmail and reiserfs by aproposofwhat · · Score: 2, Funny
    I hope DJB's not married...

    --
    One swallow does not a fellatrix make
  11. Secure programming by DJB by Gadzinka · · Score: 4, Insightful

    The programming model used by DJB is more or less:

    Implement only a subset of protocols, ignore the parts that you don't like, or might be insecure or are too boring to implement. Bonus points if you ignore actual features depended on by the users. Double bonus, if you manage to make it non interoperable by nazi-strict implementation of protocol, ignoring the rule ,,be strict as possible when sending, and liberal as possible when receiving''. If you can destroy other systems functionality especially designed for email (like multiple mx-es?), huuuge karma boost.

    Then refuse to implement needed features, pointing to third parties and their patches, and offer a prize for successful hack of your software. And ignore the insecurity of the patches. They're third party, after all.

    Robert

    PS I was so glad when some mature alternatives to sendmail and qmail apeared...

    --
    Bastard Operator From 193.219.28.162
  12. I just love qmail by deniable · · Score: 4, Interesting

    I was in a weird situation where there were two of us looking after a company part time. The other guy, a typical djb fanboy, replaced *most*[1] of exim with qmail, vpopmail, and daemontools. Oh what fun this was when he was 'unavailable.' The included 'docs' were garbage. Here's some fun questions for the audience:
    1. How do you start / stop your MTA? /etc/init.d/... or delete a file and recreate it to restart.
    2. How do you configure software? Config files or adding and removing files from a magic directory?
    3. How do you kick the mail queue? Buggered if I can remember.

    Having a few years of experience looking after various 'nixes is nothing to being thrown at djb's stuff without warning. Add to this the attitude from the fanboys I've met [2] and I hate anything touched by djb. The other fun thing I can remember from some doc was djb's suggested solution to one problem was to change fork().

    [1] mailq ran, but obviously freaked out.
    [2] The worst examples of the stereotype, however, I've seen stuff posted online from some very nice people. My sample size was small but annoying.

    1. Re:I just love qmail by gwynevans · · Score: 2, Interesting

      Well, I've got to say that I have found daemontools to be rather useful in a few scenario's where I need to have some controllable, 'always-up' processes. As for qmail, however, while I've not needed to use it, I have looked at it & while it did look useful back at the start, even then it seemed to me that djb could have done with a little more 'third-party' input to provide a less 'focused' view...

    2. Re:I just love qmail by deniable · · Score: 2, Insightful

      I don't doubt the usefulness of daemontools, it's just that if you haven't seen its unique way of doing things you wouldn't believe it. Who buries a service startup in a combination of inittab and the /srv (?) directory? Once you know, it isn't a problem, but when someone 'forgets' to tell you, it can be quite frustrating.

    3. Re:I just love qmail by tokul · · Score: 2, Informative

      > 1. How do you start / stop your MTA? /etc/init.d/... or delete a file and recreate it to restart.

      http://cr.yp.to/daemontools/svc.html

      svc -d /service/qmail - stops
      svc -u /service/qmail - starts
      svc -t /service/qmail - terminates the service and daemontools restart it.

      > 2. How do you configure software? Config files or adding and removing files from a magic directory?

      http://www.qmail.org/qmail-manual-html/man5/qmail-control.html

      > 3. How do you kick the mail queue? Buggered if I can remember.

      send ALRM to qmail-send process.

      kill -s ALRM `pidof qmail-send`

  13. Re:Is a sandbox a security solution? by ta+bu+shi+da+yu · · Score: 2, Informative

    Already pointed this out, but DJB is just gaining access to chroot, then dropping privileges.

    --
    XML is like violence. If it doesn't solve the problem, use more.
  14. security is paramount by Edgewize · · Score: 4, Insightful

    Regardless of whatever else you might think of him or his software, DJB is a promoter of "security at any cost", for which everyone should give him some respect. If there's anything we should have learned in the past ten years, it's that you can't half-ass security.

    Too much software is written as if security concerns are on equal footing with features and performance. That should never be true. If your program deals with untrusted input and has access to sensitive information, then security must be the primary concern during the entire development process. Security is not something that you can "patch in" after the architecture is settled.

    There can be no trade-offs when it comes to core internet services. If one mail server is 10x faster than another but also contains a remote execution exploit, it is not 10x better -- it is useless.

    You can debate DJB's personal approach to security, but you cannot fault his priorities.

  15. qmail is not suitable for use by Arrogant-Bastard · · Score: 2, Insightful

    Qmail -- whatever its security merits, and it does have some -- is not suitable for use on the public Internet because it fails to comply with not only de jure standards (RFCs) but de facto standards (best practices). The author has refused to correct these defects -- which is certainly his prerogative as an author, but has as a byproduct serious operational impact on not only users of the package, but other mail server operators who communicate with those run by users of the package.

    It's my professional recommendation (based on nearly three decades of experience running mail systems) that qmail be avoided in favor of superior packages such as sendmail, postfix, and exim. (Although the latter, unfortunately, appears to be making increased use of an abusive, spam-supporting feature known as "callbacks".) These packages are actively maintained and their authors have made, and continue to make, efforts to make them standards-compliant and well-behaved (despite the increasing stress placed on them by all forms of mail-related abuse).

    As an aside, readers interested in the history of qmail should query a Usenet archive for "a tribute to the programming style of Eric Allman".

  16. Postfix makes for a good read by andawyr · · Score: 3, Interesting

    A good read for anyone involved in secure development.

    You would be wanting the Postfix source code, then. I've learned a tremendous amount about how secure, well designed software can be constructed. Wietse is a very smart guy, and his code is some of the tightest code I've seen. Go through it, and you'll be a better software developer for it.

    I've never looked at the qmail code. It could be just as good, I don't know.
  17. Oblig.? by Ajaxamander · · Score: 2, Funny
  18. Re:Which is worth more... by Russ+Nelson · · Score: 2, Informative

    It's funny how many people bitch about the license when IN THE PDF UNDER DISCUSSION djb announced that qmail was going into the public domain. So, now that qmail is Open Source, will you be sticking with it?

    --
    Don't piss off The Angry Economist
  19. Re:File system layout standards by Craig+Davison · · Score: 2, Informative

    It makes perfect sense. Your package manager installs binaries in /usr/bin and /usr/lib. You don't want to write to those directories yourself so you don't conflict with the package manager. Binaries you compile yourself go in an alternate set of directories, /usr/local/bin and /usr/local/lib.

  20. Re:DJB is a cool guy! by Just+Some+Guy · · Score: 2, Informative

    I think he's neat!

    And one heck of a decent guy, too. Unless he's destroying your career for no real reason.

    --
    Dewey, what part of this looks like authorities should be involved?
  21. Re:An example, please? by Gadzinka · · Score: 2, Interesting

    This kind of seems to contradict the above.
    Not at all. DJB just carefully picks where to be ueberstrict, just to make fun of the others[1], and where to completely ignore useful function, just because he had a dream that it's bad[2].

    Robert

    [1] like rejecting SMTP transactions which use LF for line termination (RFC states it must be CR/LF), but most smtp servers of the time accepted either, while some "challenged" servers sent mail with LF only;

    [2] qmail will never deliver mail to secondary MX; or tertiary etc; If primary MX for the address is dead, then you're screwed;
    --
    Bastard Operator From 193.219.28.162