mirror of
https://github.com/axllent/mailpit.git
synced 2026-04-26 08:45:54 +03:00
[GH-ISSUE #293] Return queued Message ID similarly to how Mailhog did #194
Labels
No labels
awaiting feedback
bug
docker
documentation
enhancement
github_actions
invalid
pull-request
question
stale
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/mailpit#194
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Sn0wCrack on GitHub (May 6, 2024).
Original GitHub issue: https://github.com/axllent/mailpit/issues/293
Previously when using Mailhog the SMTP response would return something similarly to
250 2.0.0 Ok: queued as <message-id>, however Mailpit does not provide a message ID in the response.While I understand that returning a Message ID is completely optional in terms of the SMTP spec, however this does seem to be one point of incompatibility between Mailhog and Mailpit.
Currently have some things relying on a Message ID being returned from the SMTP response for log processing.
I had filed an issue upstream previously with smtpd as well to see if a function could be added to return the Message ID as well: https://github.com/mhale/smtpd/issues/38
@axllent commented on GitHub (May 6, 2024):
@Sn0wCrack - yes I think that should be possible, provided the functionality gets merged and tagged in a new smtpd release. Until then I can't do anything as that response is generated directly from within smtpd.
@Sn0wCrack commented on GitHub (May 8, 2024):
It looks like this was merged in a few hours ago and tagged as v0.8.3
@axllent commented on GitHub (May 9, 2024):
No problem, thanks for the heads-up! This has been released in v1.18.1.
Please confirm this is what you were after @Sn0wCrack?
@Sn0wCrack commented on GitHub (May 10, 2024):
Awesome, thank you so much for getting that implemented so quickly!
I can confirm this is working great for my use case now, really appreciate it!
@axllent commented on GitHub (May 10, 2024):
Glad to help!