mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-01-13 22:30:37 +08:00
Merge pull request #17237 from wxy/20200116-3-open-source-tools-to-manage-your-contacts
PRF&PUB:20200116 3 open source tools to manage your contacts
This commit is contained in:
commit
ae9a8088a9
@ -1,32 +1,33 @@
|
|||||||
[#]: collector: (lujun9972)
|
[#]: collector: (lujun9972)
|
||||||
[#]: translator: (geekpi)
|
[#]: translator: (geekpi)
|
||||||
[#]: reviewer: ( )
|
[#]: reviewer: (wxy)
|
||||||
[#]: publisher: ( )
|
[#]: publisher: (wxy)
|
||||||
[#]: url: ( )
|
[#]: url: (https://linux.cn/article-11834-1.html)
|
||||||
[#]: subject: (3 open source tools to manage your contacts)
|
[#]: subject: (3 open source tools to manage your contacts)
|
||||||
[#]: via: (https://opensource.com/article/20/1/sync-contacts-locally)
|
[#]: via: (https://opensource.com/article/20/1/sync-contacts-locally)
|
||||||
[#]: author: (Kevin Sonney https://opensource.com/users/ksonney)
|
[#]: author: (Kevin Sonney https://opensource.com/users/ksonney)
|
||||||
|
|
||||||
用于联系人管理的开源工具
|
用于联系人管理的三个开源工具
|
||||||
======
|
======
|
||||||
通过将联系人同步到本地从而更快访问它。在我们的 20 个使用开源提升生产力的系列的第六篇文章中了解该如何做。
|
|
||||||
![Team communication, chat][1]
|
> 通过将联系人同步到本地从而更快访问它。在我们的 20 个使用开源提升生产力的系列的第六篇文章中了解该如何做。
|
||||||
|
|
||||||
|
![](https://img.linux.net.cn/data/attachment/album/202001/30/194811bbtt449zfr9zppb3.jpg)
|
||||||
|
|
||||||
去年,我在 19 天里给你介绍了 19 个新(对你而言)的生产力工具。今年,我换了一种方式:使用你在使用或者还没使用的工具,构建一个使你可以在新一年更加高效的环境。
|
去年,我在 19 天里给你介绍了 19 个新(对你而言)的生产力工具。今年,我换了一种方式:使用你在使用或者还没使用的工具,构建一个使你可以在新一年更加高效的环境。
|
||||||
|
|
||||||
### 用于联系人管理的开源工具
|
### 用于联系人管理的开源工具
|
||||||
|
|
||||||
在本系列之前的文章中,我解释了如何在本地同步你的[邮件][2]和[日历][3]。希望这些加速了你访问邮件和日历。现在,我将讨论联系人同步,你可以使用这些发送邮件和日历邀请。
|
在本系列之前的文章中,我解释了如何在本地同步你的[邮件][2]和[日历][3]。希望这些加速了你访问邮件和日历。现在,我将讨论联系人同步,你可以给他们发送邮件和日历邀请。
|
||||||
|
|
||||||
![abook][4]
|
![abook][4]
|
||||||
|
|
||||||
我目前收集了很多邮件地址。管理这些数据可能有点麻烦。有基于 Web 的服务,但它们不如本地副本快。
|
我目前收集了很多邮件地址。管理这些数据可能有点麻烦。有基于 Web 的服务,但它们不如本地副本快。
|
||||||
|
|
||||||
几天前,我谈到了用于管理日历的 [vdirsyncer][5]。vdirsyncer 还使用 CardDAV 协议处理联系人。vdirsyncer 除了可以使用**文件系统**存储日历外,还支持 **google_contacts** 和 **carddav** 进行联系人同步,但 **fileext** 设置将更改,因此你无法在日历文件中存储联系人。
|
几天前,我谈到了用于管理日历的 [vdirsyncer][5]。vdirsyncer 还使用 CardDAV 协议处理联系人。vdirsyncer 除了可以使用**文件系统**存储日历外,还支持通过 **google_contacts** 和 **carddav** 进行联系人同步,但 `fileext` 设置会被更改,因此你无法在日历文件中存储联系人。
|
||||||
|
|
||||||
我在配置文件添加了一块配置,并从 Google 镜像了我的联系人。设置它需要额外的步骤。从 Google 镜像完成后,配置非常简单:
|
我在配置文件添加了一块配置,并从 Google 镜像了我的联系人。设置它需要额外的步骤。从 Google 镜像完成后,配置非常简单:
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
[pair address_sync]
|
[pair address_sync]
|
||||||
a = "googlecard"
|
a = "googlecard"
|
||||||
@ -46,12 +47,11 @@ path = "~/.calendars/Addresses/"
|
|||||||
fileext = ".vcf"
|
fileext = ".vcf"
|
||||||
```
|
```
|
||||||
|
|
||||||
现在,当我运行 **vdirsyncer discover** 时,它会找到我的 Google 联系人,并且 **vdirsyncer sync** 将它们复制到我的本地计算机。但同样,这只进行到一半。现在我想查看和使用联系人。输入 [khard][6] 和 [abook][7]。
|
现在,当我运行 `vdirsyncer discover` 时,它会找到我的 Google 联系人,并且 `vdirsyncer sync` 将它们复制到我的本地计算机。但同样,这只进行到一半。现在我想查看和使用联系人。需要 [khard][6] 和 [abook][7]。
|
||||||
|
|
||||||
![khard search][8]
|
![khard search][8]
|
||||||
|
|
||||||
为什么选择两个应用?因为每个都有它自己的使用场景,在这里,越多越好。khard 用于管理地址,类似于 [khal][9] 用于管理日历条目。如果你的发行版附带了旧版本,你可能需要通过 pip 安装最新版本。安装 khard 后,你需要创建 **~/.config/khard/khard.conf**,因为 khard 没有与 khal 那样漂亮的配置向导。我的看起来像这样:
|
为什么选择两个应用?因为每个都有它自己的使用场景,在这里,越多越好。khard 用于管理地址,类似于 [khal][9] 用于管理日历条目。如果你的发行版附带了旧版本,你可能需要通过 `pip` 安装最新版本。安装 khard 后,你需要创建 `~/.config/khard/khard.conf`,因为 khard 没有与 khal 那样漂亮的配置向导。我的看起来像这样:
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
[addressbooks]
|
[addressbooks]
|
||||||
@ -79,36 +79,34 @@ search_in_source_files = yes
|
|||||||
skip_unparsable = no
|
skip_unparsable = no
|
||||||
```
|
```
|
||||||
|
|
||||||
这会定义源通讯簿(并给它一个友好的名称)、显示内容和联系人编辑程序。运行 **khard list** 将列出所有条目,**khard list <[some@email.adr][10]>** 可以搜索特定条目。如果要添加或编辑条目,**add** 和 **edit** 命令将使用相同的基本模板打开配置的编辑器,唯一的区别是 **add** 命令的模板将为空。
|
这会定义源通讯簿(并给它一个友好的名称)、显示内容和联系人编辑程序。运行 `khard list` 将列出所有条目,`khard list <some@email.adr>` 可以搜索特定条目。如果要添加或编辑条目,`add` 和 `edit` 命令将使用相同的基本模板打开配置的编辑器,唯一的区别是 `add` 命令的模板将为空。
|
||||||
|
|
||||||
![editing in khard][11]
|
![editing in khard][11]
|
||||||
|
|
||||||
abook 需要你导入和导出 VCF 文件,但它为查找提供了一些不错的功能。要将文件转换为 abook 格式,请先安装 abook 并创建 **~/.abook** 默认目录。然后让 abook 解析所有文件,并将它们放入 **~/.abook/addresses** 文件中:
|
abook 需要你导入和导出 VCF 文件,但它为查找提供了一些不错的功能。要将文件转换为 abook 格式,请先安装 abook 并创建 `~/.abook` 默认目录。然后让 abook 解析所有文件,并将它们放入 `~/.abook/addresses` 文件中:
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
apt install abook
|
apt install abook
|
||||||
ls ~/.calendars/Addresses/default/* | xargs cat | abook --convert --informat vcard --outformat abook > ~/.abook/addresses
|
ls ~/.calendars/Addresses/default/* | xargs cat | abook --convert --informat vcard --outformat abook > ~/.abook/addresses
|
||||||
```
|
```
|
||||||
|
|
||||||
现在运行 **abook**,你将有一个非常好的 UI 来浏览、搜索和编辑条目。将它们导出到单个文件有点痛苦,所以我用 khard 进行大部分编辑,并有一个 cron 任务将它们导入到 abook 中。
|
现在运行 `abook`,你将有一个非常漂亮的 UI 来浏览、搜索和编辑条目。将它们导出到单个文件有点痛苦,所以我用 khard 进行大部分编辑,并有一个 cron 任务将它们导入到 abook 中。
|
||||||
|
|
||||||
abook 还可在命令行中搜索,并有大量有关将其与邮件客户端集成的文档。例如,你可以在 **.config/alot/config** 文件中添加一些信息,从而在 [Nmuch][12] 的邮件客户端 [alot][13] 中使用 abook 查询联系人:
|
|
||||||
|
|
||||||
|
abook 还可在命令行中搜索,并有大量有关将其与邮件客户端集成的文档。例如,你可以在 `.config/alot/config` 文件中添加一些信息,从而在 [Nmuch][12] 的邮件客户端 [alot][13] 中使用 abook 查询联系人:
|
||||||
|
|
||||||
```
|
```
|
||||||
[accounts]
|
[accounts]
|
||||||
[[Personal]]
|
[[Personal]]
|
||||||
realname = Kevin Sonney
|
realname = Kevin Sonney
|
||||||
address = [kevin@sonney.com][14]
|
address = kevin@sonney.com
|
||||||
alias_regexp = kevin\[+.+@sonney.com][15]
|
alias_regexp = kevin\+.+@sonney.com
|
||||||
gpg_key = 7BB612C9
|
gpg_key = 7BB612C9
|
||||||
sendmail_command = msmtp --account=Personal -t
|
sendmail_command = msmtp --account=Personal -t
|
||||||
# ~ expansion works
|
# ~ expansion works
|
||||||
sent_box = maildir://~/Maildir/Sent
|
sent_box = maildir://~/Maildir/Sent
|
||||||
draft_box = maildir://~/Maildir/Drafts
|
draft_box = maildir://~/Maildir/Drafts
|
||||||
[[[abook]]]
|
[[[abook]]]
|
||||||
type = abook
|
type = abook
|
||||||
```
|
```
|
||||||
|
|
||||||
这样你就可以在邮件和日历中快速查找联系人了!
|
这样你就可以在邮件和日历中快速查找联系人了!
|
||||||
@ -120,15 +118,15 @@ via: https://opensource.com/article/20/1/sync-contacts-locally
|
|||||||
作者:[Kevin Sonney][a]
|
作者:[Kevin Sonney][a]
|
||||||
选题:[lujun9972][b]
|
选题:[lujun9972][b]
|
||||||
译者:[geekpi](https://github.com/geekpi)
|
译者:[geekpi](https://github.com/geekpi)
|
||||||
校对:[校对者ID](https://github.com/校对者ID)
|
校对:[wxy](https://github.com/wxy)
|
||||||
|
|
||||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||||
|
|
||||||
[a]: https://opensource.com/users/ksonney
|
[a]: https://opensource.com/users/ksonney
|
||||||
[b]: https://github.com/lujun9972
|
[b]: https://github.com/lujun9972
|
||||||
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/talk_chat_team_mobile_desktop.png?itok=d7sRtKfQ (Team communication, chat)
|
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/talk_chat_team_mobile_desktop.png?itok=d7sRtKfQ (Team communication, chat)
|
||||||
[2]: https://opensource.com/article/20/1/sync-email-offlineimap
|
[2]: https://linux.cn/article-11804-1.html
|
||||||
[3]: https://opensource.com/article/20/1/open-source-calendar
|
[3]: https://linux.cn/article-11812-1.html
|
||||||
[4]: https://opensource.com/sites/default/files/uploads/productivity_6-1.png (abook)
|
[4]: https://opensource.com/sites/default/files/uploads/productivity_6-1.png (abook)
|
||||||
[5]: https://github.com/pimutils/vdirsyncer
|
[5]: https://github.com/pimutils/vdirsyncer
|
||||||
[6]: https://github.com/scheibler/khard
|
[6]: https://github.com/scheibler/khard
|
Loading…
Reference in New Issue
Block a user