TLDR

Create an email mapped to your webhook, the webhook will be called when an email will be received. It reacts instantly to emails. Check out the 1min demo in odysee

Long Story

I tried to share this previously in Reddit & HN but got 0 attention. I was hoping I could get some feedback here.

When I created this, I envisaged at least two use cases:

  1. (main one for my workplace) Plug the generated email(s) into the monitoring system to create tickets in the project management software you are using when an alert is triggered
  2. (for open source projects) Embed/Share the generated email with your users and have the email bug reports transformed into gitlab/gitea/github issues
  3. (it could serve as a starting point for an open source business automation software)

This is in a very early stage, I am more than open to feature requests. I have have a bunch of improvements planned but would like to see if there’s some interest first.

The project source is in gitea.v3m.net which is not public, I am open to creating a public mirror in your favorite public place (gitlab.com, github.com, …).

I am also open to having the current instance serving right from your open source subdomain for those interested.

registration link: https://g.v3m.net/user/register (zero tracking just plain golang + htmx)

  • warmaster@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    14 hours ago

    Looks interesting, github will give the project a lot more visibility. If you want, you can make it a mirror of gitlab.

  • skankhunt42@lemmy.ca
    link
    fedilink
    arrow-up
    5
    ·
    1 day ago

    I don’t understand what you’re doing here. I use your website to what?

    Monitor my email and when I get one that matches the regex it’ll make an API call?

    Or is your website the API endpoint?

    The video didn’t help me understand.

    • idriss@lemm.eeOP
      link
      fedilink
      arrow-up
      2
      ·
      20 hours ago

      Thanks for having a look!

      Monitor my email and when I get one that matches the regex it’ll make an API call?

      It’s this first one with a slight twist. It generates a random email for you rather than asking you to give your username & password (I don’t want to handle securing people’s usernames and emails at this stage). It makes an API call when the From Email matches the regex.

      Example from demo:

      URL: https://api.github.com/repos/idrissbellil/cryptomonitor/issues
      Method: POST   (The HTTP Method: POST, GET, PUT, ..)
      From Regex: .*  (only trigger the call given certain `From` emails so you it doesn't create a thousand tickets if somebody floods you with emails)
      Payload: {"title":"{{ .Subject }}","body":"{{ .Body }}","assignees":["idrissbellil"]}  (the data part of the POST/PUT/even GET query - here you can re-use parts of the email you received like Subject, Body, To, From
      Headers: {"Accept":"application/vnd.github+json","Authorization":"Bearer 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","X-GitHub-Api-Version":"2022-11-28"}
      
      • skankhunt42@lemmy.ca
        link
        fedilink
        arrow-up
        2
        ·
        15 hours ago

        Okay, so, You’re going to need to pretend like I’m 5 years old here.

        The end goal is for me to give this my email creds, it will then monitor my email and when I get a match it’ll run the API call, right?

        However, right now, you don’t want to take usernames and passwords so you generate random emails as an example to show what it COULD do.

        If I’m correct it might be a little early to give people access as there’s nothing I can really do. I created an account on your site but there’s nothing there explaining what I’m doing just a couple input boxes with a one word label.

        I would use this for email -> matrix but I’d have to self host it. I’m sure others would use it if you had some built in API calls that less techy people could use.

        Do you allow users to matched regex from the email and use it the API Call?

        • idriss@lemm.eeOP
          link
          fedilink
          arrow-up
          2
          ·
          14 hours ago

          All questions are welcome! By saying it’s intended to tech people earlier I meant if you know what are the different components of an HTTP query, then you know enough to use it.

          The end goal is for me to give this my email creds, it will then monitor my email and when I get a match it’ll run the API call, right?

          That’s not what I wanted to express. Not requesting your email credentials is an intended design decision (it’s more challenging also). Because personally, if I was a user, I wouldn’t feel comfortable giving my email credentials to a random website online. The alternative solution is to generate an email controlled by the website like I did.

          So yeah, the intended use case isn’t to monitor your email address. But rather give you an email address that you can plug in an alerting system for example that would result in a webhook call (that would notify you on matrix or telegram, create a github issue, create Jira ticket,…).

          I would use this for email -> matrix but I’d have to self host it. I’m sure others would use it if you had some built in API calls that less techy people could use.

          Self hosting isn’t necessary if you don’t want to, you can already add your matrix webhook and generate a random email address you can use. You can configure your current gmail account for example to forward certain or all emails to that randomly generated address and that would trigger a webhook (matrix msg in our example). It involves an extra step (configuring gmail) at the benefit of not having to share your personal creds with a random website online (gossip).

          I can provide an example on how to do that if you want to test that.

          I do agree with you though on the second part, I will be adding some ready-to-use blocks for the most common services. That’s already a planned feature.

          Do you allow users to matched regex from the email and use it the API Call?

          For now, it matches on the From Address only (to avoid spamming the API), but it will be very easy to add another field to match on the content or subject of the email if you think it’s a worthy feature.

      • idriss@lemm.eeOP
        link
        fedilink
        arrow-up
        2
        ·
        20 hours ago

        The last example will be equivalent to the following curl:

        curl -L \
          -X POST \
          -H "Accept: application/vnd.github+json" \
          -H "Authorization: Bearer github_pat_xxxx" \
          -H "X-GitHub-Api-Version: 2022-11-28" \
          https://api.github.com/repos/idrissbellil/cryptomonitor/issues \
          -d '{"title":"Found a bug","body":"I'\''m having a problem with this.","assignees":["idrissbellil"]}'
        
  • warmaster@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    21 hours ago

    What would the benefit be of using this instead of let’s say ActivePieces? Just kess resource usage or is there anything I’m missing?

    • idriss@lemm.eeOP
      link
      fedilink
      arrow-up
      3
      ·
      19 hours ago

      I have never heard of ActivePieces. I took 30 min now to review it and play with it.

      From that alone, I can say:

      • you can definitely achieve what gossip does using ActivePieces (in other words, Gossip covers a small subset of what ActivityPieces does if you want to create your email manually and plug it into what they call an IMAP Piece)
      • Yep, Gossip is much lighter and reacts instantly thanks to golang concurrency constructs (it’s now running on a tiny VPS there are few jobs and it’s consuming 22MB of RAM, I will be able to keep it free and scale really really high without much struggle)
      • Gossip is geared more towards tech people (if you can put together a curl query to cover your needs than you can do almost anything you want - trigger a telegram msg, matrix chat, create a Jira ticket, …)
      • Gossip doesn’t handle any complex automations now, it simply connects an email it generates into a webhook you input (that seems to cover all the use cases I needed in my workplace)