https://github.com/88plug/imapsync
imapsync Dockerfile with Ubuntu 18.04
https://github.com/88plug/imapsync
docker docker-image dockerfile imapsync ubuntu ubuntu1804
Last synced: 6 months ago
JSON representation
imapsync Dockerfile with Ubuntu 18.04
- Host: GitHub
- URL: https://github.com/88plug/imapsync
- Owner: 88plug
- Created: 2018-08-26T12:38:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-15T09:25:50.000Z (almost 6 years ago)
- Last Synced: 2025-02-15T10:31:38.143Z (8 months ago)
- Topics: docker, docker-image, dockerfile, imapsync, ubuntu, ubuntu1804
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/88plug/imapsync/
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 88plug imapsync
Dockerfile for running imapsync for email migrations# Easy Way (add --dry or --justfolders to test any setting)
```
docker run -ti --rm 88plug/imapsync --automap --skipemptyfolders --usecache \
--host1 mailserver1 --user1 user1@mailserver1 --password1 user1pass \
--host2 mailserver2 --user2 user2@mailserver2 --password2 user2pass
```# for Microsoft Exchange
```
docker run -ti --rm 88plug/imapsync --automap --skipemptyfolders --usecache --addheader --exchange2 \
--host1 mailserver1 --user1 user1@mailserver1 --password1 user1pass \
--host2 mailserver2 --user2 user2@mailserver2 --password2 user2pass
```# From Mailcow to new server poste.io account
```
docker run -it 88plug/imapsync --automap \
--host1 mmailserver1 --user1 user1@mailserver1 --password1 user1pass \
--host2 mailserver2 --user2 user2@mailserver2 --password2 user2pass
```# From Mailcow to poste.io subfolder(domain-folder) for entire account
```
docker run -it 88plug/imapsync --regextrans2 's#(.*)#domain-folder.$1#' \
--host1 mailserver1 --user1 user1@mailserver1 --password1 user1pass \
--host2 mailserver2 --user2 user2@mailserver2 --password2 user2pass
```# From mailinabox to poste.io subfolder(domain-folder) for entire account
```
docker run -it 88plug/imapsync --regextrans2 's#(.*)#domain-folder.$1#' \
--host1 mailserver1 --user1 user1@mailserver1 --password1 user1pass \
--host2 mailserver2 --user2 user2@mailserver2 --password2 user2pass
```