Thunderbird 新版都使用 snap 安裝,所以路徑有修改,實體路徑可見此篇:Ubuntu Linux 24.04 Thunderbird 實體路徑修改
此篇要找本機信箱的實體路徑~
個人筆記, 記錄關於 系統、程式、新聞 與 日常生活 等資訊
有多個 Email 的情況,可以考慮全部收到同一個信箱,缺點就是那個信箱可能會爆掉~
另外一種作法,就是用一套 Email Client(例如:Thunderbird),隨時自動透過 IMAP 自動把信件收回來,Client 也可以簡單操作刪除、搬移等動作~
不過現在安全性的控管越來越嚴謹,Gmail 想要透過 IMAP 收信,已經無法直接使用密碼 (之前會要求兩階段認證後,產生唯一一次性的安全性密碼輸入)
現在修改成直接在 Client 做 OAuth 認證,這樣子比兩階段認證再去操作,這樣子方便多了~
Google 的 GMail 的過濾功能蠻好用的,常常會收到行事曆來得邀請,想將這些邀請 Email 都打個 Tag,要怎麼過濾呢?
Microsoft Outlook (Email) 的 .pst 檔想要讀取,但是沒有 Outlook 要怎麼辦?
於 Linux 可以將 .pst 的內容拆開,變成 .mbox,再來就可以使用其它程式來讀取~~~
iPhone、iPad 使用 Gmail、Apple Mail 收到的 PDF 檔,中文常會遇到亂碼問題(例如蝦皮的電子發票),要怎麼解決呢?
Google Workspace 開啟帳號使用後,若要刪除帳號,但是希望將此帳號未來有信件自動轉寄到其他信箱,要怎麼做呢?
使用 telnet 連線 SMTP server 來測試發送 Email
Linode 於 2019/12/5 以後開得新帳號(原因:CAN-SPAM Act),連到外部 SMTP Port 預設都被擋掉,以至於全部 Connection timed out。
新開機器可以直接 telnet 測試看看:
$ telnet gmail-smtp-in.l.google.com 25 Trying 2404:6800:4008:c03::1b… Trying 74.125.203.26… telnet: Unable to connect to remote host: Connection timed out
正常狀況
$ telnet gmail-smtp-in.l.google.com 25 Trying 74.125.203.26… Connected to gmail-smtp-in.l.google.com. Escape character is '^]'. 220 mx.google.com ESMTP k2si12268129pld.364 - gsmtp
於 Postfix 的 /var/log/mail.log 會看到下述訊息:
Apr 29 12:47:24 localhost postfix/smtp[18520]: connect to gmail-smtp-in.l.google.com[74.125.203.27]:25: Connection timed out Apr 29 12:47:24 localhost postfix/smtp[18521]: connect to gmail-smtp-in.l.google.com[108.177.97.27]:25: Connection timed out
Apr 29 12:47:24 localhost postfix/smtp[18523]: connect to gmail-smtp-in.l.google.com[64.233.189.26]:25: Connection timed out
Apr 29 12:47:54 localhost postfix/smtp[18523]: connect to alt1.gmail-smtp-in.l.google.com[108.177.9.27]:25: Connection timed out
Apr 29 12:48:24 localhost postfix/smtp[18523]: connect to alt2.gmail-smtp-in.l.google.com[209.85.234.26]:25: Connection timed out
Apr 29 12:48:54 localhost postfix/smtp[18522]: connect to alt3.gmail-smtp-in.l.google.com[142.250.11.27]:25: Connection timed out Apr 29 12:49:24 localhost postfix/smtp[18520]: connect to alt4.gmail-smtp-in.l.google.com[142.250.12.27]:25: Connection timed out
想要開通 Email 的 SMTP Port 需要做些設定,然後在於後台開 Ticket 申請。
現在的 Mail Client 都是走 POP3 / IMAP 的協定,而現在通常都使用 Web mail 的緣故,所以更常使用的是 IMAP (Email 留在 Server 端,Client 只是純粹快速收信、看信)
畢竟 IMAP 年代久遠,更新效率不好,而且需要持續的網路連線,中斷就只能重來~