9 comments

  • V__ 11 hours ago
    A small warning for anyone wanting to use this in a setting with legal requirements:

    > Please note that the term “sync” in Bichon may be misleading—“download” might be more accurate. [1]

    If an email is deleted before bichon can download it, then it may not get archived. Most of the time the legal requirements are, that all emails hitting an inbox have to be archived, regardless of user action.

    For those cases, a solution like mailpiler is better. Just BCC any incoming and outgoing mail to mailpiler and that is it.

    [1] https://github.com/rustmailer/bichon/wiki/FAQ-(Frequently-As...

    • rustmailer 3 hours ago
      Bichon connects to the IMAP server via IMAP and uses a sync interval, for example 10 minutes. Every 10 minutes, Bichon downloads emails from the IMAP server to the local machine, then stores and indexes them. If an email is permanently deleted within that interval, Bichon has no way to detect it. That is indeed how Bichon currently works.
  • sea-gold 10 hours ago
    Here is a very similar project: https://emailengine.app/

    Similar to Bichon, it also has a commercial license[1]:

    > EmailEngine is not free open-source software. It is "source available" software, meaning you can view and copy the source code, but you need a paid subscription[2] to run it beyond the free 14-day trial. Each EmailEngine instance comes with this trial, so you can test EmailEngine without any commitment.

    EmailEngine is based on ImapFlow[3], a modern and easy-to-use IMAP client library for Node.js that is MIT-licensed.

    [1] https://github.com/postalsys/emailengine/blob/master/LICENSE...

    [2] https://postalsys.com/plans

    [3] https://github.com/postalsys/imapflow

    • isaachinman 9 hours ago
      For anyone reading, I would highly recommend steering clear of EmailEngine.
  • tosapple 11 hours ago
    I've got bichons, and they're great dogs.
  • nubg 10 hours ago
    Ah this is so close. If it could have a s3 backend for storage of the email blobs (should be trivial since the email files are just key values from email id to email bytes) one could use it as a backup tool, too.

    Author, is anything like that possible/planned? (the index itself can stay filesystem only)

    • rustmailer 3 hours ago
      I am the author of Bichon. Long-term backup and permanent archival features are not currently on Bichon’s roadmap, but you’re very welcome to open a GitHub issue to share your idea. Bichon is entirely driven by user needs, and any good suggestions or plans can be adopted and implemented.
  • jszymborski 10 hours ago
    Thank god! I hacked together some awful pipeline where Sieve copies mail to a folder and a python script read, stored, and deleted the email. Super fragile, using an email folder as a queue kinda sucked.
  • mbStavola 10 hours ago
    Bichons and Rust? I'm already sold!
  • Onavo 11 hours ago
    Note the rustmailer project mentioned is heavily proprietary licensed. Don't expect to be able to use any of this.
    • rustmailer 3 hours ago
      I’m the author of Bichon, so let me clarify this.

      First, rustmailer is my GitHub username. Under this GitHub account there are two main projects: RustMailer and Bichon.

      RustMailer is a middleware product with the same name. It is commercially licensed. I hope it can help developers save time on email-related development and also generate a bit of income for me, so this middleware requires a license key to run long-term.

      Bichon, on the other hand, is an independent project built on the experience of developing RustMailer. It does reuse a lot of similar code, but it is licensed under the AGPL. These are two completely different projects. RustMailer provides many API interfaces similar to EmailEngine and is positioned as middleware, while Bichon is an email archiving (or unified search) project.

      Bichon is positioned as a permanently free project. Users never need to worry that if you use Bichon today you will be asked to pay later — you can use it with confidence, and all of its code is fully open and transparent.

    • sea-gold 10 hours ago
      RustMailer (a separate project) has a commercial license: https://github.com/rustmailer/rustmailer/blob/main/LICENSE

      > RustMailer is source-available. The code is open on GitHub, but requires a valid commercial license key for production use.

      License Purchase: https://rustmailer.com/pricing

      The mention of BSD/Apache is from here[1] and looks to be a listing of open-source licenses that this project uses.

      [1] https://github.com/rustmailer/rustmailer/blob/main/license.h...

    • jszymborski 10 hours ago
      actually the rustmailer licensing is a bit confusing. The license file in the repo has the text of the BSD Zero and Apache license but the README describes it as "source-available"?
      • DetroitThrow 10 hours ago
        I read the license MD and there are some clauses that make it incompatible with Apache. I think you might just have seen the disclosure text for Apache/BSD zero.
    • DetroitThrow 11 hours ago
      This one appears to be AGPL and safe to use, but I just read the main project license and frowned. I'm not sure I understand who that project is for.
  • znnajdla 11 hours ago
    I’m been meaning to build something like this myself. Seems like this was designed to be run on a server, however. What if I want to run it locally on a laptop that’s not always on? Does it recover gracefully from restarts and such? Is it a SQLite database I can query myself? Does it have an immutable archive/backup mode with trash recovery?
    • rustmailer 3 hours ago
      Bichon can run on a laptop, and restarts or reboots are not a problem — you just need to make sure it starts automatically when the system boots. It is a standalone executable that is configured via command-line arguments or environment variables.

      I’ve also been considering packaging it as a desktop application so that non-technical users can use it more easily, since there are Rust projects that can help wrap Bichon into a desktop app.

    • wwfn 8 hours ago
      If looking for local email, why not a traditional client (thunderbird, claws, even outlook) or the more flexible/cli friendly maildir and notmuch? There are a bunch of front ends, including WebUIs https://notmuchmail.org/frontends/

      Is what you're looking for a pretty good fit for how email was originally used? Or am missing something obvious

    • sea-gold 10 hours ago
      Sorry, I don't know all the answers. However, I do know this (from the README):

      > Core Engine (Storage & Search): Tantivy[1] > Acts as both the primary storage for email content and the full-text search index. This unified approach ensures high performance and eliminates data redundancy.

      [1] https://github.com/quickwit-oss/tantivy