helo
i have problem with sending email with smtp without authentication.
i have read this tread but not working
Prevent email from being send from server domain
then.. i have tried using php mailer script..
yes we can send email using php mailer script (using SMTP local server).
and there is an option:
$mail->SMTPAuth = false;
yes i try to not using SMTP auth.. and email successfully send...
this is dangerous i guess..
here is the detail message:
sorry i use xx to hide the domain..
what i am currious is here:
Sender User: -remote- <--- actually this is cpanel user: hendranata who send that email from php script.. not from anybody else.. but why they known as -remote- ??
how to block email if the SMTP auth is off ?
i did many possibility.
1. yes if we run php mailer script from outside server.. yes SMTP required to login first before they can send email
however....
2. if we run php mailer script from internal server.. SMTP does not required to login first before they can send email. (it means they can send email with or without SMTP auth actually). <--- this case is quite dangerous when a user send email using SMTP from internal hosting and without SMTP authentication.
any solution?
i have problem with sending email with smtp without authentication.
i have read this tread but not working
Prevent email from being send from server domain
then.. i have tried using php mailer script..
yes we can send email using php mailer script (using SMTP local server).
and there is an option:
$mail->SMTPAuth = false;
yes i try to not using SMTP auth.. and email successfully send...
this is dangerous i guess..
here is the detail message:
Code:
Event: success
Sender User: -remote-
Sender Domain:
Sender: [email protected]
Sent Time: Aug 26, 2017 12:01:12 PM
Sender Host: xxx.xxx.com
Sender IP: 139.99.4.228
Authentication: localdelivery
Spam Score:
Recipient: [email protected]
Delivered To: [email protected]
Delivery User: hendranata
Delivery Domain: xx.xx.com
Router: virtual_user
Transport: dovecot_virtual_delivery
Out Time: Aug 26, 2017 12:01:12 PM
ID: 1dlTDQ-0001Vd-O8
Delivery Host: localhost
Delivery IP: 127.0.0.1
Size: 1.05 KB
Result: Accepted
what i am currious is here:
Sender User: -remote- <--- actually this is cpanel user: hendranata who send that email from php script.. not from anybody else.. but why they known as -remote- ??
how to block email if the SMTP auth is off ?
i did many possibility.
1. yes if we run php mailer script from outside server.. yes SMTP required to login first before they can send email
however....
2. if we run php mailer script from internal server.. SMTP does not required to login first before they can send email. (it means they can send email with or without SMTP auth actually). <--- this case is quite dangerous when a user send email using SMTP from internal hosting and without SMTP authentication.
any solution?
Last edited by a moderator: