Chào các bạn,
Trong bài viết này, mình sẽ hướng dẫn các bạn chuyển Mailbox từ dịch vụ email cũ qua dịch vụ email mới bằng giao thức IMAP. Một số nhà cung cấp không hỗ trợ Export/Import hòm mail ra các định dạng file phổ biến như mbox, eml,.. vv nên khi chuyển dịch vụ email, bạn thường phải bỏ lại toàn bộ email cũ tại nhà cung cấp cũ hoặc download về lưu lại trên máy :(. Cách thức chuyển email bằng IMAP cho phép bạn chuyển email đến bất cứ server nào miễn là server đó có hỗ trợ IMAP, và tất nhiên rồi, dịch vụ email nào mà không có IMAP cơ chứ.
Đầu tiên các bạn download package OfflineIMAP từ Github bằng lệnh sau:
git clone https://github.com/OfflineIMAP/offlineimap.git cd offlineimap
Các bạn tạo 1 file .conf bất kỳ để lưu cấu hình chúng ta sẽ sử dụng cho việc chuyển email, ví dụ như: migrate.conf, nhập vào nội dung như sau:
[general] accounts = email-migrate maxsyncaccounts = 1 [Account email-migrate] remoterepository = old_server localrepository = new_server [Repository old_server] type = IMAP remotehost = old_imap.server.address remoteuser = Username remotepass = Password ssl = yes maxconnections = 1 readonly = true sslcacertfile = /etc/ssl/certs/ca-certificates.crt [Repository new_server] type = IMAP remotehost = new_imap.server.address remoteuser = Username remotepass = Password ssl = yes maxconnections = 1 sslcacertfile = /etc/ssl/certs/ca-certificates.crt
./offlineimap.py -c migrate.conf
Leave A Comment?