Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eterfund-api-email
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eterfund
eterfund-api-email
Commits
67170699
Commit
67170699
authored
Nov 28, 2018
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug: send hash only all checks passed
parent
5a3fffe4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
svcCheckEmail.php
svcCheckEmail.php
+4
-1
No files found.
svcCheckEmail.php
View file @
67170699
...
...
@@ -106,7 +106,7 @@ if( !validate_email($email, $matches) ) {
'username'
=>
$matches
[
1
],
'domain'
=>
$matches
[
2
],
'ip_from'
=>
$ip_from
,
'hash'
=>
calc_hash
(
$site_domain
,
$ip_from
,
$matches
[
0
])
,
'hash'
=>
null
,
'status'
=>
true
,
'error'
=>
null
);
...
...
@@ -131,6 +131,9 @@ if( !validate_email($email, $matches) ) {
$referer
=
$http_referer
?
$http_referer
:
'Unknown'
;
$referer_host
=
$http_referer
?
str_ireplace
(
'www.'
,
''
,
parse_url
(
$referer
,
PHP_URL_HOST
))
:
'unknown_host'
;
if
(
$response
[
'status'
]
===
true
)
$response
[
'hash'
]
=
calc_hash
(
$site_domain
,
$ip_from
,
$matches
[
0
]);
$data
=
'Date: '
.
date
(
'd/m/Y H:i:s'
)
.
' | IP: '
.
$ip_from
.
' | Referer: '
.
$referer
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment