Skip to content

Commit

Permalink
add email-server/details/ports page
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Najmabadi committed Sep 30, 2024
1 parent 2ca2e13 commit 3208ec8
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/Sidebar/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -6483,6 +6483,11 @@ export default {
icon: <GoGraph />,
link: "/email-server/details/observations"
},
{
title: "پورت‌های ایمیل‌سرور",
icon: <GoGraph />,
link: "/email-server/details/ports"
},
{
title: "تغییر پلن در ایمیل‌سرور",
icon: <GoGitCompare />,
Expand Down
50 changes: 50 additions & 0 deletions src/pages/email-server/details/ports.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
import Layout from "@/components/Layout";
import Button from "@/components/Common/button";
import Section from "@/components/Common/section";
import Alert from "@/components/Common/alert";
import Tabs from "@/components/Common/tab";
import Step from "@/components/Common/step";
import Card from "@/components/Common/card";
import Important from "@/components/Common/important";
import Highlight from "@/components/Common/highlight";
import Link from "next/link";
import PlatformIcon from "@/components/Common/icons";
import {
GoArrowLeft,
} from "react-icons/go";

import Table from "@/components/Common/table";
import Head from "next/head";

<Layout>
<Head>
<title>مستندات پلن‌های ایمیل سرور - لیارا</title>
</Head>
# آشنایی با پلن‌های ایمیل‌سرور لیارا
<hr className="mb-2" />

به صورت کلی، لیارا در ایمیل‌سرور، دو پورت زیر را ارائه می‌دهد:

<ul>
<li>پورت 587</li>
<li>پورت 465</li>

</ul>

<Section id="best-plan" title="پورت 587" />
پورت 587 به عنوان پورت استاندارد برای ارسال ایمیل (submission) شناخته می‌شود. این پورت برای کاربران معمولی که قصد ارسال ایمیل دارند استفاده می‌شود و از STARTTLS برای تأمین امنیت ارتباط استفاده می‌کند.
STARTTLS به پروتکل اجازه می‌دهد که ابتدا یک اتصال معمولی برقرار کرده و سپس آن را به یک اتصال امن تبدیل کند. این پورت طبق RFC 6409 به عنوان پورت پیش‌فرض برای ارسال ایمیل توصیه می‌شود.

<Section id="best-plan" title="پورت 465" />
پورت 465 برای SMTPS (Secure SMTP) استفاده می‌شود، که یک نسخه قدیمی‌تر از پروتکل SMTP است که به طور پیش‌فرض ارتباطات را از ابتدا رمزنگاری می‌کند (مانند HTTPS که از ابتدا امن است).
و از TLS برای تأمین امنیت ارتباط استفاده می‌کند.
<div className="h-2" />
<Alert variant="success">
<p>
برای ارسال ایمن، شما می‌توانید از هر دو پورت استفاده کنید. اما به صورت کلی، پورت 465 به خاطر استفاده از TLS (به جای STARTTLS)، اندکی از پورت 587، امن‌تر است.
</p>
</Alert>



</Layout>

0 comments on commit 3208ec8

Please sign in to comment.