Closed blaine closed 10 months ago
We could not detect a valid reproduction link. Make sure to follow the bug report template carefully.
To be able to investigate, we need access to a reproduction to identify what triggered the issue. We need a link to a public GitHub repository. Example: (NextAuth.js example repository).
The bug template that you filled out has a section called "Reproduction URL", which is where you should provide the link to the reproduction.
Depending on the reason the issue was closed, you can do the following:
In general, assume that we should not go through a lengthy onboarding process at your company code only to be able to verify an issue.
In most cases, a private repo will not be a sufficient minimal reproduction, as this codebase might contain a lot of unrelated parts that would make our investigation take longer. Please do not make it public. Instead, create a new repository using the templates above, adding the relevant code to reproduce the issue. Common things to look out for:
Anyone experiencing the same issue is welcome to provide a minimal reproduction following the above steps by opening a new issue.
We look into every issue and monitor open issues for new comments.
However, sometimes we might miss a few due to the popularity/high traffic of the repository. We apologize, and kindly ask you to refrain from tagging core maintainers, as that will usually not result in increased priority.
Upvoting issues to show your interest will help us prioritize and address them as quickly as possible. That said, every issue is important to us, and if an issue gets closed by accident, we encourage you to open a new one linking to the old issue and we will look into it.
Provider type
Email
Environment
System: OS: macOS 14.1.2 CPU: (10) arm64 Apple M1 Pro Memory: 110.58 MB / 16.00 GB Shell: 5.9 - /bin/zsh Binaries: Node: 21.2.0 - ~/.nvm/versions/node/v21.2.0/bin/node Yarn: 1.22.19 - /opt/homebrew/bin/yarn npm: 10.2.3 - ~/.nvm/versions/node/v21.2.0/bin/npm pnpm: 8.10.5 - ~/.nvm/versions/node/v21.2.0/bin/pnpm Browsers: Brave Browser: 109.1.47.186 Chrome: 120.0.6099.109 Safari: 17.1.2 npmPackages: @auth/core: ^0.18.5 => 0.18.5 @auth/supabase-adapter: ^0.1.12 => 0.1.12 @auth/sveltekit: ^0.3.16 => 0.3.16
Reproduction URL
requires mailgun api key
Describe the issue
The following code (https://github.com/nextauthjs/next-auth/blob/5254ff78f2002c0eacf13389c26baac47a2b5326/packages/core/src/providers/email.ts#L382)
only works with the SMTP Nodemailer Transport, because it depends on the
rejected
andpending
attributes of theresult
object – these are only provided by thesmtp-connection
class in nodemailer. Unfortunately, nodemailer's types are under-specified, so this is an easy oversight to make. (ref: https://github.com/search?q=repo%3Anodemailer%2Fnodemailer+rejected&type=code). Unfortunately, for those of us not using the SMTP transport (I'm using Mailgun), it's a very difficult issue to track down. The error message is only:A fix would be to modify the default / example code to check for the presence of a
messageId
attribute (which all transports must implement) instead ofrejected
andpending
, or at the very least adding a test for therejected
andpending
attributes before accessing them (and ideally adding a comment indicating that the result is specific to the SMTP transport).How to reproduce
Use the Email provider default delivery code with any transport other than the default nodemailer SMTP transport.
Expected behavior
The application should not crash. Verification that the email sent (let alone was delivered) is very limited at this stage in the code, so it's probably unreasonable (and unnecessary) to expect a robust error condition handler.