Alpine-Mail

alpine 拒絕保存 imap 密碼

  • August 31, 2018

我已經用選項編譯了 alpine 2.20,--with-passfile=/home/fuji/.alpine.pwd當我輸入 gmail 的 imap 密碼時,我會收到郵件,但是在保存密碼時,我會收到以下調試消息:

14:05:34.653790
Looking for passfile "/home/fuji/.alpine.pwd"

14:05:34.655538
q_status_message(Attempting to encrypt password file)

14:05:34.656276
q_status_message(Refusing to write non-encrypted password file)

14:05:34.656322
IMAP DEBUG 14:05:34.656322: <suppressed>

ll ~/.alpine.pwd
-rw------- 1 fuji opera 0 Dec 20 17:42 .alpine.pwd

我怎樣才能保存該密碼?

謝謝。

我必須創建一個 ssl 證書並將文件安裝在 ~/.alpine-smime/private、~/.alpine-smime/public 和 ~/.alpine-smime/ca 中。只有這樣 imap 密碼才會保存在 .alpine.pwd 中。

對我來說,它可以使用命令行標誌 -passfile(使用 Debian 標準建構版本 2.20)。

touch .yourpassfile
alpine -passfile .yourpassfile

在為 IMAP 身份驗證提供密碼後,它現在會詢問您是否要將其保存到給定的密碼文件中。說 Y。現在每次使用上面的命令執行 alpine(或為其創建快捷方式),它將自動向您的 IMAP 伺服器進行身份驗證。

引用自:https://unix.stackexchange.com/questions/331927