1. 10
    1. 3

      Also, you can put real-names in the files and then grep your address book. :)

      1. [Comment removed by author]

      2. 1

        Excellent idea! Everything stays the same as I originally imagined, only extended in a transparent way (you could also store numbers, postal addresses etc)…

        1. 1

          A friend complained that he could never remember even the start of email adresses. I proposed to use symlinks for that. :) (You need to add a realpath call to mailto then.)

    2. 2

      I love the simplicity. Add a few git-commands and you can easily sync the address book across computers through Github.

      1. 3

        Please don’t put my contact information to GitHub…

        1. 1

          Oh!

        2. 1

          hmm. this is an interesting article about encrypting your external git repos and using dropbox: http://syncom.appspot.com/papers/git_encryption.txt. That would work.

      2. 1

        Glad you like it!

        I’ve updated the post to include a nice mailto function for even simpler usage.

    3. 1

      Is this something that exists or is this an outline of an API that you want to build?

      1. 2

        This appears to be a description of an organization system for email addresses, not a tool per sé. You can implement it yourself already; it uses only common UNIX command-line tools.

        Sime has a folder “adr” containing files whose names are email addresses. He uses ls, touch, and rm to list, create, and delete those files. He wrote a shell alias mailto that opens the program mail with the email that is the name of the given file – this is presumably so you can tab-complete filenames to simulate tab-completing email addresses.

        1. 1

          Couldn’t put it better myself :)

    4. 1

      the nice thing Gmail does is add contacts for you automatically… I guess you could do it with Imap and a script or two.