Email testing: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Text replacement - "PHP errors" to "Troubleshooting of PHP errors") |
||
| (9 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
← [[Testing]] | |||
== For role: users == | == For role: users == | ||
Using the following e-mail service with name alias or alternative name | Using the following e-mail service with name alias or alternative name | ||
* [https://gmail.google.com/ Google Gmail]: plus sign {{exclaim}} the plus sign is not allowed by some websites | * [https://gmail.google.com/ Google Gmail]: plus sign {{exclaim}} the plus sign is not allowed by some websites | ||
* [http://get.live.com/mail/overview Windows Live™ Hotmail]: [http://windows.microsoft.com/zh-TW/hotmail/conquergraymail/advanced/alias Alias] / 在一個收件匣建立多個別名 {{access | date=2012-03-30}} | * Suggest search keyword: [http://lmgtfy.com/?q=anonymous%20email anonymous email]、拋棄式信箱 (Disposable Email) e.g. ''$'' [http://doc.mail2000.com.tw/edm/o_act/virtual/htm/faq.htm Mail2000拋棄式帳號:全新網域 輕鬆拋棄 廣告信Bye-bye!] | ||
* ''服務停止''<ref>[https://support.microsoft.com/zh-tw/help/12407/microsoft-account-manage-aliases 管理您 Microsoft 帳戶上的別名]</ref> [http://get.live.com/mail/overview Windows Live™ Hotmail]: [http://windows.microsoft.com/zh-TW/hotmail/conquergraymail/advanced/alias Alias] / 在一個收件匣建立多個別名 {{access | date=2012-03-30}} | |||
== For role: web developers == | == For role: web developers == | ||
* [[Troubleshooting of PHP errors#錯誤訊息: SMTP Error: Could not connect to SMTP host.]] | |||
== For role: system administrator == | |||
If you have the telnet permission, | If you have the telnet permission, | ||
* Suggest search keyword: [http://lmgtfy.com/?q=smtp%20telnet%20test smtp telnet test] | * Suggest search keyword: [http://lmgtfy.com/?q=smtp%20telnet%20test smtp telnet test] | ||
* [https://technet.microsoft.com/zh-tw/library/aa995718(v=exchg.65).aspx 如何使用 Telnet 來測試 SMTP 通訊] | * [https://technet.microsoft.com/zh-tw/library/aa995718(v=exchg.65).aspx 如何使用 Telnet 來測試 SMTP 通訊] | ||
* [[ | * [https://support.google.com/mail/answer/78775?hl=zh-Hant 使用 POP 或 IMAP 傳送郵件時發生問題 - Gmail說明] {{access | date = 2016-08-08}} | ||
* [http://www.xspace.idv.tw/bo_blog/post/85/ Outlook 錯誤代碼的含義及解決辦法] {{access | date = 2016-12-22}} | |||
是否可以連線到 SMTP 主機{{kbd | key =<nowiki>nslookup smtp.gmail.com</nowiki> }} 或 {{kbd | key =<nowiki>telnet smtp.gmail.com port</nowiki> }} (例子中以 gmail 作為 smtp 伺服器) | |||
{{kbd | key =<nowiki>telnet smtp.gmail.com 465</nowiki> }} 預期結果: | |||
<pre> | |||
Trying 74.125.129.109... | |||
Connected to smtp.gmail.com. | |||
Escape character is '^]'. | |||
^] //註:(Windows) 輸入 ctrl + ] 兩個按鍵,(Mac) 輸入 control + ] 兩個按鍵 | |||
telnet> quit | |||
Connection closed. | |||
</pre> | |||
非預期結果:請調整防火牆設定 | |||
<pre> | |||
Trying x.x.x.x... | |||
telnet: connect to address x.x.x.x: Connection refused | |||
</pre> | |||
== 參考資料 == | |||
<references /> | |||
[[Category:Web Dev]] | [[Category:Web Dev]] | ||
Latest revision as of 20:43, 1 February 2019
← Testing
For role: users[edit]
Using the following e-mail service with name alias or alternative name
- Google Gmail: plus sign
the plus sign is not allowed by some websites - Suggest search keyword: anonymous email、拋棄式信箱 (Disposable Email) e.g. $ Mail2000拋棄式帳號:全新網域 輕鬆拋棄 廣告信Bye-bye!
- 服務停止[1] Windows Live™ Hotmail: Alias / 在一個收件匣建立多個別名 [Last visited: 2012-03-30]
For role: web developers[edit]
For role: system administrator[edit]
If you have the telnet permission,
- Suggest search keyword: smtp telnet test
- 如何使用 Telnet 來測試 SMTP 通訊
- 使用 POP 或 IMAP 傳送郵件時發生問題 - Gmail說明 [Last visited: 2016-08-08]
- Outlook 錯誤代碼的含義及解決辦法 [Last visited: 2016-12-22]
是否可以連線到 SMTP 主機nslookup smtp.gmail.com 或 telnet smtp.gmail.com port (例子中以 gmail 作為 smtp 伺服器) telnet smtp.gmail.com 465 預期結果:
Trying 74.125.129.109... Connected to smtp.gmail.com. Escape character is '^]'. ^] //註:(Windows) 輸入 ctrl + ] 兩個按鍵,(Mac) 輸入 control + ] 兩個按鍵 telnet> quit Connection closed.
非預期結果:請調整防火牆設定
Trying x.x.x.x... telnet: connect to address x.x.x.x: Connection refused