Microsoft Outlook (Email) 的 .pst 檔想要讀取,但是沒有 Outlook 要怎麼辦?
於 Linux 可以將 .pst 的內容拆開,變成 .mbox,再來就可以使用其它程式來讀取~~~
個人筆記, 記錄關於 系統、程式、新聞 與 日常生活 等資訊
Microsoft Outlook (Email) 的 .pst 檔想要讀取,但是沒有 Outlook 要怎麼辦?
於 Linux 可以將 .pst 的內容拆開,變成 .mbox,再來就可以使用其它程式來讀取~~~
iPhone、iPad 使用 Gmail、Apple Mail 收到的 PDF 檔,中文常會遇到亂碼問題(例如蝦皮的電子發票),要怎麼解決呢?
使用 telnet 連線 SMTP server 來測試發送 Email
在 Docker 安裝 Postfix,可以啟動,但是信寄不出去,想要查看 mail.log 卻找不到,要怎麼辦?
Postfix 自從 Debian Linux 升級到 Buster 後,內部信就寄不出去也收不到了,來研究看看怎麼解決~
閱讀全文〈Postfix 修正 fatal: in parameter smtpd_relay_restrictions 等問題〉
國文太久沒碰,這篇古早用語、敬語整理得很棒,隨時可以查用~
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 申請。
巴菲特每年對波克夏的股東信,都可以集結出書了,來看看 2020年波克夏股東信的重點內容吧~
Google 不管是 Gmail 或 G Suite 的 Gmail 的 Mail 發送,每天都是有總數量的限制,那限制到底是多少呢?
使用 PHP 寄信經常會使用 PHPMailer,但是要使用內部網路的 Mail
Server 來寄信,卻一直遇到如下述的錯誤:
Warning: stream_socket_enable_crypto(): SSL operation failed with code 1.
OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
要怎麼解決呢?