7 comments

  • orliesaurus6 hours ago
    Could you include some screenshots in the README of the functionalities? that would go a long way! thank you in advance!
    • aetherspawn6 hours ago
      Yeah GitHub repos need screenshots.
      • ttul5 hours ago
        Just have Codex or whatever take the screenshots and post them to the repo. Easy peasy.
        • brazukadev4 hours ago
          it is more efficient to prompt the meat proxy
  • gepeake6 hours ago
    Just used a very similar stack to make my own mail client. Workers for routing, Resend for sending, uses a CF and Resend key to set up any inbox on any domain I want ~instantly so I can have inboxes for everything. Very cool, I think workers are underrated!
    • aetherspawn6 hours ago
      You don’t need resend anymore, email is CF native.
  • kushalpandya4 hours ago
    I built something similar, but for in-app Issue Reporting, as my macOS app needed a way for users to file bugs without having to create an issue in GitHub <a href="https:&#x2F;&#x2F;github.com&#x2F;kushalpandya&#x2F;Sluice" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;kushalpandya&#x2F;Sluice</a>
  • robgough6 hours ago
    I get the temptation to self-host your support platform, as the existing tooling out there can be quite expensive when you want to upgrade from just using an email inbox.<p>If any founders find themselves reading this, and don&#x27;t think it&#x27;s the best idea to self-host your own support infra, I&#x27;ve just spent the last 6+ months building stayupfront.com which has, I think, quite reasonable pricing, and a few more features than this... largely around the customer&#x27;s portal experience (changelog, roadmap, etc.) and includes monitoring &amp; incident management which I think should all be ran from the same surface.<p>I&#x27;ve only just soft-launched, so still have founding pricing on there. Would certainly love to speak to others in this space too, as I was surprised how neglected an area it seemed to be when I was trying to find a replacement for jira service desk for a company I was working with at the beginning of this year.
    • ttoinou1 hour ago
      I dont think the helpdesk &#x2F; webmail space is saturated, I was looking into this and most of them don’t have the features I need such as automatic LLM assistance, automated translation, sharing tickets among multiple accounts etc.
  • 14u2c5 hours ago
    It may be very nice, but with no screenshots and no demo site you&#x27;re going to have trouble getting people to try it out.
  • roflchoppa6 hours ago
    Can it kill Jira? That’s all I ask :(
    • ngram3 hours ago
      For what specific use case would you like to kill Jira?
  • sfraxo6 hours ago
    nice stack. one question from someone who just built one of these: how do you handle inbound email threading? in my case the provider (SES) rewrites the Message-ID in transit, so In-Reply-To&#x2F;References matching silently breaks. I ended up putting the ticket id in a plus address on the Reply-To, the envelope survives even when the headers don&#x27;t. also curious how you handle webhook redeliveries, for me duplicates turned out to be the normal case, not the rare one.
    • ttoinou1 hour ago
      Yeah Im sure threading detection must break at least 30% of the time