使用 Thunderbird 自动备份我的电子邮件帐户

使用 Thunderbird 自动备份我的电子邮件帐户

我使用 Thunderbird 备份我的基于网络的电子邮件帐户:我打开 Thunderbird 并将邮件从收件箱复制到本地文件夹。

有没有办法每天自动执行此操作,这样我就不必一直打开 Thunderbird?

编辑:GMVault对于 GMail 帐户非常有用。对于非 GMail 帐户,获取邮件也许应该使用方法。

答案1

Thunderbird 使用 IMAP 协议下载邮件。您可以使用命令行 IMAP 实用程序自动连接并从您的帐户下载邮件。查看 getmail (http://pyropus.ca/software/getmail/) 作为一种可能的选择。你可以使用 cron 作业 (如何设置 Cron 作业?)。

例如,您可以创建一个 ~/.getmail/getmailrc 文件,内容如下:

[retriever]
type = SimplePOP3Retriever
server = pop.example.net
username = your.username
password = mailpassword

[destination]
type = Maildir
path = ~your-username/Maildir/

然后在 /etc/cron.d 中添加一个文件“retrieve-email”,内容如下:

15 10 * * * your-username getmail

这将导致 getmail 每天上午 10:15 下载您的电子邮件并将其放在 Maildir 目录中。

请不要直接使用这些示例;它们不完整且仅供参考,我还没有测试过它们。请阅读我引用的文档,以便您了解需要哪些 getmail 参数。

相关内容