Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Email login notification working, but checkout notification doesn't send #391

Open
formaldehydeson opened this issue May 2, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@formaldehydeson
Copy link

formaldehydeson commented May 2, 2024

I just set this up in a docker container running on my unraid server, I'm using my smtp server to send email notifications, it works when sending the email notification to login and it correctly generates a checkout notification for my account, then when it goes to send the checkout notification I don't receive any email, and there are no errors.

{
  "cronSchedule": "0 0,6,12,18 * * *",
  "blacklistedGames": [],
  "searchStrategy": "all",
  "runOnStartup": true,
  "runOnce": false,
  "timezone": "Canada/Eastern",
  "intervalTime": 60,
  "accountConcurrency": 3,
  "logLevel": "info",
  "testNotifiers": false,
  "skipVersionCheck": false,
  "browserLaunchTimeout": 15,
  "browserLaunchRetryAttempts": 5,
  "browserNavigationTimeout": 30000,
  "deviceAuthClientId": "98f7e42c2e3a4f86a74eb43fbb41ed39",
  "deviceAuthSecret": "0a2449a2-001a-451e-afec-3e812901c4d7",
  "deviceAuthPollRateSeconds": 10,
  "errorsDir": "config/errors",
  "webPortalConfig": {
    "baseUrl": "http://192.168.1.100:3055",
  },
  "accounts": [
    {
      "email": "[email protected]",
    },
  ],
  "notifiers": [
    {
      "type": "email",
      "smtpHost": "mydomain.com",
      "smtpPort": 465,
      "emailSenderAddress": "[email protected]",
      "emailSenderName": "Epic Games Captchas",
      "emailRecipientAddress": "[email protected]",
      "secure": true,
      "auth": {
          "user": "[email protected]",
          "pass": "pass",
      },
    }
  ]
}
Run on startup: true
[2024-05-02 13:21:56.742 -0400] INFO: Started epicgames-freegames-node
    COMMIT_SHA: "afcf312cbe9bf7bbc39136f1448772981bfcbe9a"
    BRANCH: "master"
    DISTRO: "alpine"
[2024-05-02 13:21:56.933 -0400] INFO: Checking free games for [email protected] 
    user: "[email protected]"
[2024-05-02 13:21:58.008 -0400] INFO: searchStrategy is `all`: searching for weekly and promotional games
    user: "[email protected]"
[2024-05-02 13:22:06.987 -0400] INFO: Available free games
    user: "[email protected]"
    availableGames: [
      "Orcs Must Die! 3",
      "Cat Quest II"
    ]
[2024-05-02 13:22:07.078 -0400] INFO: Unpurchased free games
    user: "[email protected]"
    purchasableGames: [
      "Orcs Must Die! 3",
      "Cat Quest II"
    ]
[2024-05-02 13:22:07.177 -0400] INFO: Dispatching checkout notification
    user: "[email protected]"
    url: "valid checkout url"
[2024-05-02 13:22:16.494 -0400] INFO: Exiting successfully
Run once: false
Setting cron schedule as 0 0,6,12,18 * * *
@formaldehydeson formaldehydeson added the bug Something isn't working label May 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant