Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Nextcloud mail - PostGuard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Laura Kolijn
Nextcloud mail - PostGuard
Commits
ca981421
Commit
ca981421
authored
8 years ago
by
Steffen Lindner
Browse files
Options
Downloads
Plain Diff
Merge pull request #1482 from owncloud/dont-break-lines
Dont break lines
parents
4c7bac4b
14f78b16
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-0
2 additions, 0 deletions
CHANGELOG.md
js/service/messageservice.js
+2
-2
2 additions, 2 deletions
js/service/messageservice.js
lib/account.php
+1
-1
1 addition, 1 deletion
lib/account.php
with
5 additions
and
3 deletions
CHANGELOG.md
+
2
−
0
View file @
ca981421
...
...
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
### Fixed
-
Bring back menu toggle button for mobile
[
#1483
](
https://github.com/owncloud/mail/pull/1483
)
@ChristophWurst
-
Don't send messages in flowed text format
[
#1482
](
https://github.com/owncloud/mail/pull/1482
)
@ChristophWurst
## 0.4.4 – 2016-05-06
...
...
This diff is collapsed.
Click to expand it.
js/service/messageservice.js
+
2
−
2
View file @
ca981421
...
...
@@ -208,8 +208,8 @@ define(function(require) {
defer
.
resolve
(
data
);
},
error
:
function
()
{
defer
.
reject
();
error
:
function
(
xhr
)
{
defer
.
reject
(
xhr
);
},
data
:
{
to
:
message
.
to
,
...
...
This diff is collapsed.
Click to expand it.
lib/account.php
+
1
−
1
View file @
ca981421
...
...
@@ -190,7 +190,7 @@ class Account implements IAccount {
// Send the message
$transport
=
$this
->
createTransport
();
$mail
->
send
(
$transport
);
$mail
->
send
(
$transport
,
false
,
false
);
// Save the message in the sent folder
$sentFolder
=
$this
->
getSentFolder
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment