Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
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
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Main
Synchronet
Commits
1a470cc4
Commit
1a470cc4
authored
4 years ago
by
echicken
Browse files
Options
Downloads
Patches
Plain Diff
Always set from_ext when posting a reply. Should resolve issue #221 (Mortifis).
parent
4aeba61c
No related branches found
No related tags found
1 merge request
!463
MRC mods by Codefenix (2024-10-20)
Pipeline
#1363
passed
4 years ago
Stage: build
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
webv4/lib/forum.js
+11
-24
11 additions, 24 deletions
webv4/lib/forum.js
with
11 additions
and
24 deletions
webv4/lib/forum.js
+
11
−
24
View file @
1a470cc4
...
...
@@ -331,7 +331,7 @@ function get_mail_headers(filter, ascending) {
h
.
attr
&
MSG_READ
?
ret
.
sent
.
read
++
:
(
ret
.
sent
.
unread
++
);
if
(
filter
==
'
sent
'
)
ret
.
headers
.
push
(
h
);
}
if
(
h
.
to_ext
==
user
.
number
)
{
if
(
h
.
to_ext
==
user
.
number
)
{
if
(
is_spam
(
h
))
{
h
.
attr
&
MSG_READ
?
ret
.
spam
.
read
++
:
(
ret
.
spam
.
unread
++
);
if
(
filter
==
'
spam
'
)
ret
.
headers
.
push
(
h
);
...
...
@@ -440,7 +440,7 @@ function getSignature() {
function
postMessage
(
sub
,
header
,
body
)
{
var
ret
=
false
;
if
(
user
.
alias
===
settings
.
guest
||
typeof
msg_area
.
sub
[
sub
]
===
'
undefined
'
||
msg_area
.
sub
[
sub
]
===
undefined
||
!
msg_area
.
sub
[
sub
].
can_post
||
typeof
header
.
to
!==
'
string
'
||
header
.
to
===
''
||
...
...
@@ -475,15 +475,10 @@ function postMessage(sub, header, body) {
// Called by postNew/postReply, not directly
function
postMail
(
header
,
body
)
{
// Lazy ARS checks; we could check the *type* of email being sent, I guess.
if
(
user
.
security
.
restrictions
&
UFLAG_E
||
user
.
security
.
restrictions
&
UFLAG_M
)
{
if
(
user
.
security
.
restrictions
&
UFLAG_E
||
user
.
security
.
restrictions
&
UFLAG_M
)
{
return
false
;
}
if
(
typeof
header
.
to
!==
'
string
'
||
typeof
header
.
subject
!==
'
string
'
||
typeof
body
!==
'
string
'
)
{
if
(
typeof
header
.
to
!==
'
string
'
||
typeof
header
.
subject
!==
'
string
'
||
typeof
body
!==
'
string
'
)
{
return
false
;
}
var
ret
=
false
;
...
...
@@ -537,12 +532,7 @@ function postNew(sub, to, subject, body) {
// Add a new message to 'sub' in reply to parent message 'pid'
function
postReply
(
sub
,
body
,
pid
)
{
var
ret
=
false
;
if
(
typeof
sub
!==
'
string
'
||
typeof
body
!==
'
string
'
||
typeof
pid
!==
'
number
'
)
{
return
ret
;
}
if
(
typeof
sub
!==
'
string
'
||
typeof
body
!==
'
string
'
||
typeof
pid
!==
'
number
'
)
return
ret
;
try
{
var
msgBase
=
new
MsgBase
(
sub
);
msgBase
.
open
();
...
...
@@ -550,15 +540,12 @@ function postReply(sub, body, pid) {
msgBase
.
close
();
if
(
pHeader
===
null
)
return
ret
;
var
header
=
{
'
to
'
:
pHeader
.
from
==
user
.
alias
?
pHeader
.
to
:
pHeader
.
from
,
'
from
'
:
user
.
alias
,
'
subject
'
:
pHeader
.
subject
,
'
thread_id
'
:
(
typeof
pHeader
.
thread_id
===
'
undefined
'
?
pHeader
.
number
:
pHeader
.
thread_id
),
'
thread_back
'
:
pHeader
.
number
to
:
pHeader
.
from
==
user
.
alias
?
pHeader
.
to
:
pHeader
.
from
,
from
:
user
.
alias
,
from_ext
:
user
.
number
,
subject
:
pHeader
.
subject
,
thread_id
:
pHeader
.
thread_id
===
undefined
?
pHeader
.
number
:
pHeader
.
thread_id
,
thread_back
:
pHeader
.
number
,
};
if
(
sub
===
'
mail
'
)
{
if
(
typeof
pHeader
.
from_net_addr
!==
'
undefined
'
)
{
...
...
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