-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2ca2e13
commit 3208ec8
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |