forked from emersion/go-message
-
Notifications
You must be signed in to change notification settings - Fork 0
Update from upstream #4
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
Open
fcuenca4
wants to merge
32
commits into
master
Choose a base branch
from
update-from-upstream
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+371
−31
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Introduced by mistake in the previous commit:
./multipart.go:103:3: h declared and not used
The GitHub UI already displays that information.
As-is, extending PartHeader is a breaking change, and we only want to allow two variants.
Allows future extensibility.
…sion#187) Without the recent change of line wrapper implementation, this test is failing. There seem to be line breaks inserted in the middle of the body: ```diff --- /tmp/go-message-orig-194495186.txt +++ /tmp/go-message-after-83245617.txt @@ -37,7 +37,8 @@ if c.editor == nil { return } -@@ -1205,7 +1213,7 @@ func (c *Composer) termClosed(err error) { +@@ -1205,7 +1 +213,7 @@ func (c *Composer) termClosed(err error) { PushError("Failed to reopen email file: " + e.Error()) } editor := c.editor @@ -70,7 +71,8 @@ + PushError(err.Error()) + }) } - return + return + } -- 2.47.1 ``` References: emersion@c2ff70fd20da09d40ba References: emersion@6a718fa6214f9f35d33 Signed-off-by: Robin Jarry <[email protected]>
The doc incorrectly stated that the method requires the argument to have a comma character. Instead, it requires a colon.
fix: removed the "[, ]" brackets to parse email header where Message-ID: <[[email protected]]>. According to RFC 5322 3.2.3 it is a special character and special characters do not appear in atext. But we've found some email examples, those email contains the special character in Message-ID header.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
rebased from upstream repo https://github.com/emersion/go-message/