kali安装邮件客户端

kali安装邮件客户端

Linux下常用的邮件客户端有: Claws Mail、Thunderbird、KMail、Balsa、Sylpheed、Alpine、Cone、Pine、Mutt、SquirrelMail等。

  • 安装Nylas Mail(失败)
    #准备依赖环境
        curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
        apt-get install -y nodejs
        apt-get install -y redis-server redis-tools 
    #下载安装
        git clone https://github.com/nylas/nylas-mail.git
        cd nylas-mail
        npm install
    #运行
        npm run client  #Starts the app
        npm run test-client #Run the tests
        npm run lint-client #Lint the source (ESLint + Coffeelint + LESSLint)
  • 安装Claws Mail(不好用)
    #安装
        sudo add-apt-repository ppa:claws-mail/ppa
        sudo apt-get update
        sudo apt-get install claws-mail
    #启动(亦可从应用列表里直接点击启动)
        claws-mail
    ###常见错误
        1.写邮件时弹出错误窗口 couldnt initialize zh_cn dictionary:(null) ...
  • 安装thunderbird
    #安装(当前版本:60.9.0)
        sudo apt-get install thunderbird     
    #启动(亦可从应用列表里直接点击启动)
        thunderbird
        /usr/bin/thunderbird 
  • 安装roundcube
Roundcube是一个用PHP编写的现代且可定制的IMAP-based邮件客户端,它有大量的特性, 用来查看,组织和组合电子邮件,以及支持联系人和日历管理。依赖PHP+MYSQL.
#下载地址
    https://roundcube.net/download/
    https://github.com/roundcube/roundcubemail/releases
    https://github.com/roundcube/roundcubemail/releases/download/1.4.2/roundcubemail-1.4.2-complete.tar.gz
#安装
    解压至相应目录,访问http://ip:port/roundcubemail/installer/index.php 进行配置(安装基本分三部分,1、检查安装环境,2、创建配置文件,3、测试配置是否正常;在设置后,还可以通过编辑主配置文件main.inc.php来修改更新,后面如果你还要安装插件的话,也要从这个配置文件动手。)。
    点击“NEXT”
        General configuration,保持默认即可;
        Logging & Debugging日志部分,默认即可;
        Database setup数据库设置部分,填写数据库信息。(php安装mysql扩展后,这里可以选择mysql数据库)
        IMAP Settings,IMAP设置部分。
            default_host输入IMAP服务器地址,比如 imap.163.com ,支持多个,点击add按钮可以增加。
            username_domain是为了WEB方式登录是用的,就是你邮件地址@后面的部分,比如 163.com。这样WEB方式登录邮箱的时候,用户只需要输入邮件地址@前面的部分+密码就可以登陆了,不需要输入完整的邮件地址。
        SMTP Setting,SMTP设置部分。
            smtp_server输入SMTP的服务地址,比如 smtp.163.com 。
            smtp_port 25
        Display setting & user prefs显示设置和用户使用相关设置部分。
            language 为空的话,会根据浏览器的user agent自动检测。输入zh_CN即可。
    点击“CREATE CONFIG”按钮继续,根据前面的配置内容生成了对应的两个配置文件,你可以直接下载这两个文件,然后上传到Roundcube目录里的config目录里,或者手工创建这个文件(config.inc.php),把对应文本框里的内容粘贴进去保存即可。
    点击“CONTINUE”按钮跳至第三步。
        检查配置文件、检查目录是否有写的权限、初始化数据库、Test filetype、Test SMTP、Test IMAP
        ###Mimetype to file extension mapping:  NOT OK
            #在config/config.inc.php中定义mime.types(mime.types可在http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types下载)
            $config['mime_types'] = '/www/roundcubemail/config/mime.types';
    安装完之后,删除installer目录,然后在config.inc.php文件里添加 $config['enable_installer'] =false;

你可能感兴趣的:(kali,邮件客户端,kali,mail,claws)