Answer the question
In order to leave comments, you need to log in
Can multiple mail servers be specified for one domain?
Good afternoon!
Wikipedia says that,
For one domain, several mail servers with different priorities can be specified.
Answer the question
In order to leave comments, you need to log in
void Update()
{
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition); // поле зрение камеры
RaycastHit hit = new RaycastHit(); // хранит данные объекта с котором пересекся вектор камеры и параметры пересечения
if (Physics.Raycast(ray, out hit)) // выполняется если хоть один объект встретился
{
Vector3 rot = transform.eulerAngles; // запись предыдущего угла Эйлера "Rotation"
transform.LookAt(hit.point); // перевод в угол поворота из полученных координат при пересечении с объектом
transform.eulerAngles = new Vector3(0, transform.eulerAngles.y, 0); // установка нового угла
}
}
"server" here - a piece of iron with wires
not a domain
as you like - it won't work, or gmail, or your own server
MX records have absolutely nothing to do with this task. The MX record specifies the address of the server that receives mail for this domain. The priority here is a number that specifies the order in which servers are viewed, if there are several of them. If there are records
nichego.net. IN MX 10 test1
IN MX 20 test2
test1 IN A 1.2.3.4
test2 IN A 1.3.4.5
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question