GrinningFool 5 years ago

    > In contrast, Spilled.ink fetches all related images on 
    > server as soon as the email is received and encodes them 
    > into the message. This hides your location, and whether or 
    > not you opened the message, from trackers. 
Wouldn't this expose the validity of the email address to every embedded tracker, since it's going to hit the tracking URLs to load the tracking images for embedding into the email?
  • velcrovan 5 years ago

    The validity is already known since most email servers will send a bounce if the address is not valid.

    • GrinningFool 5 years ago

      True, though it would still be considered as 'read' by the trackers.

      • velcrovan 5 years ago

        The point of the feature though is that the trackers can no longer provide meaningful insight beyond what the lack of a bounce provides, since the server will always fetch whether the email is opened or not.

vbsteven 5 years ago

This is interesting.

After recently learning Mutt and falling in love with its macros and tag handling I was thinking about implementing a GTD flow based on a local email server and use mutt as the client.

This project might serve well for prototyping

pjc50 5 years ago

Could do with an explanation of why this is distinctive ..

  • shakna 5 years ago

    It seems to me, that rather than using the maildir or mbox formats, they're utilising sqlite for the backend, which, depending on how the schema ends up, may be much faster.

    • Avamander 5 years ago

      sqlite is not a proper choice for a service like this, something like Postgres could actually provide a proper DBE that could net some performance benefits.

      • velcrovan 5 years ago

        People running their own email servers probably don't need higher performance than what SQLite can offer. Meanwhile the maintenance overhead of an SQLite-based setup is almost nil, and migrations & backups are trivial — two big benefits for people running their own email servers.-

        • Avamander 5 years ago

          Migrations and backups are trivial with Postgres as well.

      • pjc50 5 years ago

        To me this seems ideal - you can already get IMAP-in-Postgres through lots of mail servers, it just takes more work to set up. Whereas sqlite is a strict upgrade compared to using mbox or maildir for people using a local filesystem (not NFS) while still requiring no setup.

        • Avamander 5 years ago

          You shouldn't run your own mail if you can't install postgres.

  • PaulBGD_ 5 years ago

    The website is actually quite descriptive of what it does. Seems like a nice little service/self-hosted email product.