12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #!/bin/cat
- # $Id: INSTALL.Ubuntu.txt,v 1.21 2022/06/03 16:58:47 gilles Exp gilles $
- This documentation is also located online at
- https://imapsync.lamiral.info/INSTALL.d/
- https://imapsync.lamiral.info/INSTALL.d/INSTALL.Ubuntu.txt
- =======================================================================
- Installing imapsync on Ubuntu 16.04 or higher
- =======================================================================
- Here is the command to install imapsync dependencies,
- you need root privilege to run them.
- This command installs standard Ubuntu packages:
- sudo apt-get install \
- libauthen-ntlm-perl \
- libclass-load-perl \
- libcrypt-openssl-rsa-perl \
- libcrypt-ssleay-perl \
- libdata-uniqid-perl \
- libdigest-hmac-perl \
- libdist-checkconflicts-perl \
- libencode-imaputf7-perl \
- libfile-copy-recursive-perl \
- libfile-tail-perl \
- libio-compress-perl \
- libio-socket-inet6-perl \
- libio-socket-ssl-perl \
- libio-tee-perl \
- libjson-webtoken-perl \
- libmail-imapclient-perl \
- libmodule-scandeps-perl \
- libnet-dbus-perl \
- libnet-ssleay-perl \
- libpar-packer-perl \
- libproc-processtable-perl \
- libreadonly-perl \
- libregexp-common-perl \
- libsys-meminfo-perl \
- libterm-readkey-perl \
- libtest-fatal-perl \
- libtest-mock-guard-perl \
- libtest-mockobject-perl \
- libtest-pod-perl \
- libtest-requires-perl \
- libtest-simple-perl \
- libunicode-string-perl \
- liburi-perl \
- libtest-nowarnings-perl \
- libtest-deep-perl \
- libtest-warn-perl \
- make \
- time \
- cpanminus
- In case you want to update the Perl module
- Mail::IMAPClient, a major module for imapsync,
- the following command installs it "manually":
- sudo cpanm Mail::IMAPClient
- After installing the dependencies, imapsync should be working.
- You don't have to be root to test and use imapsync.
- Take the compressed tarball called imapsync-1.xxx.tgz
- where 1.xxx is the version number.
- Untar the tarball where you want:
- cd
- tar xzvf imapsync-1.xxx.tgz
- Go into the directory imapsync-1.xxx
- cd imapsync-1.xxx
- A dependencies test that shows also the basic example:
- ./imapsync
- A live test showing imapsync job:
- ./imapsync --testslive
- Now the install command (need root priviledges again):
- cp imapsync /usr/bin/
- That's finished for the installation part.
- You can use imapsync.
- Now go to read http://imapsync.lamiral.info/#doc
- start with the tutorial.
- =======================================================================
- =======================================================================
|